Skip to content

Instantly share code, notes, and snippets.

@jeffdeville
Created March 12, 2014 17:15
Show Gist options
  • Save jeffdeville/9511662 to your computer and use it in GitHub Desktop.
Save jeffdeville/9511662 to your computer and use it in GitHub Desktop.
Attempt to make updateAccount Work
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://www.sungard.com/bsil/acctmgmt/v1-0" xmlns:v11="http://www.sungard.com/ws/v1-0" xmlns:v12="http://www.sungard.com/common/v1-0">
<soapenv:Header/>
<soapenv:Body>
<v1:updateAccountRequest>
<v11:client>
<v11:userId>?</v11:userId>
<v11:userApplicationDN>?</v11:userApplicationDN>
</v11:client>
<v1:accountNumber>3ad1d8fc-ad84-41e4-ad43-4dc9b673ca49</v1:accountNumber>
<v1:version>1854</v1:version>
<!--Optional:-->
<v1:companyName>Jeff's Company</v1:companyName>
<!--Optional:-->
<v1:companyAddress xsi:type="v12:USLocation">
<v12:locale>en_US</v12:locale>
<v12:type>Personal</v12:type>
<v12:address>123 Elm</v12:address>
<v12:city>Tucson</v12:city>
<v12:state>AZ</v12:state>
<v12:zip>85737</v12:zip>
</v1:companyAddress>
</v1:updateAccountRequest>
</soapenv:Body>
</soapenv:Envelope>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header xmlns:v1="http://www.sungard.com/bsil/acctmgmt/v1-0" xmlns:v11="http://www.sungard.com/ws/v1-0" xmlns:v12="http://www.sungard.com/common/v1-0"/>
<soapenv:Body xmlns:v1="http://www.sungard.com/bsil/acctmgmt/v1-0" xmlns:v11="http://www.sungard.com/ws/v1-0" xmlns:v12="http://www.sungard.com/common/v1-0">
<soapenv:Fault>
<faultcode>UnsupportedOperationFault</faultcode>
<faultstring>Unsupported Operation</faultstring>
<detail>
<v11:generalFault>
<v11:message>Error in operation: updateAccount</v11:message>
<v11:detail>Unsupported Operation</v11:detail>
<v11:errorCode>UnsupportedOperationFault</v11:errorCode>
<v11:timestamp>2014-03-12T13:14:37.388-04:00</v11:timestamp>
</v11:generalFault>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment