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
produced by the server, size of the response returned in bytes, and client IP
address.
The following is a sample of a transaction entry:
8/3/2005 17:38:03 - getprojinfo/sample.qxp - Type: text/xml - Size: 386 - Client:
127.0.0.1
If an alert is displayed, an error message is written to the QuarkXPress Server
error log file. The following is a sample of an error log entry:
8/3/2005 17:45:02 - Error - Error Code: 10124 - The getprojinfo command can
only be used for QuarkXPress 6 documents and later.
Example GET
URL
http://localhost:8080/getprojinfo/sample.qxp
Example, Object
Model
Request Object Name : GetProjectInfoRequest
sdk.QRequestContext rc = new sdk.QRequestContext();
if(!this.DocumentSettings1.documentName.Text.Equals(""))
rc.documentName = this.DocumentSettings1.documentName.Text;
rc.request = new GetProjectInfoRequest();
//Create the service and call it with QRequestContext object
QManagerSDKSvcService svc = new QManagerSDKSvcService();
QContentData qc = svc.processRequest(rc);
Notes
The getprojinfo
parameter only works with projects created in QuarkXPress 6.0. It does
not work with documents created in QuarkXPress 5.0.
The getprojinfo request requires an administrator user name and
password if the user name and password were set in the Server
Configuration dialog box. When the getprojinfo request is submitted to
the browser, it asks for a user name and password. Enter the same user
name and password specified in the Server Configuration dialog box and
click OK
.
Page 203