Is it possible to send arrays in a POST request to a lotusscript agent? I have an array of about 15 entries and one value to send.
Subject: POSTing arrays
A POST request consists of a URL-encoded string of name=value pairs. You can’t POST an array as such, but you can do this sort of thing:
paramname=value1¶mname=value2¶mname=value3
or
paramname=value1%3Bvalue2%3Bvalue3
(where %3B is the escape code for a semicolon). In either case, you need to parse the values out of the Request_Content item of the DocumentContext, then build a LotusScript array from the values.