473,761 Members | 10,057 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 4400
<cd*******@hotm ail.com> wrote in message
news:11******** **************@ g47g2000cwa.goo glegroups.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*******@hotm ail.com> wrote in message
news:11******** **************@ g47g2000cwa.goo glegroups.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*******@hotma il.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*******@hotm ail.com> wrote in message
news:11******** **************@ g47g2000cwa.goo glegroups.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*******@hotm ail.com> wrote in message
news:11******** **************@ g47g2000cwa.goo glegroups.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*******@hotma il.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*******@hotm ail.com> wrote in message
: > > news:11******** **************@ g47g2000cwa.goo glegroups.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*******@hotm ail.com> wrote in message
news:11******** **************@ g47g2000cwa.goo glegroups.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*******@hotma il.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*******@hotm ail.com> wrote in message
> news:11******** **************@ g47g2000cwa.goo glegroups.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
1504
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 run in a particular NT user's identity, let's call that identity "web_user". The problem is that when it opens a connection to SQL server using integrated security, web_user's credentials don't get passed.
7
2618
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 same time so that they don't have to login again. Specifically, I have two webservers in the same domain. When I have a user go to Webserver A (which uses basic authentication) I programmatically create either a user credential or impersonate...
0
1077
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 some using Win2K, all of them having IE6 with the latest updates and all of them having 'User Authentication' set to 'Prompt for user name and password' on purpose. WinXP:
3
6123
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 to login again. Any help?
4
2020
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 (.aspx) that will collect some data from the user, call a web service to get additional data, and then merge and format the data back to the user's browser. But I want the web service to authenticate with the user's credentials, not the credentials of...
1
1202
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 webform1, and it still does not let me run it because it says integrated security is not turned on in IIS. Where is it hiding this little tidbit that the asp.net project thinks it needs integrated security? I've looked in the web.config.
2
2153
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
3202
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 Server. Problem: -------------- I am trying to create an asp.net website with integrated windows authentication to access SQL databases. IIS resides on WinXP and SQL Server on Win2000 SRV. Both are in the same NT Domain. IIS and SQL Server...
3
6766
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 authentication (formerly known as NTLM). I construct the user credentials like this: theUserCredential = New NetworkCredential(username, userpassword,
0
9521
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9333
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10107
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
6599
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5214
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5361
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3863
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3442
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.