Ask a Question related to ASP.NET Security, Design and Development.
-
JK #1
ASP.Net Session State Problem with IIS6
We recently installed our web application on Windows 2003 and found that our ASPX pages are not coming up correctly.
We are using sessionstate=StateServer and cookieless=true for Web.config. Applications run perfectly in Windows2000 or XP but in Windows2003 under IIS6 we do not see any of our images and style sheets applied. This is because sessionid is added to the web path and IIS is not able to access it
How can we make this working in Windows2003 under IIS6? Any thoughts are welcome...
Thank
J
FYI: I posted this under iis6 but got no response so I am posting in other groups
JK Guest
-
Session state IIS (Machine Key | Load Balanced Session)
This is a classic ASP group. Try microsoft.public.dotnet.framework.aspnet "Fred" <me@me.com> wrote in message... -
Session State
Hi, I understand that there are 3 modes in which I can configure the SessionStateModule. What I need is an out of process Session State store... -
Using a SQL DB for session state.
I have encountered a problem when I restart a SQL server I lose my session variables for ASP.NET It seems that the Temp table cannot be used... -
Classic ASP session timeout under IIS6.0
I'm having problems getting session timeouts to change programmaticlaly under IIS6.0. This is unchanged code that ran as expected under IIS5.0. ... -
Session state...
Why are you calling a webservice that is within the same app. Shouldn't the web service be on a different server or at least be a different IIS... -
George Ter-Saakov #2
Re: ASP.Net Session State Problem with IIS6
Let say the page URL is
http://www.mysite.com/{sessionid}/page.aspx
and on this page you have <img src="image/my.gif">
The browser will resolve the image name to
http://www.mysite.com/{sessionid}/image/my.gif because you specified
relative path.
So the solution is to specify absolute path <img src="/image/my.gif">
I hope you got my drift.
PS: I am sure that it worked on Win2000 and XP only because when you moved
to 2003 someone has replace absolute path with relative path. It would not
work anywere if you did not specify absolute path with cookieless=true.
George.
"JK" <anonymous@discussions.microsoft.com> wrote in message
news:363F2CC4-BBFA-4926-95DA-B3DB151CC887@microsoft.com...our ASPX pages are not coming up correctly.> We recently installed our web application on Windows 2003 and found thatApplications run perfectly in Windows2000 or XP but in Windows2003 under>
> We are using sessionstate=StateServer and cookieless=true for Web.config.
IIS6 we do not see any of our images and style sheets applied. This is
because sessionid is added to the web path and IIS is not able to access it.welcome....>
> How can we make this working in Windows2003 under IIS6? Any thoughts aregroups.>
> Thanks
> JK
>
> FYI: I posted this under iis6 but got no response so I am posting in other>
George Ter-Saakov Guest
-
bruce barker #3
Re: ASP.Net Session State Problem with IIS6
most likely on the old servers you mapped *.gif to asp.net so the the cookie
filter would handle the munging. check to see if the application mapping are
the same on the old and new servers
-- bruce (sqlwork.com)
"JK" <anonymous@discussions.microsoft.com> wrote in message
news:363F2CC4-BBFA-4926-95DA-B3DB151CC887@microsoft.com...our ASPX pages are not coming up correctly.> We recently installed our web application on Windows 2003 and found thatApplications run perfectly in Windows2000 or XP but in Windows2003 under>
> We are using sessionstate=StateServer and cookieless=true for Web.config.
IIS6 we do not see any of our images and style sheets applied. This is
because sessionid is added to the web path and IIS is not able to access it.welcome....>
> How can we make this working in Windows2003 under IIS6? Any thoughts aregroups.>
> Thanks
> JK
>
> FYI: I posted this under iis6 but got no response so I am posting in other>
bruce barker Guest



Reply With Quote

