LogOnUser

Description

Log on to confirmit web-services

Signature
string LogOnUser(string username, string password)

Parameters

Name Data Type Description

userName

string required

Username of account with sufficient access to all operations that are to be performed

password

string required

Password for the account

Response

Data Type Description

string

Key that must be provided in each call to a confirmit web-service function

Example

var client = new LogOnSoapClient();
var url = "http://ws.euro.confirmit.com/confirmit/webservices/current/LogOn.asmx";
client.Endpoint.Address	= new EndpointAddress(url);

var key = client.LogOnUser("username", "password");