472,356 Members | 2,079 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,356 software developers and data experts.

Passing User Credentials to site running under Integrated Security

Our intranet is running under windows integrated security. We have
domain users that want to access our intranet site via ssl vpn. SSL
VPN can not authenticate against services that run under windows
integrated security. In order to get around this issue it seems that we
would need to create a login page on a separate site that runs under
anonymous security. Then pass the users credentials to the site
running under integrated security. Has anyone had this issue or done
anything like this before? Is it even possible to pass user credentils
to a site running under integrated security?

Nov 19 '05 #1
5 4272
<cd*******@hotmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
Our intranet is running under windows integrated security. We have
domain users that want to access our intranet site via ssl vpn. SSL
VPN can not authenticate against services that run under windows
integrated security.
That's not necessarily true. Have you actually tested this from a VPN
client?

In order to get around this issue it seems that we
would need to create a login page on a separate site that runs under
anonymous security. Then pass the users credentials to the site
running under integrated security.
If Windows authentication really doesn't work, perhaps basic authentication
might? This would allow you to support VPN clients with far less changes to
your current application.

Has anyone had this issue or done
anything like this before? Is it even possible to pass user credentils
to a site running under integrated security?


Yes, but without any problems. Are you actually seeing a specific problem?
If so, what is it? If not, why not test authentication over VPN against a
simple sample application?
Nov 19 '05 #2
Using a Cisco VPN client, everything works fine. We are using a thrid
party product that does SSL VPN. VPN via http/ssl. This is where we
run into problems. because the browser client cannot pass user
credentials to our iis server which is set to run under integrated
security.
Nicole Calinoiu wrote:
<cd*******@hotmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
Our intranet is running under windows integrated security. We have
domain users that want to access our intranet site via ssl vpn. SSL
VPN can not authenticate against services that run under windows
integrated security.


That's not necessarily true. Have you actually tested this from a VPN
client?

In order to get around this issue it seems that we
would need to create a login page on a separate site that runs under
anonymous security. Then pass the users credentials to the site
running under integrated security.


If Windows authentication really doesn't work, perhaps basic authentication
might? This would allow you to support VPN clients with far less changes to
your current application.

Has anyone had this issue or done
anything like this before? Is it even possible to pass user credentils
to a site running under integrated security?


Yes, but without any problems. Are you actually seeing a specific problem?
If so, what is it? If not, why not test authentication over VPN against a
simple sample application?


Nov 19 '05 #3
We are recieving the following error "HTTP Error 400 - Request is badly
formed." I believe we are receiving the error because the SSL VPN
client is attempting to send a Kerberos ticket and our IIS server is
expecting NTLM.

cd*******@hotmail.com wrote:
Using a Cisco VPN client, everything works fine. We are using a thrid
party product that does SSL VPN. VPN via http/ssl. This is where we
run into problems. because the browser client cannot pass user
credentials to our iis server which is set to run under integrated
security.
Nicole Calinoiu wrote:
<cd*******@hotmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
Our intranet is running under windows integrated security. We have
domain users that want to access our intranet site via ssl vpn. SSL
VPN can not authenticate against services that run under windows
integrated security.


That's not necessarily true. Have you actually tested this from a VPN
client?

In order to get around this issue it seems that we
would need to create a login page on a separate site that runs under
anonymous security. Then pass the users credentials to the site
running under integrated security.


If Windows authentication really doesn't work, perhaps basic authentication
might? This would allow you to support VPN clients with far less changes to
your current application.

Has anyone had this issue or done
anything like this before? Is it even possible to pass user credentils
to a site running under integrated security?


Yes, but without any problems. Are you actually seeing a specific problem?
If so, what is it? If not, why not test authentication over VPN against a
simple sample application?


Nov 19 '05 #4
Is there anything in the httperr.log file that might give you a clue as to
why IIS thinks the request is badly formed?

Cheers
Ken

--
IIS Blog: www.adopenstatic.com/cs/blogs/ken/
Web: www.adopenstatic.com
<cd*******@hotmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
: We are recieving the following error "HTTP Error 400 - Request is badly
: formed." I believe we are receiving the error because the SSL VPN
: client is attempting to send a Kerberos ticket and our IIS server is
: expecting NTLM.
:
: cd*******@hotmail.com wrote:
: > Using a Cisco VPN client, everything works fine. We are using a thrid
: > party product that does SSL VPN. VPN via http/ssl. This is where we
: > run into problems. because the browser client cannot pass user
: > credentials to our iis server which is set to run under integrated
: > security.
: >
: >
: > Nicole Calinoiu wrote:
: > > <cd*******@hotmail.com> wrote in message
: > > news:11**********************@g47g2000cwa.googlegr oups.com...
: > > > Our intranet is running under windows integrated security. We have
: > > > domain users that want to access our intranet site via ssl vpn. SSL
: > > > VPN can not authenticate against services that run under windows
: > > > integrated security.
: > >
: > > That's not necessarily true. Have you actually tested this from a VPN
: > > client?
: > >
: > >
: > > > In order to get around this issue it seems that we
: > > > would need to create a login page on a separate site that runs under
: > > > anonymous security. Then pass the users credentials to the site
: > > > running under integrated security.
: > >
: > > If Windows authentication really doesn't work, perhaps basic
authentication
: > > might? This would allow you to support VPN clients with far less
changes to
: > > your current application.
: > >
: > >
: > > > Has anyone had this issue or done
: > > > anything like this before? Is it even possible to pass user
credentils
: > > > to a site running under integrated security?
: > >
: > > Yes, but without any problems. Are you actually seeing a specific
problem?
: > > If so, what is it? If not, why not test authentication over VPN
against a
: > > simple sample application?
:
Nov 19 '05 #5
This sort of thing is not a general SSL VPN problem, so it might be a good
idea to get in touch with the VPN vendor to see if this is a known issue
with their product and if there might be some configuration changes you
could apply to avoid it. Failing that, you might want to try allowing basic
authentication on the app (after making sure the app requires https use).
<cd*******@hotmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
We are recieving the following error "HTTP Error 400 - Request is badly
formed." I believe we are receiving the error because the SSL VPN
client is attempting to send a Kerberos ticket and our IIS server is
expecting NTLM.

cd*******@hotmail.com wrote:
Using a Cisco VPN client, everything works fine. We are using a thrid
party product that does SSL VPN. VPN via http/ssl. This is where we
run into problems. because the browser client cannot pass user
credentials to our iis server which is set to run under integrated
security.
Nicole Calinoiu wrote:
> <cd*******@hotmail.com> wrote in message
> news:11**********************@g47g2000cwa.googlegr oups.com...
> > Our intranet is running under windows integrated security. We have
> > domain users that want to access our intranet site via ssl vpn. SSL
> > VPN can not authenticate against services that run under windows
> > integrated security.
>
> That's not necessarily true. Have you actually tested this from a VPN
> client?
>
>
> > In order to get around this issue it seems that we
> > would need to create a login page on a separate site that runs under
> > anonymous security. Then pass the users credentials to the site
> > running under integrated security.
>
> If Windows authentication really doesn't work, perhaps basic
> authentication
> might? This would allow you to support VPN clients with far less
> changes to
> your current application.
>
>
> > Has anyone had this issue or done
> > anything like this before? Is it even possible to pass user
> > credentils
> > to a site running under integrated security?
>
> Yes, but without any problems. Are you actually seeing a specific
> problem?
> If so, what is it? If not, why not test authentication over VPN
> against a
> simple sample application?

Nov 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Guy Incognito | last post by:
Hello, I'm having a problem adding integrated security to an asp.net web application. IIS runs on server A and SQL server runs on server B. The folder containing the web application is set to...
7
by: Wade Wegner | last post by:
Hello, I have been desperately trying to programmatically authenticate a windows user, create their credentials, and then redirect them to a different server while passing the credentials at the...
0
by: Alexander Stojakovic | last post by:
Werte Kollegen! I have a ASP.NET page authenticating via Integrated Security. For some reason the behaviour on the client is differing depending on the OS. I have some clients using WinXP and...
3
by: Patrick.O.Ige | last post by:
Hi folks, How can i pass credentials to windows integrated authentication. I want to use my credentials from windows authentication and pass it on to different asp.net and asp pages without having...
4
by: Dan Higman | last post by:
I'm sure this is easy and I'll be embarrassed when I see the answer, but I just can't figure this one out. Using .Net/ASP 1.1 on a server using integrated authentication-- I have a web page...
1
by: et | last post by:
I created a web site using integrated security, and now I want it taken off. I have taken it off of everything in IIS, I have even re-created the project, brand new, nothing is in the project but...
2
by: Baheri | last post by:
In .Net 2.0 is there a standard way of passing user credential to authenticate a user using Web Services?
0
by: kkos | last post by:
I noticed the following issue posted as a double-hop issue in many discussion boards but found no answers that explain how to pass the second hop with windows auth from IIS ASPX page to remote SQL...
3
by: antonyliu2002 | last post by:
I have a website (call it WinAuthWeb) that uses Integrated Windows Authentication. In my ASP.NET web application, I collect user name, password and domain info and pass them to WinAuthWeb for...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
1
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. header("Location:".$urlback); Is this the right layout the...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it so the python app could use a http request to get...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
0
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.