Pargat, I told you this already in my previous reply!! You are putting data in the URL that has not been URL encoded! That is the missing step! One way to handle this is with the web forms routines in HTTPAPI: /define WEBFORMS /copy HTTPAPI_H dcl-s form like(WEBFORM); dcl-s URL varchar(32767); http_setCCSIDs(1208: 0); form = WEBFORM_open(); WEBFORM_setVar(form: 'Action': 'SendMessage'); WEBFORM_setVar(form: 'MessageBody':LeftBrace + ' "Location":"06031" ' + RightBrace); URL = '' + webform_getData(form); WEBFORM_close(form); // now use http_req() or whatever, with URL as the URL, it has the encoded data. -SK On 5/9/17 12:11 AM, Pargat Singh wrote:
|
-- _______________________________________________ Ftpapi mailing list Ftpapi@xxxxxxxxxxxxxxxxxxxxxx http://scottklement.com/mailman/listinfo/ftpapi