How can i send an Array with a HTTP Get request?
I'm Using GWT client to send the request.
How can i send an Array with a HTTP Get request?
I'm Using GWT client to send the request.
Send them as multiple parameters with the same name.
Basically, for this array example:
String[] foo = { "val1", "val2", "val3" };
the query string should end up to look like:
foo=val1&foo=val2&foo=val3