hi Joseph,
there are plenty existing native javascript libraries for soap on
client, just google for "javasript soap",
There are event articles on that:
http://www.ibm.com/developerworks/webservices/library/ws-wsajax/
in GWT (and javascript) we can talk to every soap api bypassing same-
domain-policy with smart (and hacky) use of google.feeds with raw xml
format,
You could either go GWT XML module way (adding your cusotm parsing and
building bodies/envs). However you can get several stoppers during
implementation: IE does not support namespaces well or at all
depending on version, see GWT api: there is no
getElementsByTagNameNS(namescape, name) for that reason.
I would rather search for solid javascirpt soap library and bind it to
GWT with JSNI (so you won't to work with xml handling natively)
regards,
Peter