V9.Common:AuthHeader

Jump to: navigation, search

AuthHeader

Contains the properties used for authentication.

Authentication Parameters

NameTypeDescription
Password String The secret set of characters that verifies your access to data.
UserName String Identifier for your user account.
 

AuthHeader Section of the SOAP Header

Web service authentication uses the AuthHeader section of the SOAP header:
   <soap:Header>
      <typ:AuthHeader>
         <typ:UserName>ClientUserName</typ:UserName>
         <typ:Password>ClientPassword</typ:Password>
      </typ:AuthHeader>
   </soap:Header>

AuthHeader WSDL

   <s:element name="AuthHeader" type="s1:AuthHeader" /> 
   <s:complexType name="AuthHeader">
      <s:sequence>
         <s:element minOccurs="1" maxOccurs="1" name="UserName" type="s:string" /> 
         <s:element minOccurs="1" maxOccurs="1" name="Password" type="s:string" /> 
      </s:sequence>
      <s:anyAttribute /> 
   </s:complexType>
Personal tools