IIS username:password@server.domain.com

IIS username:password@server.domain.com

am 08.06.2007 21:52:56 von murphyadam

How can I set up IIS to accept authentication from a client POSTing to
my website with their username/password in the URL?

Right now I have Annonymous turned off and Digest turned on. The user
account has read/execute privileges for the virtual folder.

So they are sending me this

http://username:password@server.domain.com/url/url.page.aspx

And they are getting this

Error 401.1 Unauthorized

I want them to get this

202 Success

Re: IIS username:password@server.domain.com

am 09.06.2007 17:26:56 von DaveMo

On Jun 8, 12:52 pm, murphya...@sbcglobal.net wrote:
> How can I set up IIS to accept authentication from a client POSTing to
> my website with their username/password in the URL?
>
> Right now I have Annonymous turned off and Digest turned on. The user
> account has read/execute privileges for the virtual folder.
>
> So they are sending me this
>
> http://username:passw...@server.domain.com/url/url.page.aspx
>
> And they are getting this
>
> Error 401.1 Unauthorized
>
> I want them to get this
>
> 202 Success

You should read this: http://support.microsoft.com/kb/834489

You need to enable Basic authentication to make this work.

Also, this sends credentials in plain text over the network, so if you
really want to use Basic (often not the best choice) then you should
use SSL (HTTPS).

HTH,
Dave

Re: IIS username:password@server.domain.com

am 12.06.2007 22:46:24 von murphyadam

I turned on basic authentication but I still get error 401 when trying
to POST.