Skip to content

Commit 7d05cae

Browse files
iroquetagenexusbot
authored andcommitted
Cherry pick branch 'genexuslabs:ProcsSoap' into beta
1 parent 5feae1b commit 7d05cae

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

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

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
public abstract class GXWebProcedure extends GXWebObjectBase
2222
{
2323
private static final ILogger logger = LogManager.getLogger(GXWebProcedure.class);
24+
25+
public static final int IN_NEW_UTL = -2;
2426

2527
protected abstract void initialize();
2628

@@ -47,11 +49,19 @@ public GXWebProcedure(WebServiceContext wsContext)
4749
logger.error("Could not initialize Web Service", e);
4850
}
4951
}
50-
52+
5153
public GXWebProcedure(int remoteHandle , ModelContext context)
5254
{
55+
this(false, remoteHandle ,context);
56+
}
57+
58+
public GXWebProcedure(boolean inNewUTL, int remoteHandle , ModelContext context) {
5359
super(remoteHandle ,context);
54-
}
60+
61+
if(inNewUTL) {
62+
this.remoteHandle = IN_NEW_UTL;
63+
}
64+
}
5565

5666
protected void initState(ModelContext context, UserInformation ui)
5767
{

0 commit comments

Comments
 (0)