It certainly is possible, as web services are servlets in a way and communicate over HTTP. However, you would need to know how to create a correct SOAP message. Another problem is that the web service would need to be in the same server as the GWT app, since XMLHTTPRequest will not allow you to make calls to another server. If you are trying to communicate with other web services, then a RPC service will be your best shot, since the server does not follow the same rules and act like a proxy in essence.
Otherwise, take a look at your web service's WSDL and construct a SOAP formatted XML string and send it via POST to the web service. Here is an example how to create one in Java: http://users.skynet.be/pascalbotte/rcx-ws-doc/xmlpost.htm On Dec 8, 3:17 am, prat <[EMAIL PROTECTED]> wrote: > Hello, > > Can anyone tell how to use webservices(SOAP request & SOAP response) > with GWT client?? > > Thanks > Prat --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
