cancel
Showing results for 
Search instead for 
Did you mean: 

Perform HTTP Get with listed parameters

justin23
Associate
Posted on August 11, 2016 at 09:40

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,789

As 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?

#httpget
2 REPLIES 2
Posted on August 11, 2016 at 12:52

Use console1_delimiter configuration variable to change default ''comma'' (0x2c).

If not available, update FW release.

justin23
Associate
Posted on August 11, 2016 at 13:30

Perfect, exactly what was needed. Thank you. I'll remember to look for the latest documentation next time.