Hi,

soapUrl = constants.JIRA_PATH + '/jira/rpc/soap/jirasoapservice-v2?wsdl'
soap = SOAPpy.WSDL.Proxy(soapUrl)
auth = soap.login(constants.JIRA_USERNAME,constants.JIRA_PASSWORD)
b = Types.longType(10041L)
role =  soap.getProjectRole(auth,b)
project =  soap.getProjectByKey(auth,'TEMP')

Now I want to pass role and project object to some other function of the
webserice but I get an error as the role and project are of struct type and
webservice is expecting remote role and remote project object which is of
complexType as mentioned in wsdl.

Can anyone tell me how can I handle the complexType and use them?


-- 
Cheers,
Vishwajeet
http://www.singhvishwajeet.com
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to