Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
Sounds like your test user is unauthorized. Perhaps you should add that user to the list of authorized users, or use an authorized user. – Chuck Savage Jul 6 '12 at 17:37
Well the user is added to the Magento server and has all the due roles necesary. – CarlosT Jul 6 '12 at 17:49
This may seem silly, but which section of the Magento admin did you use to setup the user? – Alan Storm Jul 6 '12 at 18:19
I'm creating them from System > Web Services > and then roles and users. – CarlosT Jul 6 '12 at 19:28
Ah, OK. I'm constantly setting up regular admin users when I mean to setup web users, but it looks like you're doing it from the right place. – Alan Storm Jul 6 '12 at 19:44
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.