vote up 1 vote down star

I'm using HttpWebRequest to pull down XML, and POST data back to a 'WebService' and getting a 401 on the POST.

When creating the requests I've added Credentials and now tried a credentials cache and setting PreAutenticate to True, still getting the 401! :(

Watching the HTTP traffic on the router I set the get make an unauthenticated GET request.. it hits the 401 and then makes an authenticated GET and is allowed through. When I watch the POST I see it hit the 401... and it doesn't even try an authenticated POST.

This appears only on mobile phones (compact-framework 3.5 and 2.0 on WinMobile 6.1). The same .exe works perfectly on any desktop machines.

What am I missing? Please help!

flag
Maybe you can post the relevant code snippet? Regards, tamberg – tamberg Oct 10 '08 at 14:44

3 Answers

vote up 1 vote down check

Try setting the header manually:

http://devproj20.blogspot.com/2008/02/assigning-basic-authorization-http.html

link|flag
This is what we ended up doing, it's far from ideal, but seems to be the only workable solution. – Alex Mar 4 at 14:06
Yes, this works perfect. Just had to do the same thingy. – Vladimir Dyuzhev Mar 24 at 18:09
vote up 0 vote down

Did you find a way around this?

link|flag
Yes, see the selected answer... FAR from ideal. I'm really disappointed by the CF so far. – Alex Apr 5 at 12:43
vote up 0 vote down

I've just been trying to work around this by using cookies, only to find out cookies are not supported by the .Net compact-framework.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.