How to pass a Query Parameter in a Get Rest Request wherein the Parameter is an array of JSON object
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2017
11:55 PM
10-30-2017
11:55 PM
How to pass a Query Parameter in a Get Rest Request wherein the Parameter is an array of JSON object
For Eg
If there is a Request wherein the Query Parameter looks as follows
QueryParameterName=[{Item1:"string", Item 2:"string"},{Item1:"string1", Item 2:"string2"}]
The complete URI would be as follows
https://{{Hostname}}:{{PortNumber}}/ResourceName?QueryParameterName=[{Item1:"string", Item 2:"string"},{Item1:"string1", Item 2:"string2"}]
I tried the above , but somehow SOAP UI gives me activity Timed out . Am I missing something here
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2017
12:00 AM
11-02-2017
12:00 AM
Is the JSON data invalid with non-quoted names?
The default validation occurs against the strict RFC 4627 specification which requires for names / keys to be in double quotes. E.g.: {example:"value"} is invalid but {"example":"value"} is valid.
