Schema login.xsd


schema location:  www.e-courier.com\software\schema\public\login.xsd
targetNamespace:  http://www.e-courier.com/software/schema/public
 
Elements 
Login 


element Login
diagram
namespace http://www.e-courier.com/software/schema/public
attributes
Name  Type  Use  Value  
UserName  xsd:string  required    
Password  xsd:string  required    
annotation
documentation 

Purpose:
Allows the API user to authenticate and accquire an access token called UserGUID, that is required for all other method invocations in the  e-Courier network.

Business Rules:
User must register with e-Courier  and create a remote user profile that assigns a UserName and Password.
The User name and password identifies the user and the customer account or accounts to which that user has access to.

Error Messages:
Invalid Login
      
source
<xsd:element name="Login">
  <xsd:annotation>
    <xsd:documentation>
Purpose:
Allows the API user to authenticate and accquire an access token called UserGUID, that is required for all other method invocations in the  e-Courier network.

Business Rules:
User must register with e-Courier  and create a remote user profile that assigns a UserName and Password.
The User name and password identifies the user and the customer account or accounts to which that user has access to.

Error Messages:
Invalid Login
      </xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:attribute name="UserName" use="required">
      <xsd:simpleType>
        <xsd:restriction base="xsd:string">
          <xsd:length value="50"/>
          <xsd:minLength value="6"/>
          <xsd:maxLength value="50"/>
        </xsd:restriction>
      </xsd:simpleType>
    </xsd:attribute>
    <xsd:attribute name="Password" use="required">
      <xsd:simpleType>
        <xsd:restriction base="xsd:string">
          <xsd:length value="255"/>
          <xsd:minLength value="1"/>
          <xsd:maxLength value="255"/>
        </xsd:restriction>
      </xsd:simpleType>
    </xsd:attribute>
  </xsd:complexType>
</xsd:element>