url

How to call a SAS STP in background using proc http and http_tokenauth

别等时光非礼了梦想. 提交于 2020-08-27 22:06:28
问题 I'm trying to call a stored process (STP) from SAS via proc http using the option background, to ensure that my main process does not wait for the STP to be finished. I do use the following code: filename resp "<path to response file>"; %let url = https://<ServerName>:<port>/SASStoredProcess/do; %let question_mark = ?; proc http url="%str(&url.)&question_mark.%nrstr(_action=background&_program=<path to STP>&num1=11&num2=22)" out=resp http_tokenauth; HEADERS "Content-Type"="application/x-www

Passing special character as part of URI parameter

偶尔善良 提交于 2020-08-27 21:24:28
问题 I have to pass a special character ('#') hash as part of my URI parameter while using Postman. http://localhost:9082/client/rest/Retrieval/listemail?bookID= #1063 The below bookID value is not getting passed to the server. Can someone help. 回答1: You can use the built feature of Postman to help you with this. Simply, highlight the part of the URL that you would like to encode and right click. This will display a context menu with the option to either Encode or Decode the selected value. 来源: