From a reverse proxy i get the username and password as parameters. Since there are more machines involved etc I need to sign in the user as a windows/Kerberos user on the IIS to have the token delegatable to the database and webservices.
I found some samples with form based security against active directory (http://msdn.microsoft.com/en-us/library/ms180890(v=vs.80).aspx) but it seems like it doesn't work as i need
it. I need something like standard authentication but with passing username and password as parameters
None
0 Points
1 Post
Sign in with user and password fom pst parameters
Jul 18, 2014 09:33 AM|compunited|LINK
Hi
From a reverse proxy i get the username and password as parameters. Since there are more machines involved etc I need to sign in the user as a windows/Kerberos user on the IIS to have the token delegatable to the database and webservices.
I found some samples with form based security against active directory (http://msdn.microsoft.com/en-us/library/ms180890(v=vs.80).aspx) but it seems like it doesn't work as i need it. I need something like standard authentication but with passing username and password as parameters
Any ideas?
All-Star
27134 Points
2676 Posts
Re: Sign in with user and password fom pst parameters
Jul 21, 2014 04:06 AM|Shawn - MSFT|LINK
Hi,
To login with a single URL, avoiding to have to type username and password, you can use this link:
http://www.server.com/desknow/home.do?Action=Login&username=joe&password=mypassword&encryption=plain
where www.server.com is the address of your server, joe is your username and mypassword is your password.
For PocketPC: http://www.server.com/desknow/home.do?Action=Login&username=joe&password=mypassword&encryption=plain&web_layout=pocket
For WAP: http://www.server.com/desknow/wlogin?u=joe&p=mypassword
Besides, you could refer to the following links for more information:
http://support.microsoft.com/kb/834489
https://www.drupal.org/node/56760
Regards