Hi, I am trying to make a get request which had query parameter and the parameter value has special characters but when i pass it to proc http url parameter the special character are being missread and the value is not being supplied correctly to the service My url looks like this http://myservice?name=abc+pqr&xyz proc http url="http://myservice?name=abc+pqr&xyz" method=GET ct="application/json" in=input out=resp headerout=headout; run; but the value is going as abc pqr. I tried url encoding also but it dosent work for + and & symbols. Is there a way to encode urls when passing them to proc http
... View more