5,031 Posted Topics
Re: [QUOTE=buckmajor;998460]Hi there Much much would you charge for a 'Content Management System' if I was using an open source application? I was thinking of charging a service fee of $20/month just for the CMS. Do anyone have a different opinion? Many thanks in advance CHEERS :)[/QUOTE] Yes I do have … | |
Re: Please quickly edit your post and use code tags to show code properly | |
Re: [QUOTE=sharmanilesh15;627238]I need Source code for online examination in JSP[/QUOTE] I need you to read [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]forum rules[/URL] to understand what is this forum about and then one short [URL="http://www.daniweb.com/forums/announcement9-2.html"]annoucement[/URL]. After that consider your next question | |
Re: Copy and paste mistake LOL. This is from your other class remove it [code=java] { // main method begins execution of Java application public static void main (String args[]) {[/code] | |
Re: You need to first have look at Java to get basic knowledge and after that you should progress to "extensions" to it like JSP | |
Here is simple example of static image to be displayed as logo on the start-up/splash screen. This can be improved by creating animation out of series of images or use of flash file through [URL="http://developer.sonyericsson.com/site/global/newsandevents/latestnews/newsapr08/p_project_capuchin_announcement.jsp"]Project Capuchin[/URL] library. As for location of image file this was placed in new folder called … | |
Re: Do you have installed any Java server container (Tomcat, JBoss, GlassFish etc.) on your pc? If you do where do you place your applet in this environment? | |
Re: [LIST=1] [*]Tags which do not have pair close tags should have back slash on the end of their declaration, which all of yours input tags are missing [*]Input for ID is missing double quote after size declaration [/LIST] [code=html] <html> <head> <title></title> </head> <body> <form name="frm_details" method="post" action="mailto:someone@hotmail.com"> <table border="1"> … | |
Re: You may want to read this post then [url]http://www.daniweb.com/forums/post646446.html#post646446[/url] | |
Re: [code=xml] <servlet> <servlet-name>addServlet</servlet-name> <servlet-class>servlet.AddServlet</servlet-class> <servlet-name>loginServlet</servlet-name> <servlet-class>servlet.loginServlet</servlet-class> <servlet-name>registerServlet</servlet-name> <servlet-class>servlet.registerServlet</servlet-class> <!-- ONLY ONE DECLARATION NEED IT --> <init-param> <param-name>dbURL</param-name> <param-value>jdbc:odbc:database</param-value> </init-param> <init-param> <param-name>dbUserName</param-name> <param-value>username</param-value> </init-param> <init-param> <param-name>dbPassword</param-name> <param-value>password</param-value> </init-param> <init-param> <param-name>JdbcDriver</param-name> <param-value>sun.jdbc.odbc.JdbcOdbcDriver</param-value> </init-param> </servlet>[/code] | |
![]() | Re: Tutorial for drag&drop "developers" [URL="http://www.netbeans.org/kb/docs/java/quickstart-gui.html"]Designing a Swing GUI in NetBeans IDE[/URL] ![]() |
Re: Is this solved or not? If it is solved why didn't you stated so or perhaps provided solution? | |
Re: I'm sorry but this is not "drop your assignment we will sort it for you service". Clear problem description of problem is missing... | |
Re: [QUOTE=wildheart25c;997944] 5- I went to ENV vars. There was no classpath. So i created one and added its value as C:\jakarta-tomacat-4.1.31\common\lib\servlet.jar[/quote] Classpath should to be starting with dot, semi-column and then with location of the library; and each new library should be separated from previous library by semi-column [icode].;C:\jakarta-tomacat-4.1.31\common\lib\servlet.jar[/icode] [QUOTE=wildheart25c;997944] … | |
Re: You would do good thing if you start splitting this thousand lines long "simple" application into separate classes and packages... | |
Re: My favourite forum rule: [URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL] So start doing something... | |
Re: You should AJAX for this sort of thing dynamic interaction and JSP just as container to hold/present content... | |
Re: Step 4: Do connection to database from servlet and not from Java Server Page Optional Step: If you care to learn something you better to check out post on the top of the JSP section which gives example with description how to tackle this problem for start | |
Re: What browser you using? Did you try to open the site under different internet browser (Firefox, Chrome, IE, Safari)? You can clean cache of the browser and see if that works (Firefox == Tools=> Clear Recent History => click on the arrow next to Details to see option list, leave … | |
Re: You failed to specify what language or technology you are using... | |
Re: [QUOTE=camilia;995008]hello, i need help on the format for rss feed in aptana studio to link to java servlet coded in eclipse. thanks!!![/QUOTE] Very bad problem description. Explain in better manner and maybe somebody can help you... | |
Re: Quick sample of mapping [CODE=xml] <servlet> <servlet-name>LoginServlet</servlet-name> <servlet-class>LoginServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>LoginServlet</servlet-name> <url-pattern>/controller/login</url-pattern> </servlet-mapping> [/CODE] | |
Re: Maybe, but first you need to specify what you want to use (plain HTML, PHP, ASP/ASP.NET/JSP etc.) | |
Re: [url]http://www.netbeans.org/kb/docs/web/tutorial-webapps.html[/url] | |
Re: Any IDE (IntelliJ IDEA, Eclipse, NetBeans) with either [URL="http://java.sun.com/javame/downloads/index.jsp"]WTK 2.5.2[/URL], [URL="http://java.sun.com/javame/downloads/index.jsp"]Java ME SDK 3.0[/URL] or any custom WTK from mobile manufacturers ([URL="http://developer.sonyericsson.com/site/global/docstools/java/p_java.jsp"]Sony Ericsson[/URL], [URL="http://www.forum.nokia.com/Tools_Docs_and_Code/Tools/"]Nokia[/URL] ...) | |
Re: You did not added menu bar to your frame [URL="http://java.sun.com/javase/6/docs/api/javax/swing/JFrame.html#setJMenuBar(javax.swing.JMenuBar)"]setJMenuBar(JMenuBar menubar) [/URL] | |
I need to read XML document submitted to doPost() method ( I do not want to upload it, just read in and pass for further processing). Here is a general code that I use for now to see if file been received. [code=Java] public void doPost(HttpServletRequest request, HttpServletResponse response) throws … | |
Re: @nazd28 please full sentence English. It part of the rules of this forum, take this as unofficial warning. | |
Re: [QUOTE=roseline antwi;991372]I need help on hacking accounts in a wireless area network.[/QUOTE] Then you chosen wrong forum because we do not do illegal stuff... | |
Re: Please do not hijack other people threads. As for your query here is [URL="http://www.google.co.uk/search?source=ig&hl=en&rlz=&=&q=embed+google+maps+into+phpbb3&btnG=Google+Search&meta=lr%3D&aq=f&oq="]answer [/URL]or be more specific which part of deployment you have problems with... | |
Re: Please take time to check where you posting. You posted in JSP that is Java Server Pages and that is not same as JavaScript. Post moved | |
Re: In similar fashion as you query database to see what is available in stock you can link your customer purchase order action(on any website seen as button to "Confirm" after you provided delivery address and payment details) to a method in servlet to take data stored in order form to … | |
Re: 1. [URL="http://www.daniweb.com/forums/thread215826.html"]Post num 10[/URL] is something what you may want to have look at 2. create empty index.html (*.jsp) with meta tag for redirect in one second that will call upon your servlet. [icode]<meta http-equiv="refresh" content="1; url=next_page.html">[/icode] | |
Re: [QUOTE=zinjnhell;991392]hello i saw your question so you have a cpu schuduling program in java[/QUOTE] Your question was already moved to Java section so why you reopening this old thread? I'm closing this thread and I suggest that you take in serious consideration this thread "[URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to … | |
Re: Read following [URL="http://www.daniweb.com/forums/announcement9-2.html"]rule[/URL] and act on it... | |
Re: @ceyesuma: Your question is confusing, if you have problems to link MySQL with NetBeans have look at [URL="http://www.netbeans.org/kb/docs/ide/mysql.html"]this tutorial[/URL] else please provide better explanation | |
Re: So far as I'm concerned this is not possible. SIS files are for Symbian devices written in shrewd C++ of Symbian, where JAR is way to distribute Java Microedition files for any Java enabled devices. | |
Re: [QUOTE=Rahul Bhat;989526]Hello dude , If u have finished the project can u help me with it ..im doing a same kind of project and i have got few idea so willu help me with it ..the reply to my mail <EMAIL SNIPPED>[/QUOTE] Sorry kid this is no "give me solution" … | |
Re: You can not achieve this with Java Microedition as you cannot run your application on top of device OS. Because of that you will not able to intercept incoming SMS and filter it out. You can try to find out work around for Symbian, but JME is "no way". (There … | |
Re: Cool, last reply from the thread is nearly year old and the project should be already submitted, if not failed. You may be in time for graduation ceremony... | |
Re: There is Mac library or utility that is capable to do so. At this point I do not know much about it (only heard of it), but tomorrow I may know more when I speak to our "Mac guru" | |
Re: Yes you can possibly get this sort of info, but only when you specify what mobile platform you wish to use (Java Microedition, Symbian, Windows CE, Android, iPhone) | |
Re: I guess that specifying what language you using and what you trying to do with that output would be generally good start... | |
Re: [LIST=1] [*]Please use full sentence English, chat speak is not welcome [*]If you do database connection through JSP then that is bad [*]your SQL query is malformed [*]have look on the post on the top of JSP section for general idea about querying database [/LIST] | |
Re: Simple google search can get you numerous resources like [URL="http://jsptags.com/tags/navigation/pager/pager-taglib-2.0.html"]Pager Tag Library v2.0 references[/URL] and there are [URL="http://www.google.co.uk/search?hl=en&q=pager-taglib+tutorials&btnG=Search&meta="]many others[/URL] | |
Re: It is unlike event you will trace who did it as IP masking and other techniques imply, but if you drop question in appropriate forum section you may learn how to improve your security. I think best point would be start with server technology used (Apache, Apache Tomcat, IIS) to … | |
Re: Well there is an obstacle in your path [URL="http://www.daniweb.com/forums/announcement118-2.html"]We only give homework help to those who show effort[/URL] | |
The End.