Our Server (Win Server 2008 R2 Standard, IIS7) has a Web Application (Lets say "APPLN") on IIS7:
APPLN has following properties:
- Code base = Folder1
- Application Pool = Pool1
- .Net FrameworkCode = 4.0
It is giving us a Session error using CHROME browser as the pages do not retain session after "Response.Redirect()".
Now if I create another application on IIS7 (Lets say "APPLN-2") with following properties :
- Code base = Folder1
- Application Pool = Pool1
- .Net FrameworkCode = 4.0
(Same as application before)
Now the second application works perfectly fine without any Session errors.
We tried: 1. Deleting and recreating the First application "APPLN"
2. Restarted IIS, Windows Server
3. Changing folder locations for the Code
But nothing seems to work for the First application "APPLN" !!!!
Any ideas guys?
Web ApplicationsMicrosoft IIS Web Server.NET Programming
Last Comment
Arikkan
8/22/2022 - Mon
Dave Baldwin
There is obviously some small difference. And I believe you may have the sequence wrong.
Should be...
1. Deleting the First application "APPLN"
2. Restarted IIS, Windows Server
3. Recreate the First application "APPLN"
(4 then restart again?)
Arikkan
ASKER
That is what we did
Dave Baldwin
Ok... then did it work after you recreated it? What if you recreate it as 'APPLN1'? Is there a possibility the name 'APPLN' is causing a problem?
If we recreate it as any other name than 'APPLN', it is working (APPLN1, APPLN-1, APPLN2.....)
We deleted all the temporary files on the server also but it did not help.
No idea why that name is causing issue.
But we don't want to change that name.
So we are in a fix on how to resolve this issue.
Dave Baldwin
But we don't want to change that name.
Well, I'd rename it and be done with it by now. Why is it that important?
If there is something in the IIS or Chrome code that is triggered by that name, you may not be able to 'solve it' because it may be totally out of your control. For a test, you might put back the .NET 3.5 version to see what happens.
Should be...
1. Deleting the First application "APPLN"
2. Restarted IIS, Windows Server
3. Recreate the First application "APPLN"
(4 then restart again?)