2015

Table Of Contents
The message "File deleted successfully."Response
HTTP Error #404
File not foundAlerts
QuarkXPress Server Error #43
This alert displays if you try to delete a file that does not exist in the
document pool.
HTTP Error #405Folder cannot be
deleted. It may still
contain files.
This alert displays if you try to delete a folder that is not empty.
What to do: First, delete all the files in the folder, and then resubmit the
delete request to delete the folder.
HTTP Error #500I/O error trying to
read or write to disk.
QuarkXPress Server Error #36
This alert displays if you try to delete an open file.
HTTP Error #401Incorrect
administration realm
This alert displays if you specify an invalid administrator user name and
password.
user name and
password.
What to do: Use the user name and password set in theQuarkXPress Server
Manager client Server Configuration dialog box.
See Understanding loggingLogs
http://localhost:8080/delete/sample.qxp
Example GET
URL
Request object name: DeleteRequest
com.quark.qxpsm.QRequestContext rc = new com.quark.qxpsm.QRequestContext();
Example, object
model
if(!this.DocumentSettings1.documentName.Text.Equals(""))
rc.documentName = this.DocumentSettings1.documentName.Text;
rc.request = new DeleteRequest();
// Create the service and call it with QRequestContext object
RequestService svc = new RequestService();
com.quark.qxpsm.QContentData qc = svc.processRequest(rc);
Evaluate
The evaluate request handler evaluates the document you specify using a rule set in
the Job Jackets file you specify, and returns the results as an XML stream.
By default, this request handler evaluates the following rules:
Platform mismatch
Missing fonts
Missing pictures
These rules are defined in the "Default Job Jacket.xml" file, which is generated by
QuarkXPress Server in the preferences folder.
You can specify multiple rule sets in a comma-separated list.
To specify which layouts to evaluate, use the layout parameter.
To evaluate using an external Job Jackets file, use the jobjacket parameter. For example:
jobjacket=customjj.xml
A GUIDE TO QUARKXPRESS SERVER 2015 | 149
USING QUARKXPRESS SERVER