Module: Editor
Version: 4.3.0 +
Description
With the VisionReference 'StoreData' it is possible to store XML-data in a Vision Database. StoreData for example can be used to facilitate a visitor of your Futurama website to store information he wants to use in a next session. For example user input that you integrate within your website.
Parameters
Person:
The PersonKey (see here for more information) to which the DataItem must be bound (optional value, leave empty if it has not to be bound to a person)
DataSet:
The name of the dataset to store this data in
Description:
A small description of the DataItem's content (maximum number of characters is 40)
ParentID:
The DataItem identifier for a possible parent DataItem (use the value '0' if no parent is required)
ExistingDataItemID:
The DataItem identifier for an existing DataItem to be replaced (use the value '0' if the DataItem is new
Response
Format
The response XML of the VisionReference looks like:
<Response xmlns="http://www.actuit.nl/futurama/vision/service/response/1.0">
<ResultCode code="00000" success="true">
<Description>Success</Description>
</ResultCode>
<Result></Result>
</Response>
Within the Result element you find the result of your VisionReference webservice call. Use soapUI to get a quick overview of the responses (see the paragraph 'Example soapUI message').
Return codes
The following return codes can be encountered:
- 00000 - GeneralSuccess: The operation completed successfully
- 01000 - GeneralFailError: The operation caused an error. See the error log of the Vision Management Site for more details.
- 01999 - GeneralFailError: The operation caused an error. See the error log of the Vision Management Site for more details.
- 51002 - DataStoreSaveErrorXMLNotConformingToSchema: The XML data does not conform to the schema of the DataSets DataType
- 51003 - DataStoreErrorPersonDoesNotExist: The selected person does not exist
- 51004 - DataStoreInvalidEncryptionSettings: The dataset contains invalid encryption settings
- 51005 - DataStoreDataSetNotFound: Could not find the dataset.
- 51006 - DataStoreInvalidParentID: The provided parentID is invalid
- 51009 - DataStoreCyclicHierarchyError: Cyclic hierarchies are not allowed
- 51101 - DataStoreItemNotAvailable: The dataitem could not be found/retrieved
Example soapUI message
In the preceding paragraph the parameters of the VisionReference are listed. The values of these parameters are used by Futurama to compose an XML-message. With soapUI it is possible to see the responses depending on the values of the parameters. Below you find an example of an XML-message. This example can be used in your soapUI project to test the connection with Vision and to see the response for a certain combination of parameters.
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<Futurama path="\\servername\path\futurama" version="1.0" xmlns="http://www.actuit.nl/futurama/vision/service/header/1.0"/>
<Document path="\\servername\path\data.xml" version="1.0" xmlns="http://www.actuit.nl/futurama/vision/service/header/1.0"/>
</s:Header>
<s:Body>
<Request method="StoreData" version="1.0" module="DataStore" xmlns="http://www.actuit.nl/futurama/vision/service/request/1.0">
<Parameter name="PersonID" value="12345" type="System.String"/>
<Parameter name="XML" value="escaped XML-data" type="System.String"/>
<Parameter name="DataSetName" value="DataSet 1" type="System.String"/>
<Parameter name="Description" value="This is DataItem1" type="System.String"/>
<Parameter name="ParentID" value="0" type="System.Int32"/>
<Parameter name="ExistingID" value="0" type="System.Int32"/>
</Request>
</s:Body>
</s:Envelope>
Beware that in a soapUI message the XML has to be escaped. See for example http://www.freeformatter.com/xml-escape.html how you can escape XML.
Within the Header element you find an element 'Document' and an element 'Futurama'. For these elements you have to fill in the path of the Document and the Futurama respectively you also configured in the Apps and Futuramas tab of the Vision Management Site. Within the Request element you find the parameters for this VisionReference. By changing the values of these parameters you can execute different webservice calls.
Feedback
If you have any questions about this subject or if you want to provide us feedback please send us an e-mail.