The connector's update
fetch action updates the metadata of documents in the StoreAll repository.
To use the update
action, you must construct some XML that specifies the identifiers of the documents to update, and provides the new values for any fields that you want to change. For example:
<identifiersXML> <identifier value="..."> <metadata name="FieldName" value="NewValue"/> </identifier> <identifier value="..."> <metadata name="FieldName" value="NewValue"/> </identifier> </identifiersXML>
You must add the XML to the action as the value of the IdentifiersXML
action parameter. The XML must be URL-encoded before being used in the action command. For example:
http://host:port/action=Fetch&FetchAction=update &IdentifiersXML=URL-encoded XML
|