In my web application , for putting a cap on maximum session I m using max-in-memory-sessions attribute , which is configured in my application's weblogic.xml file.
<wls:session-descriptor>
<wls:max-in-memory-sessions>100</wls:max-in-memory-sessions>
</wls:session-descriptor>
After these session, server will throw weblogic.servlet.SessionCreationException , which I m catching in web.xml file of my application.
<error-page>
<exception-type>
weblogic.servlet.SessionCreationException
</exception-type>
<location>/maxConcurrency.html</location>
</error-page>
Just want to know , what would be the specific HTTP Error code for this exception , as far as I know , its a run time exception . Any help would be appreciated . Thanks