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
getserverinfo
Returns an information block about QuarkXPress Server. The information is returned in XML format
and contains the platform on which the server is running, the version of QuarkXPress Server, a list of
installed fonts and server XTensions modules, the relevant XTensions software or server XTensions
module IDs, and the startup parameters with which the server is running. Any disabled server XTensions
modules are not returned in the response.
Namespace
getserverinfo
Response
XML containing list of server XTensions, required components, list of fonts
available to server, and startup parameters.
Alerts
Incorrect
administration realm
user name and
password.
HTTP Error #401
This alert is displayed when an invalid administrator user name
and password are specified.
What to do: Identify the correct user name and password that
were set in the Server Configuration dialog box, and then
resubmit the getserverinfo request with the correct user name
and password.
Logs
If the document is successfully rendered, a transaction success message is written
to the QuarkXPress Server Transaction Log file. The transaction entry consists of
the date and time of the request, render type, document name, type of response
produced by the server, size of response returned in bytes, and client IP address.
The following is a sample of a transaction entry:
8/4/2005 10:34:48 - getserverinfo - Type: text/xml - Size: 62098 - 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:49:23 - Error - Error Code: 10022 - Incorrect administration realm
user name and password.
Example GET
URL
http://localhost:8080/getserverinfo
Example, Object
Model
Request Object Name : GetServerInfoRequest
sdk.QRequestContext rc = new sdk.QRequestContext();
if(!this.DocumentSettings1.documentName.Text.Equals(""))
rc.documentName = this.DocumentSettings1.documentName.Text;
rc.request = new GetServerInfoRequest();
//Create the service and call it with QRequestContext object
QManagerSDKSvcService svc = new QManagerSDKSvcService();
sdk.QContentData qc = svc.processRequest(rc);
Notes
The getserverinfo parameter request requires an administrator user name and
password if those were set in the Server Configuration dialog box. When the
getserverinfo request is submitted to the browser, it asks for a user name and
password. Enter the user name and password that were set in the Server
Configuration dialog box and click OK.
Page 204