File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
java/src/main/java/com/genexus/webpanels Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ public abstract class GXWebObjectStub extends HttpServlet
3030
3131 protected ModelContext context ;
3232 protected int remoteHandle = -1 ;
33+ protected transient LocalUtil localUtil ;
3334
3435 protected static final int SECURITY_GXOBJECT = 3 ;
3536 protected static final int SECURITY_HIGH = 2 ;
@@ -44,7 +45,8 @@ public GXWebObjectStub()
4445 public GXWebObjectStub (int remoteHandle , ModelContext context )
4546 {
4647 this .remoteHandle = remoteHandle ;
47- this .context = context ;
48+ this .context = context ;
49+ localUtil = Application .getConnectionManager ().createUserInformation (Namespace .getNamespace (context .getNAME_SPACE ())).getLocalUtil ();
4850 }
4951
5052 private void dumpRequestInfo (HttpContext httpContext )
You can’t perform that action at this time.
0 commit comments