Re: How to connect a non-gwt xmlrpc-client to a xmlrpc-server created by GWT.

2011-11-17 Thread jhulford
If your servlet is extending the RemoteServiceServlet from the GWT code (as it appears you're doing based on the error), then the only data format that can be parsed from a client request is the GWT-RPC one. If you want to do xml-rpc, you'll need to write your own backend to support that, or find

How to connect a non-gwt xmlrpc-client to a xmlrpc-server created by GWT.

2011-11-16 Thread Johannes Held
Hello group, I have a small application programmed with GWT beeing deployed to a jetty as root.war (thus serving "/"). Assume I have a Servlet named "UserServlet" mapped to "/user/user" providing a method "getString()". On the server side, this method is implemented in the class "TestImpl". No