> is it possible to use webservice soap in gwt? Have somebody samples?
> Which library i can use for it?
There are a couple of results when searching for
http://www.google.de/search?q=soap+javascript
and you might choose one that is convienent for you. If
you have a servlet on the server-side, you can use e.g.
Axis to create Java-classes out of the WSDL-file and use
it inside your RemoteServiceServlet. That way you as well
come around the security-restrictions of the browser if
you try to access a different server for the WebService
than the web-application itself comes from.
Alternatively you can write a (signed if you need to contact
a different server than the one it's been loaded from) Applet
that is doing the request or a flash-"movie".
Personally I'd prefer to avoid the WebService at all, then
do it on the server-side using GWT-RPC.
Regards, Lothar