8.0

Table Of Contents
RequestParameters
Description
Generic class for executing any request and also for adding dynamic
properties to the request.
Type
Web Service Data Object
Members
Name
Type
Description
namespace
String
Namespace of the request - e.g., jpeg.
params
NameValueParam[]
Parameter array for the specified request - e.g., jpegquality.
Additional
Comments
This class can be used to send any request for which a specific class
does not exist. When this request exists in the chain, its namespace
is concatenated with the namespaces of other requests. So the
namespace provided here can be null.
The parameters of this class can be used to parameterize the request
being sent to the server.
Example, Object
Model
QRequestContext rc = new QRequestContext();
RequestParameters request = new RequestParameters();
request.setNamespace("jpeg");
rc.setRequest = request;
NameValueParam p1 = new NameValueParam();
p1.setParamName = "jpegquality";
p1.setTextValue = "4";
request.setParams(new NameValueParam[]{p1});
Page 20