We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the Bug
We received a support request from a client: https://jira.camunda.com/browse/SUPPORT-24612?focusedCommentId=382201&atlLinkOrigin=c2xhY2staW50ZWdyYXRpb258Y29tbWVudA%3D%3D
The REST Connector by default decodes incoming URLs to properly encoded them again. This removed already encoded elements of the incoming URL.
Example: "http://your.test.server/test%2Ftest" --> "http://your.test.server/test/test"
The server requires the last path segment to be encoded as "test%2Ftest" is the name of the resource.
Steps to Reproduce
One case this affects our users is the GitLab Connector.
Expected Behavior
We should provided an option (hidden field) to deactivate the automatic URL decoding. This might have worked before as we used another HTTP Client: https://github.com/googleapis/google-http-java-client/blob/main/google-http-client/src/main/java/com/google/api/client/util/escape/CharEscapers.java
Update the Gitlab Connector accordingly to avoid URL encoding there.
Environment
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the Bug
We received a support request from a client: https://jira.camunda.com/browse/SUPPORT-24612?focusedCommentId=382201&atlLinkOrigin=c2xhY2staW50ZWdyYXRpb258Y29tbWVudA%3D%3D
The REST Connector by default decodes incoming URLs to properly encoded them again. This removed already encoded elements of the incoming URL.
Example: "http://your.test.server/test%2Ftest" --> "http://your.test.server/test/test"
The server requires the last path segment to be encoded as "test%2Ftest" is the name of the resource.
Steps to Reproduce
One case this affects our users is the GitLab Connector.
Expected Behavior
We should provided an option (hidden field) to deactivate the automatic URL decoding. This might have worked before as we used another HTTP Client: https://github.com/googleapis/google-http-java-client/blob/main/google-http-client/src/main/java/com/google/api/client/util/escape/CharEscapers.java
Update the Gitlab Connector accordingly to avoid URL encoding there.
Environment
The text was updated successfully, but these errors were encountered: