// in path suffix is stripped

I created a proxy to one of our SaaS vendors. They have a URL that looks like this:

client/v4/content.svc/GetPublicationMappingsFunctionImport(URI='https://mydomain.com/index.html')

The '//' (double slash) in the URI is being converted to '/' (single slash)

e.g.

client/v4/content.svc/GetPublicationMappingsFunctionImport(URI='https:/mydomain.com/index.html')

If I change it to '//' in javascript it is ignored.

Any ideas how to address this?

0 1 89
1 REPLY 1

Not applicable

just put this in a double quote and assign to a variable in javascript.

That works in my case.