10.2.1

Table Of Contents
pdfreq.setMovePages("2-4");
pdfreq.setAfterPage("7");
requestCtx.setRequest(pdfreq);
// STEP3: Create the service and call the
// processRequest() API
RequestService service = new RequestServiceStub();
com.quark.qxpsm.QContentData data = service.processRequest(
requestCtx);
The movepages operation executes only after all other modifications are complete. For example,
if you use movepages in a modify request, the pages are moved only after the modify request
is complete.
Notes
page
The page render modifier lets you render a single page.
Lets you specify which page to render.Integer
page
Parameters
eps, jpeg, png, postscript, qcddoc, raw, pdf, screenpdf
Compatible
with
HTTP Error #500The requested page does
not exist.
Alerts
This alert displays if you attempt to render a page that does not exist.
HTTP Error #406The renderer for this
image type has no way
This alert displays if you use a page parameter with the qxpdoc render
type.
of rendering the desired
objects.
See Understanding loggingLogs
http://localhost:8080/png/sample.qxp?page=2
Example GET
URL
To add a new page to an existing spread in a project, use code like the following:
Spread spread = new Spread();
Page page = new Page();
Example, object
model
page.UID = "5";
page.operation = "CREATE";
spread.page = new Page[]{page};
To edit the properties of an existing page, use the following object hierarchy:
ModifierRequest < Project < Layout < Spread < Page
To delete a page, set its operation attribute to "DELETE".
To render a page in a particular layout, use a URL like the following:
http://localhost:8080/png/sample.qxp?layout=2&page=3
Notes
pages
The pages render modifier lets you render multiple pages. The pdf and postscript
namespaces support this parameter.
Lets you specify which pages to render.String (page range)
pages
Parameters
eps, jpeg, png, postscript, raw, pdf, screenpdf
Compatible with
HTTP Error #500This page range is
invalid.
Alerts
QuarkXPress Server Error #147
A GUIDE TO QUARKXPRESS SERVER 10.2.1 | 81
USING QUARKXPRESS SERVER