Skip to content

Commit 4a2f7ae

Browse files
authored
Do not send ClientId Cookie for SOAP Requests (#313)
1 parent 8b98bcb commit 4a2f7ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/main/java/com/genexus/internet/HttpContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ private void sendReferer()
874874

875875
public void initClientId()
876876
{
877-
if (getWebSession() != null && this.getClientId().equals(""))
877+
if (!isSoapRequest() && getWebSession() != null && this.getClientId().equals(""))
878878
{
879879
String _clientId = this.getCookie(CLIENT_ID_HEADER);
880880
if (_clientId == null || _clientId.equals(""))

0 commit comments

Comments
 (0)