Has anyone had web services successfully consumed from a .NET client using python 2.6 /django 1.1/SOAPLIB 0.8.1? I'd love to know how you did it.
I've patched my SOAPLIB install to fix the WSDL issue and the unicode issue as detailed in my previous thread. My issue currently is that the SOAP ENV response is not being parsed correctly. This response generated using the same code and python 2.4.4, django 1.0.1 and soaplib 0.7 works correctly, the second example generated with python 2.6 /django 1.1/SOAPLIB 0.8.1 is crap according to Microsoft. #############python 2.4.4, django 1.0.1 and soaplib 0.7 <SOAP-ENV:Envelope xmlns="http://www.donnelleylogistics.com/aiim/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/ envelope/" xmlns:tns="http://www.donnelleylogistics.com/aiim/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http: //www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <ReserveResponse> <retval xmlns=""> <Start xmlns="" xsi:type="xs:int">26667631</Start> <Transaction xmlns="" xsi:type="xs:string">M111111_20090831T093702_588000</Transaction> <Stop xmlns="" xsi:type="xs:int">26667640</Stop> </retval> </ReserveResponse> </SOAP-ENV:Body> </SOA P-ENV:Envelope> ############python 2.6 /django 1.1/SOAPLIB 0.8.1 <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema- instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://www.donnelleylogistics.com/aiim/"> <SOAP-ENV:Body> <ReserveResponse> <ReserveResult> <Start xsi:type="xs:int">28435138</Start> <Transaction xsi:type="xs:string">M111111_20090831T094951_260000</ Transaction> <Stop xsi:type="xs:int">28436136</Stop> </ReserveResult> </ReserveResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---