D
DJT
I have 2 applications that are configured to work with ASP.NET (ie.
app1.domain.com and app2.domain.com). App1 has been working (with
infrequent aspnet_wp recycling) for quite awhile. Recently, I added app2
and now neither works properly. Whichever application is started first, the
other application cannot be started. The error states that it cannot find
the application or I'll get a Server Application Unavailable error. I must
restart IIS to allow this second application to be started. Once the second
app has been started, you can no longer navigate within the first without
one of the preceding error messages appearing. I can switch between making
App1 or App2 work all the time by stopping the other site in IIS. It is as
if they are trying to overwrite the session and/or authentication
information.
The web.config authentication section is:
APP1:
<authentication mode="Forms">
<forms name="App1" loginUrl="MainLogin.aspx" timeout="20"/>
</authentication>
APP2:
<authentication mode="Forms">
<forms name="App2" loginUrl="Login.aspx" timeout="20"/>
</authentication>
Both applications use Out Proc for sessions.
<sessionState mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424" cookieless="false"
timeout="20"/>
Any ideas would be greatly appreciated.
DJT
app1.domain.com and app2.domain.com). App1 has been working (with
infrequent aspnet_wp recycling) for quite awhile. Recently, I added app2
and now neither works properly. Whichever application is started first, the
other application cannot be started. The error states that it cannot find
the application or I'll get a Server Application Unavailable error. I must
restart IIS to allow this second application to be started. Once the second
app has been started, you can no longer navigate within the first without
one of the preceding error messages appearing. I can switch between making
App1 or App2 work all the time by stopping the other site in IIS. It is as
if they are trying to overwrite the session and/or authentication
information.
The web.config authentication section is:
APP1:
<authentication mode="Forms">
<forms name="App1" loginUrl="MainLogin.aspx" timeout="20"/>
</authentication>
APP2:
<authentication mode="Forms">
<forms name="App2" loginUrl="Login.aspx" timeout="20"/>
</authentication>
Both applications use Out Proc for sessions.
<sessionState mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424" cookieless="false"
timeout="20"/>
Any ideas would be greatly appreciated.
DJT