This is an old revision of the document!
Deploying TransSECS with a REST interface allows the reading and writing of values over http. The default port for the server is 7220, so, for example the url may start with http://localhost:7220
All REST requests return a JSON object.
REST Endpoints
/LIST - provides a list of known data points. For example:
{"ReadOnlyVariables":["gemtool.alids.gasflowproblem.alcd",gemtool.vids.controlstate, ... "gemtool.vids.spoolfulltime","gemtool.vids.spoolstarttime"], "ReadWriteVariables":["gemtool.alids.gasflowproblem.enable","gemtool.alids.gasflowproblem.set"..."gemtool.vids.timeformat","gemtool.vids.wafercount"]}
/VALUES/value1[/value2 etc.] - provides the values for the given point(s). For example:
http://localhost:7220/VALUES/gemtool.vids.controlstate
{"gemtool.vids.controlstate":"3","Errors":"NONE"}