[EMAIL PROTECTED] schrieb: > 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 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
