The assumption was that you wanted to communicate to a different server (than your GWT module came from) via SOAP, which is particularly difficult to do with a web browser due to Same Origin Policy. which would require GWT -> rpc to your server -> SOAP to remote server
However if you are just communicating with your server, then don't even bother with trying to use SOAP. It is overly verbose for use with a javascript client, and you'd see much better performance with GWT- RPC or JSON. If you are trying to connect to existing services. you could still use GWT-RPC, and have the rpc servlets just bypass the SOAP listeners and connect directly to the underlying implementations. -jason On Dec 8, 2008, at 10:49 AM, prat wrote: > > But if am using GWT-RPC then wats the need to use SOAP.. both are used > to to communicate with server.. > using both SOAP & RPC at server side will redundant i think. > I wanna use SOAP instaed of RPC. will search more as u said. > Thanks alot all of u .. :) > > On Dec 8, 4:59 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > wrote: >> 2nd on Fredrik's solution...that's how we're doing it. GWT-RPC >> between client and the "front" edge of the server. The "back" edge >> of >> the server talks SOAP to the rest of our solution. I've tried SOAP >> down to the web client directly...it can be done...but it wasn't as >> easy as I thought it'd be. Was trying to do it in pre-GWT days, and >> as Lothar says, it's been mentioned a number of times here that a >> couple of libraries are out there....just do a little search. >> >> Later, >> >> Shaffer >> >> On Dec 8, 3:33 am, Lothar Kimmeringer <[EMAIL PROTECTED]> wrote: >> >>> prat schrieb: >> >>>> Can anyone tell how to use webservices(SOAP request & SOAP >>>> response) >>>> with GWT client?? >> >>> Personally I would go with Fredik's suggestion (he was just faster >>> than >>> me answering here ;-) >> >>> If you really want to let it happen on the client-side, you might >>> have a look at previous mails on this list. Somebody was linking >>> to a library he implemented for doing this. The search-engine >>> of your least mistrust will help you find it ;-) >> >>> 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 -~----------~----~----~----~------~----~------~--~---
