Authenticate operations SOAP netForumXML OnDemand avectra

Passing correct credentials to Authenticate method will return an authentication token - without an authentication token, the rest of the xWeb web methods will be inoperable. The authentication token is governed by the group privileges assigned to the account invoking the xWeb web methods. Please consult with the administrator of the netForum database to ensure your level of authorization. Test The test form is only available for requests from the local machine. SOAP 1.1 The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values. POST /xweb/netforumxmlondemand.asmx HTTP/1.1 Host: netforum.avectra.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://www.avectra.com/OnDemand/2005/Authenticate"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Authenticate xmlns="http://www.avectra.com/OnDemand/2005/">
      <userName>string</userName>
      <password>string</password>
    </Authenticate>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <AuthorizationToken xmlns="http://www.avectra.com/OnDemand/2005/">
      <Token>string</Token>
    </AuthorizationToken>
  </soap:Header>
  <soap:Body>
    <AuthenticateResponse xmlns="http://www.avectra.com/OnDemand/2005/">
      <AuthenticateResult>string</AuthenticateResult>
    </AuthenticateResponse>
  </soap:Body>
</soap:Envelope>
SOAP 1.2 The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values. POST /xweb/netforumxmlondemand.asmx HTTP/1.1 Host: netforum.avectra.com Content-Type: application/soap+xml; charset=utf-8 Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <Authenticate xmlns="http://www.avectra.com/OnDemand/2005/">
      <userName>string</userName>
      <password>string</password>
    </Authenticate>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <AuthorizationToken xmlns="http://www.avectra.com/OnDemand/2005/">
      <Token>string</Token>
    </AuthorizationToken>
  </soap12:Header>
  <soap12:Body>
    <AuthenticateResponse xmlns="http://www.avectra.com/OnDemand/2005/">
      <AuthenticateResult>string</AuthenticateResult>
    </AuthenticateResponse>
  </soap12:Body>
</soap12:Envelope>
https://netforum.avectra.com/xweb/netforumxmlondemand.asmx?op=Authenticate