8.0
Table Of Contents
- Overview
- New and enhanced features
- Getting started
- Functions
- Function overview
- Render types
- Content modifiers
- Render modifiers
- XML modify
- XML deconstruct and construct
- About XML deconstruct/construct
- xml
- construct
- Deconstructing a project
- Constructing a project
- Working with pages and spreads
- Working with layers
- Working with boxes
- Working with pictures
- Working with text
- Working with tables
- Working with Composition Zones
- Using server XSLT
- Working with lists
- Working with anchored boxes
- Working with placeholders
- Working with metadata
- Working with hidden text
- Administrative Request handlers
- The Modifier DTD
- Sample applications
- Contact Quark
- Legal notice
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