Hi, I've read through the documentation, and looked through google, but can't seem to pinpoint an answer to this.
I'm trying to select an enumeration in this xml, but when using the client.service.getResourceByCategory as described in the docs, I get an error stating the following
Traceback (most recent call last): File "GWsyncSOAP.py", line 276, in ? test = gw.testMah() File "GWsyncSOAP.py", line 262, in testMah self.client.service.getResourceByCategory() File "/root/devel/gwsync/lib/suds/client.py", line 240, in __call__ return target.call(*args, **kwargs) File "/root/devel/gwsync/lib/suds/client.py", line 378, in call method = self.resolve(self.name(), strict=False) File "/root/devel/gwsync/lib/suds/client.py", line 332, in resolve raise MethodNotFound(name) suds.MethodNotFound: Method not found: 'getResourceByCategory'
The code used is as follows:
FilterOp = self.client.factory.create('ns2:FilterOp') self.client.service.getResourceByCategory(FilterOp.and)
The specifications for FilterOp are the following:
http://developer.novell.com/documentation/gwsoap/gwwbserv/index.html?page=/d...
Thank you so much for the help, this has been driving me crazy!!!