Skip to content

Commit f4141da

Browse files
committed
I was not compiling a proc with native soap with SOAP call protocol and REST Protocol set to True.
In that case it was generating the inerface rest but not the native soap interface Issue: 92182
1 parent 735af2e commit f4141da

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,25 @@ public abstract class GXWebObjectStub extends HttpServlet
2828
protected abstract String IntegratedSecurityPermissionPrefix();
2929
protected abstract String EncryptURLParameters();
3030

31+
protected ModelContext context;
32+
protected int remoteHandle = -1;
33+
3134
protected static final int SECURITY_GXOBJECT = 3;
3235
protected static final int SECURITY_HIGH = 2;
3336
protected static final int SECURITY_LOW = 1;
3437

3538
private static final int HTTP_RESPONSE_BUFFER_SIZE = 131072;
3639

40+
public GXWebObjectStub()
41+
{
42+
}
43+
44+
public GXWebObjectStub(int remoteHandle , ModelContext context)
45+
{
46+
this.remoteHandle = remoteHandle;
47+
this.context = context;
48+
}
49+
3750
private void dumpRequestInfo(HttpContext httpContext)
3851
{
3952
IHttpServletRequest request = httpContext.getRequest();

0 commit comments

Comments
 (0)