L
lambelly
I am attempting to consume the web service located at:
www.cmsmobilesuite.com:8080/axis2/services/CmsApi?wsdl
I have added this as a web reference to my project and am able to
access it. However, when I try to call the Authenticate method using
the following code:
CmsApi cmsService = new CmsApi();
string response = cmsService.Authenticate(userName.Text,
passWord.Text);
result.Text = response;
I get an error stating that no overload for method 'Authenticate'
takes two arguments. I am told that the Authenticate method is
supposed to be sent the username and password as two strings, so this
doesn't make much sense to me.
www.cmsmobilesuite.com:8080/axis2/services/CmsApi?wsdl
I have added this as a web reference to my project and am able to
access it. However, when I try to call the Authenticate method using
the following code:
CmsApi cmsService = new CmsApi();
string response = cmsService.Authenticate(userName.Text,
passWord.Text);
result.Text = response;
I get an error stating that no overload for method 'Authenticate'
takes two arguments. I am told that the Authenticate method is
supposed to be sent the username and password as two strings, so this
doesn't make much sense to me.