Re: tomcat4.1 for windows,please

2004-03-28 Thread yuni indrasary
--- Jon Wingfield [EMAIL PROTECTED] wrote: I just looked at the code you posted. thank's for the t ime Jon NullPointerException within line 33 of your LoginServlet int kode = Integer.parseInt(request.getParameter(kode)); This will throw an NPE if the kode parameter is not set.. I don't

Re: tomcat4.1 for windows,pl

2004-03-24 Thread yuni indrasary
--- Parsons Technical Services [EMAIL PROTECTED] wrote: Try this And give it another try. Thank you very much for the help Doug, but it still give an error message that was start with: Apache Tomcat/4.1.29-Error report HTTP Status 500-Exception report message description The Server

Re: tomcat4.1 for windows,pl

2004-03-24 Thread Jon Wingfield
I just looked at the code you posted. I think it's a NullPointerException within line 33 of your LoginServlet int kode = Integer.parseInt(request.getParameter(kode)); This will throw an NPE if the kode parameter is not set... Is your MIDLet TextField empty when you get this error? If not, check

RE: tomcat4.1 for windows

2004-03-18 Thread yuni indrasary
--- Shapira, Yoav [EMAIL PROTECTED] wrote: Howdy, What you need to do is blah blah, and then blah blah. ;) Seriously though, more precise error information would be welcome. AFAIK, only tomcat 3.x runs on J2ME, as later versions of tomcat require the full J2SE JDK. Yoav Shapira

Re: tomcat4.1 for windows

2004-03-18 Thread Parsons Technical Services
Try this. Change this: static final String dbURL = jdbc:mysql://localhost:3306/koordinat_bts?+user=userpassword=pasword; To this: static final String dbURL = jdbc:mysql://localhost:3306/koordinat_bts; static final String dbUser = user; static final String dbPass = password; And

RE: tomcat4.1 for windows

2004-03-11 Thread Shapira, Yoav
- From: yuni indrasary [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 10, 2004 10:14 PM To: Tomcat Users List Subject: tomcat4.1 for windows Hi, I recognized this list when doing some google's dig. My final project in college is about developping a wireless application (MIDlet, and using

tomcat4.1 for windows

2004-03-10 Thread yuni indrasary
Hi, I recognized this list when doing some google's dig. My final project in college is about developping a wireless application (MIDlet, and using HTTPconnection)that supposed to be served by servlet. The MIDlet and servlet(using doPOST method) works well when compiled, but when I try to run it