I'm trying to connect to magentos web services using c#. I created a role and then created a user with that role. After that, I created the web service references and when trying to connect to the web services, I get the next error:
WebException was unhandled
HTTP 401: Unauthorized.
What could it be? here's the c# code im using, that displays the result of the login in a label:
MagentoService ms = new MagentoService();
String mlogin = ms.login("testUser", "xxxxxx");
label1.Text=mlogin;
Thanks in advance!