5,031 Posted Topics
Re: [QUOTE=R0bb0b;650732]This is the javascript forum, not Java.[/QUOTE] Why don't you use the "Flag Bad Post" option and type sort message "Move this post to JSP section" let moderators know something may be wrong with the post, instead of shouting "This is JavaScript forum, not Java" And here are some tutorials … | |
Re: Did you use finally block in catch clause to finish the operation? Something like this? [code=java] try { // some data processing } } catch (XAException e) { e.printStackTrace(); } finally { stmt.close(); con.close(); xaCon.close(); }[/code] If you have in above manner then please post your code so we can … | |
Re: Have look at w3schools for tutorials on[URL="http://www.w3schools.com/xml/default.asp"] XML [/URL], [URL="http://www.w3schools.com/xsl/xsl_languages.asp"]XSL[/URL] and [URL="http://www.w3schools.com/xsl/default.asp"]XSLT[/URL]. You will find there plenty of tutorials for the start | |
Re: Thread moved to ASP.NET section @kkeith29 - if you get across post and you think there is something wrong about it, please use the "Flag Bad Post" option to let moderators know about it. If the original poster made mistake in the forum he/she cannot move the post to correct … | |
Re: Scanner is only able to read string or the whole line that will return string again. So what you can do is to read scanner, get the string and use the string in one or other way [LIST] [*] [URL="http://java.sun.com/javase/6/docs/api/java/lang/String.html#charAt(int)"]charAt(int index) [/URL] [*] [URL="http://java.sun.com/javase/6/docs/api/java/lang/String.html#toCharArray()"]toCharArray() [/URL] [/LIST] | |
Re: Yes you can do it by reading Apache server documentation | |
Re: Java Sun website tutorial on [URL="http://java.sun.com/docs/books/tutorial/jdbc/index.html"]JDBC(TM) Database Access[/URL] | |
Re: @Troy III - the post was moved before you view it and you may come across more of such as people commonly misinterpreter JavaScript belonging to Java section @javaAddict - I would expect from you to know better then telling somebody "This is a java forum not a javascript forum" … | |
Re: Can you please share solution with us? It may help somebody with similar problem in the future... | |
Re: If you can mark the points on the graph like put square/circle in the place the hotspot should go (just make them visually visible so the user do not need to search with the mouse over the graph) you can use[URL="http://www.w3schools.com/tags/tag_map.asp"] image map[/URL] and place the data in [icode]alt[/icode] parameter … | |
Re: Instead of using [ICODE]method="get"[/ICODE] in the opening form tag use [ICODE]method="post"[/ICODE]. This the basic of HTML you should already know, if not have look at w3schools for [URL="http://www.w3schools.com/tags/tag_form.asp"]more examples[/URL]. One more thing, you should be sending the username and password for validation to servlet not another page from which you … | |
Re: You need to replace documents(php/html) you wish to change. In this case it will be page witch holds the layout and CSS relevant to that page. Do not forget to check page's whole functionality! If the blog is design well you should have structure model of pages with the layout, … | |
Re: [LIST=1] [*]Sending personal messages to members asking for private immediate help is not welcomed [*]Why you using ODBC driver instead of JDBC? [*] This line[code=java]RequestDispatcher requestDispatcher = getServletContext().getRequestDispatcher("/Prism/web/index.jsp");[/code] should be [code=java]RequestDispatcher requestDispatcher = getServletContext().getRequestDispatcher("/index.jsp");[/code] if I'm not mistaken [/LIST] | |
Re: If I'm correct you should use VS 2005 with SQL server 2005. Just download VS 2008 (or VS 2005 if you do not want to make big jump) | |
Re: [QUOTE=RahulV;646597]Hai, if i decide on creating a forum, how will the questions, suggestions, and answers be stored and displayed dynamically ??[/QUOTE] In database with use of technologies such as PHP/ASP(ASP.NET)/JASP/AJAX, storing such info in XMLs would be mistake | |
Re: [QUOTE=ebabes;551591]to ensure that when they conduct the quiz they will not copy the questions and give it to my other students who were not able to take yet their online quiz[/QUOTE] How you gone prevent use of mobile phones with camera??? | |
Re: I would recommend to use Java with Tomcat server. I'm not sure what will be reaction of PHP community. Would be Apache able to handle such requests from PHP? | |
Re: This is country depended. Each country has different certification, however certification from Adobe and others will be internationally accepted | |
Re: [LIST=1] [*] That is what you should tell us [*] You should not use JSP for DB connectivity [*] Some stack error messages will really help to solved that mess of code [/LIST] | |
Re: News letter can be done in the simplest form with HTML using all available resources have look at w3schools website for basic of [URL="http://www.w3schools.com/html/default.asp"]HTML[/URL] and have to add [URL="http://www.w3schools.com/media/default.asp"]multimedia [/URL] for start | |
Re: If you found solution, would you so kind to share with others? | |
Re: [QUOTE=Q8iEnG;646636]Check out warez sites[/QUOTE] Recommending warez website as solution to the problem is unwelcome! | |
Re: The code and error message would be nice to see them. Reading from crystal ball is complex in these days | |
Re: [QUOTE=cscgal;646920]Hi and welcome :)[/QUOTE] [QUOTE=petterford;646904]hi there, i'm newbie, it's gud to be part of this wonderful forum.. :) ... nice to meet you all ------------------- Background Check Report | Free Background Checks | Sex Offenders[/QUOTE] Dani say hello and doesn't remove fake signature, bad-bad girl ;) | |
Re: You are on discussion forum! Observe, learn and develop own forum based on your observation... | |
Re: [QUOTE=ratri;644787]If you have a windows Installation CD, the personal web server comes with it for free. If it is not already installed, go to the control panel (Start->Control Panel), double click on "Add Remove Programs", click on Add/Remove Windows components and in the windows components wizard that pops up, check … | |
Re: [QUOTE=whamos;646048]overall of this nobody should boast in his skills, you'll just bringing down your self, don't compare if your not perfect.[/QUOTE] Nobody is perfect, and if you happened to be perfect just make sure you not standing behind glass in the museum as their exposition ;) | |
Re: [QUOTE=kvdd;642793] [B] Daniweb where is your responsetime within 3 hours!![/B]:icon_cheesygrin: [/QUOTE] Who told you there is 3h respond time? Everybody here has his/her own life beside dani who is here 24/7 ;) | |
Re: By looks of it you may need to support IE6 at least for another year... | |
Re: Did you check/set up [URL="http://ubuntuforums.org/showthread.php?t=217936&highlight=classpath"]PATH[/URL]? | |
Re: [ICODE]JButton.setVissible(boolean);[/ICODE] the function is inherited from [URL="http://java.sun.com/javase/6/docs/api/javax/swing/JComponent.html#setVisible(boolean)"]JComponent[/URL] | |
Re: EERM = Extended Entity Relationship Model I would say auto increment column as if you want to keep track of next item number to be used you need to run extra query to get current number. Plus there are other thing you would have to take care from coding point … | |
Re: Are you planning to do this once in while or this is non-stop requirement | |
Re: Of course it will, you declares connections as [code]Connection [COLOR="Red"]con[/COLOR] = DriverManager.getConnection("jdbc:mysql://localhost:3306/mynewdatabase","root", "root123");[/code] but you trying to call it as [code]st=[COLOR="Red"]connection[/COLOR].createStatement();[/code] You should seriously look into some materials on Java web development [URL="http://java.sun.com/javaee/5/docs/tutorial/doc/"]Java EE5 Tutorial[/URL] and [URL="http://java.sun.com/docs/books/tutorial/jdbc/index.html"]JDBC Database Access[/URL] may help you too. As I said previously accessing database from … | |
Re: To run JSP you need Tomcat server PS: In the future please provide better description of the problem | |
Re: If you did it in Java, then this task should be simple for you.[LIST=1] [*]Get location of excel file from user in JSP [*]Pass file location from JSP to servlet [*]Servlet is in general a Java class so you should have no problem to proceed from here [/LIST] | |
Re: [QUOTE=rajarajan07;642625]Hi, If you got the solution, Please mark the thread as solved and give the reputation. Thanks.[/QUOTE] Begging for reputation? Where this world going :?: :S | |
Re: The interface is the simple thing done in HTML, however it is the server side scripting that does all data manipulation what you need to learn. Either JSP/PHP/ASP | |
Does anybody know how to setup PHP on Tomcat 5.5? I found this tutorial [URL="http://blog.taragana.com/index.php/archive/running-php-5x-on-windows-using-tomcat-4x-or-5x/"] http://blog.taragana.com/index.php/archive/running-php-5x-on-windows-using-tomcat-4x-or-5x/ [/URL] but i can't get it work. Can somebody help? Thank you | |
Re: You should commence your self to better internet search. Since 2005 Microsoft provide free version of they development tools that also include [URL="http://www.asp.net/downloads/essential/"]Visual Web Developer [/URL] and they also have large database of [URL="http://msdn.microsoft.com/en-us/asp.net/default.aspx"]topics/tutorials[/URL] related to ASP | |
Re: [QUOTE=greenebriar;641797]How do I transfer to my website or should I link to Dreamweaver. [/QUOTE] Copy & paste created photo gallery to your website folder on your disk (the one declared by you in Dreamweaver) and check if all functionality works (some software packages love to create absolute path to created … | |
Re: One more thing to add, setting up connection with database from JSP is bad thing to do. Learn to use servlets and then do JSF | |
Re: [URL="http://webdev.sis.pitt.edu/st/sec_cookie/cookie2.htm"]Here[/URL] is tutorial how to set up Tomcat on Windows machine | |
Re: If you use [ICODE]import EasyIn.*;[/ICODE] then this class [B]must be[/B] in same directory as class in which one you wish to use EasyIn | |
Re: Ehmm, it would be much better if you provided some explanation why you marked post as solved and maybe provide solution then just simple mark the post as solved without explanation... | |
Re: [QUOTE=Ken Sharpe;639238] Java is generally considered slower, but it's the common alternative... but it's not open source (yet?)[/QUOTE] I'm sorry so far I found Java to be much faster then doggy ASP servers, no offense... | |
Re: [QUOTE=ierpe;639091] But it's my first time programming for mobile devices, and I don't really have a clue of where to start, I am looking for a tutorial to begin, so if you know a good link please send, because I couldn't find anything good by googling... I understand what I … | |
Re: [QUOTE=sasirekha muthu;641051]Hi, am doing M.sc Final year....i have to submit an assignment on java project which should be a real time project......but i dont know how to choose the project.....can u please help me to get a very good project in Java which will be useful for my Career........:( With … | |
Re: Have look at this topic on [URL="http://forum.java.sun.com/thread.jspa?threadID=223398&messageID=787601"]Sun forum[/URL] |
The End.