Hi, My exposure to SOAP based services has been rather minimal, I have a service for which I am needing to process requests from, the request appears as follows:
<?xml version='1.0' encoding='UTF-8'?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://..." xmlns:xsi="http:/..." xmlns:xsd="http://..."> <SOAP-ENV:Body> <modifyRequest returnData="everything" xmlns="urn:..."> <attr ID="..."/> <data> </data> </modifyRequest> </SOAP-ENV:Body> </SOAP-ENV:Envelope> The ID attribute from the attr node resembles a GUID, the xml within the data tags varies wildly. My requirement is only to parse the ID attribute and complete body of the data tags and send this to an additional mechanism, where success is achieved merely by the submission to the additional service. I have started looking at spyne and the examples but none of these emulate anything similar to such an approach. Anyone know of any similar code they could reference me to so I may get a better understanding of how to accomplish this with spyne? Thanks for any guidance, jlc _______________________________________________ Soap mailing list [email protected] https://mail.python.org/mailman/listinfo/soap
