Skip to content

Commit 3c4618d

Browse files
iroquetagenexusbot
authored andcommitted
Cherry pick branch 'genexuslabs:ProcsSoap' into beta
1 parent ab29045 commit 3c4618d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

java/src/main/java/com/genexus/webpanels/GXWebObjectStub.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)