<div dir="ltr"><div><span style="font-family:monospace,monospace">Here's my code. When I "print bd.as_xml()" it looks good to me, but all that ends up in my <v2:response> is </span><span style="font-family:monospace,monospace">2015-04-24T00:00:00, not <BusinessDate></span><br><span style="font-family:monospace,monospace">2015-04-24T00:00:00</BusinessDate>. Help.  -Tim<br><br><br></span></div><div><span style="font-family:monospace,monospace">-------- BEGIN CODE --------------<br></span></div><div><span style="font-family:monospace,monospace"></span><div><span style="font-family:monospace,monospace"><br>from pysimplesoap.client import SoapClient<br>from pysimplesoap.simplexml import SimpleXMLElement<br><br>soapLocation="<a href="https://api5.brinkpos.net/Sales2.svc" target="_blank">https://www.changed-for-example.com/Sales2.svc</a>"<br>soapAction="<a href="http://www.brinksoftware.com/webservices/sales/v2/ISalesWebService2/" target="_blank">http://www.changed-for-example.com/webservices/sales/v2/ISalesWebService2/</a>"<br>nsValue="v2"<br>namespaceValue="<a href="http://www.brinksoftware.com/webservices/sales/v2" target="_blank">http://www.changed-for-example.com/webservices/sales/v2</a>"<br>httpHeaders = {'AccessToken':'**NOT*THE*REAL*TOKEN', 'LocationToken':'</span><span style="font-family:monospace,monospace"><span style="font-family:monospace,monospace">**NOT*THE*REAL*TOKEN</span>'}<br><br>client = SoapClient(location=soapLocation,action=soapAction,namespace=namespaceValue,ns=nsValue,trace=True,http_headers=httpHeaders)<br><br>bd = SimpleXMLElement("<BusinessDate>2015-04-24T00:00:00</BusinessDate>")<br><br>response = client.GetOrders(request=bd)<br></span><br></div></div></div>