Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

The HTTP API allows receiving data in xml format for further processing in scripts. To send a file, perform a POST request.

General request format:

POST http://IP-address:port/psim_core/{Any}

<tag1>
    <tag2>some_data</tag2>
    <tag3>another_data</tag3>
</tag1>

Request parameters:

Parameter

Is required

Description

AnyYes

Any set of valid characters can be specified instead of "Any" at the end of the command, except for "Event" and "React", for example:

  • http://127.0.0.1:8080/psim_core
  • http://127.0.0.1:8080/psim_core/Any
  • http://127.0.0.1:8080/psim_core/Custom

Request example:

POST http://127.0.0.1:8080/psim_core/Any

<tag1>
    <tag2>some_data</tag2>
    <tag3>another_data</tag3>
</tag1>

Response example:

After receiving the data in xml format in Axxon PSIM, the following event is generated:

HTTP|1|CUSTOM_EVENT|url</psim_core/Any>,owner<SLAVE-ID>,data<PG5..90ZT4=>

Response parameters:

Parameter

Description

data

Request body (i.e. the above xml) base64-encoded.

url Part of the posted url.
  • No labels