...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://projectorpsa.com/PwsProjectorServices/" xmlns:req="http://projectorpsa.com/DataContracts/Requests/"> <soapenv:Header/> <soapenv:Body> <pws:PwsAuthenticate> <pws:serviceRequest> <req:AccountCode>revcorp-doc</req:AccountCode> <req:Password>kouling</req:Password> <req:UserName>bruce@revcorp.doc</req:UserName> </pws:serviceRequest> </pws:PwsAuthenticate> </soapenv:Body> </soapenv:Envelope> |
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <PwsAuthenticateResponse xmlns="http://projectorpsa.com/PwsProjectorServices/"> <PwsAuthenticateResult xmlns:a="http://projectorpsa.com/DataContracts/Responses/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Messages xmlns="http://projectorpsa.com/CommonServices/" xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"/> <ResponseId xmlns="http://projectorpsa.com/CommonServices/">0</ResponseId> <Status xmlns="http://projectorpsa.com/CommonServices/">Ok</Status> <ServerTimestampUtc xmlns="http://projectorpsa.com/CommonServices/">2018-01-18T15:02:00.3123466Z</ServerTimestampUtc> <a:RedirectUrl i:nil="true"/> <a:SessionTicket>AUGTzGBZqJYkAuFk3+SPfw==</a:SessionTicket> <a:AccountIdentity xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"> <b:AccountCode>revcorp-doc</b:AccountCode> <b:AccountId i:nil="true"/> <b:AccountUid>1152921504606849994</b:AccountUid> </a:AccountIdentity> <a:UserIdentity xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"> <b:UserDisplayName>Bruce Wayne</b:UserDisplayName> <b:UserId i:nil="true"/> <b:UserReferenceSystemId i:nil="true"/> <b:UserUid>1152921504606950320</b:UserUid> </a:UserIdentity> <a:SuperUserFlag>false</a:SuperUserFlag> <a:DocumentServerUrl>https://doc.projectorpsa.com/1</a:DocumentServerUrl> <a:Account xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"> <b:AccountCode>revcorp-doc</b:AccountCode> <b:AccountId i:nil="true"/> <b:AccountUid>1152921504606849994</b:AccountUid> <b:Name>Revolutionary Solutions Corp (Documentation)</b:Name> </a:Account> <a:User xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"> <b:UserDisplayName>Bruce Wayne</b:UserDisplayName> <b:UserId i:nil="true"/> <b:UserReferenceSystemId i:nil="true"/> <b:UserUid>1152921504606950320</b:UserUid> <b:EmailAddress>bruce@revcorp.doc</b:EmailAddress> <b:FirstName>Bruce</b:FirstName> <b:LastName>Wayne</b:LastName> <b:MiddleName i:nil="true"/> </a:User> </PwsAuthenticateResult> </PwsAuthenticateResponse> </s:Body> </s:Envelope> |
...