Hi, your solution worked.
Before I was clueless about what's happening and terminated the process in 
between.
It takes minutes upon minutes to finish.

I've a doubt, it's not that pressing, but curious.
I've no access to server side implementation, all I know is location of this 
wsdl file (I've access to api documentation in java)

To get all available services,
1) If I use SOAPpy
    from SOAPpy import WSDL
    _server = WSDL.Proxy(WSDFILE)
    _server.methods.keys()

2) If I use pysimplesoup
from pysimplesoap.client import SoapClient, SoapFault  
client = SoapClient(WSDFILE, cache='.')
client.services['VRAPI']['ports']['VRAPIPort']['operations'].keys()

is there any better way to do this.
Not important, but...



Reply via email to