I am using a URL in integration with Double Quotes. It is giving error: Illegal character in path.
The same URL is working in POSTMAN and I am successfully able to hit the system with 200 status code.
Is it not possible to use " in APPIAN? If it is possible, then how to handle it?
Discussion posts and replies are publicly visible
Can you share your code?
You can obscure any sensitive text with TESTTEST.
I can share the URL by replacing few characters with exact number of *. I will not be able to share Authentication details. I know its a limited info. I appreciate your help, Thank you
Hope it will help.
Failed to connect to http://10.***.***.***:8080/api/running/devices/device/***-er11-***-prodlab-re0/config/*****:configuration/interfaces/interface/"xe-2/0/1"/unit/***
Illegal character in path at index 128: http://10.***.***.***:8080/api/running/devices/device/***-er11-***-prodlab-re0/config/*****:configuration/interfaces/interface/"xe-2/0/1"/unit/***
Next Steps
Below are the headers:
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36
Accept : */*
Accept-Encoding : gzip, deflate, sdch
Accept-Language: en-US,en;q=0.8
Content-Type: application/vnd.****.data+xml
Content-Encoding: identity
did you try replacing your double quotes with fn!char(34)?
so change this:
.../interface/"xe-2/0/1"/unit/...
to this:
".../interface/"&fn!char(34)&"xe-2/0/1"&fn!char(34)&"/unit/..."