Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Security > turning cookieless mode false for client browsers that do not accept cookies

Reply
Thread Tools

turning cookieless mode false for client browsers that do not accept cookies

 
 
rk325
Guest
Posts: n/a
 
      04-28-2005
I have a question about cookies & browser permissions and turning off
cookies when creating a web site (cookieless mode in web.config).

I have a web site that of course uses Session variables.
But we decided to turn off the cookieless mode because the client
specifically said her browser did not allow cookies. Anyway, when
searching about it, I found out that by setting cookieless = true the
session cookie is embedded into the URL sent back & forth to/from the
client so the server can identify this client. All these happen after
authentication, when the user has already entered a username and a
password and is redirected to the appropriate password protected web
pages.

A new client is signing in and he claims he cannot logging to the web
site. He enters his credentials but all she gets back is the general
search page (not the protected one with more capabilities). I know it
must be something with his browser configuration, because somehow the
security in that office has been setup to not allow anyone do anything
on the internet. I figure, cookies must not be allowed. But if our web
site uses the cookieless mode, then why can't he logging at all?

I can login from my desk using this client's credentials and can
search fine. Since I monitor the activities of this client, all my
searches under this credentials get recorded.

Is it anything more to the cookieless mode that does use cookies or
some type of security in the client's browser that must be set free?

I guess waht I would like to know exactly is what are the requirements
for any internet browser to run ASP.NET applications that require
forms-based authentication.

Your comments/help/links about this will be very much appreciated.

 
Reply With Quote
 
 
 
 
Robbe Morris [C# MVP]
Guest
Posts: n/a
 
      04-28-2005

I suspect the most likely issue is that your user has their network
traffic run through a network proxy server farm. This essentially
makes all subsequent http requests to your farm look like new sessions
to your server(s).

If you ask the user whether they can access their online banking
account or some other site that requires strict authentication and
login credentials and they can't, then this is probably it.

We run into this problem a lot with our business to business
visitors. The only to get around it in your situation is to
have them tell their administrators to run their traffic through
a specific server on the network proxy server farm.

Their proxy server farm is specifically designed to prevent
the user from doing what you need them to do.

--
2005 Microsoft MVP C#
Robbe Morris
http://www.robbemorris.com
http://www.masterado.net/home/listings.aspx



"rk325" <> wrote in message
news: ups.com...
>I have a question about cookies & browser permissions and turning off
> cookies when creating a web site (cookieless mode in web.config).
>
> I have a web site that of course uses Session variables.
> But we decided to turn off the cookieless mode because the client
> specifically said her browser did not allow cookies. Anyway, when
> searching about it, I found out that by setting cookieless = true the
> session cookie is embedded into the URL sent back & forth to/from the
> client so the server can identify this client. All these happen after
> authentication, when the user has already entered a username and a
> password and is redirected to the appropriate password protected web
> pages.
>
> A new client is signing in and he claims he cannot logging to the web
> site. He enters his credentials but all she gets back is the general
> search page (not the protected one with more capabilities). I know it
> must be something with his browser configuration, because somehow the
> security in that office has been setup to not allow anyone do anything
> on the internet. I figure, cookies must not be allowed. But if our web
> site uses the cookieless mode, then why can't he logging at all?
>
> I can login from my desk using this client's credentials and can
> search fine. Since I monitor the activities of this client, all my
> searches under this credentials get recorded.
>
> Is it anything more to the cookieless mode that does use cookies or
> some type of security in the client's browser that must be set free?
>
> I guess waht I would like to know exactly is what are the requirements
> for any internet browser to run ASP.NET applications that require
> forms-based authentication.
>
> Your comments/help/links about this will be very much appreciated.
>



 
Reply With Quote
 
 
 
 
rk325
Guest
Posts: n/a
 
      04-28-2005
Thanks for your reply Robbe.
I'm not sure I understand very well your explanation, but I was just
informed by this client that they were able to successfully access the
web site from another computer in his office. I knew that becasue I saw
some activity today under these credentials. Does this tell you that
they have their network traffic run through a network proxy server
farm?

Or is there anything else in the browser's configuration of this
computer that prevents it to login to the web site?

What do you mean above with "run their traffic through a specific
server on the network proxy server farm" ?

What I really need is to get more knowledge about proxy server farms!

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
problem in running a basic code in python 3.3.0 that includes HTML file Satabdi Mukherjee Python 1 04-04-2013 07:48 PM
sessionState cookieless and forms cookieless ravisingh11@gmail.com ASP .Net 2 05-09-2006 11:26 PM
False positive, false intrusion, false alarm Nick Computer Security 3 04-26-2006 07:40 PM
turning cookieless mode false for client browsers that do not accept cookies rk325 ASP .Net 2 04-28-2005 06:40 PM
Session contents lost despite Session.Timeout = 3000; and <sessionState mode="InProc" cookieless="false" timeout="300"> Carpe Diem ASP .Net 3 02-23-2004 07:10 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57