GWT is to generate client code.  I'm not sure why you'd want to access SOAP
services directly from a webpage.  You can make simple calls from the
client with GWT-rpc, or AJAX REST or even JSON-RPC.   SOAP is really heavy
for this, and isn't built to work cross-domain.

If you just need server-server SOAP calls, then you can use anything you'd
like.

Luis


On Wed, Nov 16, 2011 at 2:54 PM, David Vree <[email protected]> wrote:

> The documentation on GWT wrt SOAP states that we should use
> RequestBuilder to make the call and process the XML that is returned.
> However, Apache CXF's SOAP framework (and others) will generate Java
> client proxies for us.  Is there some way to use these within GWT?
> Has anyone done this so as to avoid writing a ton of XML processing
> code?
>
> I ask because my company is building a commercial enterprise webapp
> and we are considering GWT for the UI.  However, we also need to
> provide a web services API to our backend.  Because our application is
> mostly about running various operations on complex, cyclic object
> graphs, we are inclined to go with SOAP instead of REST.
>
> --
> 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.
>
>

-- 
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.

Reply via email to