Hi I have a web service method that I have to call from my project; but I am not allowed to add service reference to my visual studio. Could you please advice how can I achieve it. The following link I have given to access AuthenticateUser() method
http://devaspserver.dev.local/IntegrationSerive/Services/GlobalService.svc?wsdl
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
public string AuthenticateUser(string RequestingUser, string UserPassword, out bool Output)
{
// Web service methods code here checking the users authentication
}
Here in the following method trying to call
public bool IsValidUser(string UserID, string Password)
{
// Here call web service method to validate user
}