2016-08-11 12:40 AM
I need to perform an HTTP Get request to a server that supports listed parameters, an example being:
myshop.com/storesrequest.aspx?userid=1234&zipcodes=123,456,789As you can see the zipcodes parameter supports a list of values separated by a comma.The problem with this is that the SPWF01S interprets the comma as another configuration parameter for the HTTP Get command.The server is a fixed third party server and cannot be changed.Is there a way to issue an HTTP Get that contains commas? #httpget2016-08-11 03:52 AM
Use console1_delimiter configuration variable to change default ''comma'' (0x2c).
If not available, update FW release.2016-08-11 04:30 AM
Perfect, exactly what was needed. Thank you. I'll remember to look for the latest documentation next time.