how to call the service now web service using soapclient in windows application project?

568 Views Asked by At

I am following this document.

I have added the service reference into my application and called the getRecords web method but while calling that method I am getting the below error:

"The HTTP request is unauthorized with client authentication scheme 'Basic'. The authentication header received from the server was 'BASIC realm="Service-now"'."

Code:

ServiceNowSLA.ServiceNowSoapClient Obj = new ServiceNowSLA.ServiceNowSoapClient();
ServiceNowSLA.getRecords RecObj = new ServiceNowSLA.getRecords();
Obj.ClientCredentials.UserName.UserName = "ABC";
Obj.ClientCredentials.UserName.Password = "xyz";
Obj.getRecords(RecObj); => **at this line i am getting the error..**

As per my findings I have to do site minder authentication to reslove this error but i am unable to do so. Could you please assist me in this concern?

Thanks in Advance.

0

There are 0 best solutions below