Subversion Repository Public Repository

litesoft

Diff Revisions 954 vs 955 for /trunk/Java/GWT/Server/src/org/litesoft/GWT/server/ServletSessionHelper.java

Diff revisions: vs.
  @@ -10,12 +10,12 @@
10 10 public class ServletSessionHelper {
11 11 public static ContextID callInit( HttpSession pHttpSession ) {
12 12 ContextID zContextID = getContextID( pHttpSession );
13 - new ServerContext( zContextID, new OurServerSession( pHttpSession ) ).set();
13 + new RequestContext( zContextID, new OurServerSession( pHttpSession ) ).set();
14 14 return zContextID;
15 15 }
16 16
17 17 public static void callFini() {
18 - ServerContext.clear();
18 + RequestContext.clear();
19 19 }
20 20
21 21 public static void chkInitialized() {