Hi, I am using the SOAP service provided by web2py to create a simple web service for my web application. The document provide a example of using "pysimplesoap" to consume the created SOAP web service. The code is like below:
>>> from gluon.contrib.pysimplesoap.client import SoapClient >>> client = SoapClient(wsdl="http://localhost:8000/app/default/call/soap?WSDL") >>> print client.MyAdd(a=1,b=2) {'result': 3} My question is for this simple web service, can we use other languages like JAVA to consume it in the client side. Does the simple web service allow JAVA clients like JAX-WS or JAVA Axis to access it? My cooperator want me to create a web service for my application and they are using JAVA. Thanks! -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

