8

I am writing a web application in GWT, I am trying to interact with a SOAP web service. I know how to do it in regular java environment using the JAX-WS library, but GAE (Google App Engine) does not support it.

see http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine

is there a way of consuming a wsdl based web service (ebay web service for example) using GWT+GAE?

Thanks!

Rubinsh
  • 4,883
  • 10
  • 34
  • 41

2 Answers2

6

Google have now provided SOAP support for GAE:

http://code.google.com/appengine/articles/soap.html

Catchwa
  • 5,845
  • 4
  • 31
  • 57
  • can anyone provide me the new URL? this one is old and broken? – Waqas Ali Jul 02 '14 at 05:56
  • Find the source of it here: https://code.google.com/p/googleappengine/source/browse/trunk/docs/appengine/articles/soap.html?r=223 and the site as it was in 2012 in the WayBackMachine: http://web.archive.org/web/20120220232536/http://code.google.com/appengine/articles/soap.html – Anton Kaiser Nov 20 '14 at 09:43
  • @AntonKaiser how can the above been achieved in android studio? am trying to run the script he is providing but it fails. – Edijae Crusar Jan 11 '17 at 07:36
  • help here http://stackoverflow.com/questions/41573829/how-to-send-and-receive-soap-data-from-webservice-to-google-app-engine – Edijae Crusar Jan 11 '17 at 07:40
1

Apparently, it seems to work with the AxiomSoapMessageFactory from Spring WS.

There is a detailed article named Exposing SOAP Service on GAE. I assume it might be possible to consume one WS following the same technology stack Using Spring Web Services on the Client.

rochb
  • 2,249
  • 18
  • 26
  • help me here http://stackoverflow.com/questions/41573829/how-to-send-and-receive-soap-data-from-webservice-to-google-app-engine – Edijae Crusar Jan 11 '17 at 07:40