Translate

Thursday 8 September 2011

Remedy Webservice Error

I was getting the error while trying to submit data via remedy webservice. thought of bloging my finding as it may help some one
Error
"A user name must be supplied in the control record"

Resoulution
credentials were not passing before calling the webservice.
mywebservice.AuthenticationInfo auth = null;
auth = new mywebservice.AuthenticationInfo();
auth.userName = "id@myid.com";
auth.password = "mypassword";

No comments:

Post a Comment