Yes, it is an application
And sessionstate is enabled.
I resorted to throwing an exception in the session_state
nothing happens on production server
In fact we have two production servers that do exactly the same thing
but not my development server
> And the other post said ? Have you checked in the IIS "Home directory"
> tab, "Application settings" section that the application is created (that
[quoted text clipped - 20 lines]
>>
>> I have seen another post about this, but no resolution was found.
George Ter-Saakov - 12 Feb 2008 21:39 GMT
How do you know it's not firing?
May be exception is thrown in the Session_Start code....
George.
> Yes, it is an application
> And sessionstate is enabled.
[quoted text clipped - 28 lines]
>>>
>>> I have seen another post about this, but no resolution was found.
Patrice - 13 Feb 2008 09:04 GMT
For now you are just testing that you don't see an exception that is raised
in this event.
What if you set a session variable in this event as well as in the page you
are hitting (another one plus display the one you set in session_start).
Also do the same in other events (for example create an application variable
in session_end, another one in Applicatino_Start etc... and use
session.abandon to trigger this event).
This is to check that :
- session variables are working fine (as well as application variables)
- wether other events (and perhaps session_end) are working
From there we should be able to check sucessively if this is a problem with
sessions, with the global.asax not being taken into account or just with
this event.
--
Patrice
> Yes, it is an application
> And sessionstate is enabled.
[quoted text clipped - 28 lines]
>>>
>>> I have seen another post about this, but no resolution was found.
greg - 13 Feb 2008 16:56 GMT
I set a session variable in the session_start
If the form_load of the default page I send an email if I find the session
variable
and also send one if I don't get it
I copied the web site to another production server and it works on that one
So I have two webservers where the session_start is not firing
My development server still works
> For now you are just testing that you don't see an exception that is
> raised in this event.
[quoted text clipped - 50 lines]
>>>>
>>>> I have seen another post about this, but no resolution was found.