Advertisement
TriplePi

Untitled

Mar 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.70 KB | None | 0 0
  1. //request
  2. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:Core.service.livelink.opentext.com">
  3.    <soapenv:Header/>
  4.    <soapenv:Body>
  5.       <urn:AuthenticateUser>
  6.          <urn:userName>TL_test1</urn:userName>
  7.          <urn:userPassword>Livelink.2014</urn:userPassword>
  8.       </urn:AuthenticateUser>
  9.    </soapenv:Body>
  10. </soapenv:Envelope>
  11. //response
  12. <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  13.    <s:Body>
  14.       <s:Fault>
  15.          <faultcode xmlns:a="urn:Core.service.livelink.opentext.com">a:Core.LoginFailed</faultcode>
  16.          <faultstring xml:lang="en-US">Invalid username/password specified.</faultstring>
  17.       </s:Fault>
  18.    </s:Body>
  19. </s:Envelope>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement