Re: newbie question, problem adding jar library

2010-03-12 Thread khalid
hi guys it took much time for this post to be approved by moderators anyway I have solved the problem yesterday by disabling google app engine ^_^ - chris:Thank you I am going to need this before deploying my server side code Victor: exactly , I work on netbeans always

Re: newbie question, problem adding jar library

2010-03-11 Thread Sripathi Krishnan
You may have accidentally enabled Google App Engine. Try disabling it for your project in eclipse. App Engine does not allow you to use databases, and you are likely to get the error you pasted. --Sri http://blog.530geeks.com 2010/3/12 Víctor Llorens Vilella victor.llor...@gmail.com At least

newbie question, problem adding jar library

2010-03-11 Thread khalid
Hello every one I am making this simple application where the user fills some fields and makes an RPC to save these info in a DB anyway the server method uses the popular: Connection , PreparedStatement ,... etc classes which are in the mysql-connector jar file I think so ^_^ I have followed

Re: newbie question, problem adding jar library

2010-03-11 Thread Chris Lercher
Hi, adding it to the build path isn't enough in this case. The jar has to be found by the server at runtime. To achieve this, you can put the jar in the directory war/WEB-INF/lib. Chris On Mar 11, 12:25 am, khalid khalid@gmail.com wrote: Hello every one I am making this simple application

Re: newbie question, problem adding jar library

2010-03-11 Thread Víctor Llorens Vilella
At least in netbeans, there's an option in to include selected library in war file. On 11 March 2010 18:37, Chris Lercher cl_for_mail...@gmx.net wrote: Hi, adding it to the build path isn't enough in this case. The jar has to be found by the server at runtime. To achieve this, you can put