Skip to content

Commit 1d3d56f

Browse files
authored
Redirect to web object was not working right when an ajax event is ex… (#445)
* Redirect to web object was not working right when an ajax event is executed and GAM is called because session expired. Issue: 91188 * Redirect to web object was not working right when an ajax event is executed and GAM is called because session expired. Issue: 91188
1 parent 5f46b16 commit 1d3d56f

21 files changed

+75
-19
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ protected String IntegratedSecurityPermissionPrefix( )
104104
{
105105
return "";
106106
}
107+
108+
protected String EncryptURLParameters() {return "NO";};
107109

108110
private String parsePostData(int len, IServletInputStream in)
109111
{

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@ protected String IntegratedSecurityPermissionPrefix( )
191191
{
192192
return "";
193193
}
194+
195+
protected String EncryptURLParameters() {return "NO";};
194196

195197
protected void init(HttpContext context )
196198
{

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ protected String IntegratedSecurityPermissionPrefix( )
2020
{
2121
return "";
2222
}
23+
24+
protected String EncryptURLParameters() {return "NO";};
2325

2426
protected void init(HttpContext context )
2527
{

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ protected String IntegratedSecurityPermissionPrefix( )
4646
{
4747
return "";
4848
}
49+
50+
protected String EncryptURLParameters() {return "NO";};
4951

5052
protected void init(HttpContext context )
5153
{

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ protected String IntegratedSecurityPermissionPrefix( )
2020
{
2121
return "";
2222
}
23+
24+
protected String EncryptURLParameters() {return "NO";};
2325

2426
protected void init(HttpContext context )
2527
{

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ protected String IntegratedSecurityPermissionPrefix( )
5454
{
5555
return "";
5656
}
57+
58+
protected String EncryptURLParameters() {return "NO";};
5759

5860
protected void init(HttpContext context )
5961
{

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ protected String IntegratedSecurityPermissionPrefix( )
2020
{
2121
return "";
2222
}
23-
23+
24+
protected String EncryptURLParameters() {return "NO";};
25+
2426
protected void init(HttpContext context )
2527
{
2628
}

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ protected int IntegratedSecurityLevel( )
122122
protected String IntegratedSecurityPermissionPrefix( )
123123
{
124124
return "";
125-
}
125+
}
126+
127+
protected String EncryptURLParameters() {return "NO";};
126128

127129
private String getExtension(String contentType)
128130
{

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

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,25 @@ protected void doExecute(HttpContext context) throws Exception
2828
}
2929
}
3030
context.sendResponseStatus(404, "Resource not found");
31-
} protected boolean IntegratedSecurityEnabled( )
32-
{
33-
return false;
34-
} protected int IntegratedSecurityLevel( )
35-
{
36-
return 0;
37-
} protected String IntegratedSecurityPermissionPrefix( )
38-
{
39-
return "";
31+
}
32+
33+
protected boolean IntegratedSecurityEnabled( )
34+
{
35+
return false;
36+
}
37+
38+
protected int IntegratedSecurityLevel( )
39+
{
40+
return 0;
4041
}
4142

43+
protected String IntegratedSecurityPermissionPrefix( )
44+
{
45+
return "";
46+
}
47+
48+
protected String EncryptURLParameters() {return "NO";};
49+
4250
protected void init(HttpContext context )
4351
{
4452
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ protected String IntegratedSecurityPermissionPrefix( )
5757
{
5858
return "";
5959
}
60+
61+
protected String EncryptURLParameters() {return "NO";};
6062

6163
protected void init(HttpContext context )
6264
{

0 commit comments

Comments
 (0)