Skip to main content
justin23
Associate II
August 11, 2016
Question

Perform HTTP Get with listed parameters

  • August 11, 2016
  • 2 replies
  • 718 views
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
    This topic has been closed for replies.

    2 replies

    Gerardo GALLUCCI
    ST Employee
    August 11, 2016
    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
    justin23Author
    Associate II
    August 11, 2016
    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.