RPC problem after deploying on server

2009-05-12 Thread Rod
Hello, I'm completly new to GWT. I created an application and started it on local host in hosted mode with no problems. It was communicating with external database successfuly. But after I put it on a server I got an RPC exception: com.google.gwt.user.client.rpc.StatusCodeException: HTML

Re: RPC problem after deploying on server

2009-05-12 Thread Jim
For GWT-database application, you can find an example in http://www.gwtorm.com/mail/Mail.html. The source code is also available there.Usually this kind of issue is due to serializable or exception that is not handled in service. Jim http://www.gwtorm.com

Re: RPC problem after deploying on server

2009-05-12 Thread Rod
Thank You for answer, but can You be more precise? I have hidden the database-communication part of the code but the problem still occured, so I think it's the problem between server and client. I'm wondering about this server. What if it doesn't have any mechanism to run servlet's on it? On 12

Re: RPC problem after deploying on server

2009-05-12 Thread Jim
Can you post some of your code? Without any code, we can not figure it out. Jim http://www.gwtorm.com http://code.google.com/p/dreamsource-orm/downloads/list On May 12, 3:57 pm, Rod rod.mk...@gmail.com wrote: Thank You for answer, but can You be more precise? I have hidden the

Re: RPC problem after deploying on server

2009-05-12 Thread Salvador Diaz
Hi, It definitively looks like a server configuration error: You don't have permission to access /Test/war/test/gwt/ Make sure the permissions are correctly setup in the filesystem of your server. Hope that helps, Salvador On May 12, 10:32 pm, Jim jim.p...@gmail.com wrote: Can you post

Re: RPC problem after deploying on server

2009-05-12 Thread Rod
I have two classes on client , one named POST, and second POSTAsync. In POST I have @RemoteServiceRelativePath(gwt) command to set path. On server side I have POSTImpl class with methods(bodies) to deal with database. And I have the following settings in web.xml file: servlet

Re: RPC problem after deploying on server

2009-05-12 Thread Jason Essington
Looks like your servlet mapping is incorrect. Either change your @RemoteServiceRelativePath to test/gwt OR your servlet mapping to /gwt -jason On May 12, 2009, at 3:56 PM, Rod wrote: I have two classes on client , one named POST, and second POSTAsync. In POST I have