[Mono-list] xsp in Production --> Problem with Threads in Session

e26659@uajms.edu.bo e26659@uajms.edu.bo
Sat, 5 Jul 2003 12:55:10 -0400 (BOT)


Hello:
We proved the Session with server of xsp.
We tested:
   Recompile the SessionInProcHandler
   With a counter in Line 114

   We did a Page aspx when read a value saved in Session for example.

Page1.aspx
<html>
...
<script runat="server">
    void enviar(object o, EventArgs e) {
      Session["save"]="date";
      Response.Redirect("pag2.aspx");
    }
</script>
<body>
     <form runat="server">
        <asp:Button Text="send" Onclick="enviar" />
     </form>
</body>
</html>

Page2.aspx
........
<html>
<head>
<meta http-equiv="refresh" content="5">
<script runat="server">
   Page_Load(object o, EventArgs e){
      string xdate = (string)Session["save"];
      Response.Write(xdate);
   }
</script>
</head>
</html>

Good We Result:

    If many client enter in order of one in one the posibility that
session down is soso null.

    When many client enter at time equals the session down