From 23a2402edc299e4ec53b5deabce34fc306cbe848 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 17 Apr 2013 10:56:08 +0200 Subject: [PATCH] Document POSTing of settings/services PAZ-865 --- doc/pazpar2_conf.xml | 2 +- doc/pazpar2_protocol.xml | 33 ++++++++++++++++++++++++++++----- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/doc/pazpar2_conf.xml b/doc/pazpar2_conf.xml index 74f778e..57427ca 100644 --- a/doc/pazpar2_conf.xml +++ b/doc/pazpar2_conf.xml @@ -163,7 +163,7 @@ - service + service This nested element controls the behavior of Pazpar2 with diff --git a/doc/pazpar2_protocol.xml b/doc/pazpar2_protocol.xml index 6184f4e..5e806bf 100644 --- a/doc/pazpar2_protocol.xml +++ b/doc/pazpar2_protocol.xml @@ -37,7 +37,7 @@ This way, a regular webserver can host the user interface (itself dynamic or static HTML), and Ajax-style calls can be used from JS (or any other client-based scripting environment) to interact with the search logic - in Pazpar2. + in Pazpar2. Each command is described in sub sections to follow. @@ -48,7 +48,20 @@ Initializes a session. Returns session ID to be used in subsequent requests. If a server ID is given in the Pazpar2 server section, then a - period (.) and the server ID is appended to the session ID. + that is included in the session ID as suffix after a period (.). + + + If the init command is performed as a HTTP GET request, service + and settings from local files are used. The service parameter + may chose a particular local service. + + + If the init command is performed as a HTTP POST request and + the content-type is text/xml, then the content is XML parsed + and treated as service for the session. The root element should be + service. Refer to descripton of the + service format. + The posting of a service appeared in Pazpar2 version 1.2.1. Example: @@ -124,8 +137,10 @@ The settings command applies session-specific settings to one or more databases. A typical function of this is to enable access to restricted resources for registered users, or to set a user- or - library-specific username/password to use against a target. Each - setting parameter has the form name[target]=value, where name is the + library-specific username/password to use against a target. + + + Each setting parameter has the form name[target]=value, where name is the name of the setting (e.g. pz:authentication), target is a target ID, or possibly a wildcard, and value is the desired value for the setting. @@ -145,7 +160,15 @@ the init command. - + + + If the settings command is performed as HTTP POST and the content-type + is text/xml, then the content is XML parsed and treated as settings - + with a format identical to local + settings files. + The posting of settings appeared in Pazpar version 1.2.1. + + Example: