rest_client

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
rest_client [2021/09/29 13:42]
wikiadmin
rest_client [2021/09/29 14:32] (current)
wikiadmin
Line 6: Line 6:
  
 then browse to the file.  TransSECS will install the module.  You then need to restart the TransSECS application. then browse to the file.  TransSECS will install the module.  You then need to restart the TransSECS application.
 +
 +You need to be running the "TransSECSDevices" executable, not the main "TransSECS" application.
 +
 +{{:pasted:20210929-140552.png}}
  
 ===== Adding REST servers ===== ===== Adding REST servers =====
Line 163: Line 167:
 You can test the sample REST project with the StandAloneGEMTool application that is part of TransSECS, or with the TransSECS [[runningthegeneratedequipmentsimulator|Equipment Simulator]] created from your host project. You can test the sample REST project with the StandAloneGEMTool application that is part of TransSECS, or with the TransSECS [[runningthegeneratedequipmentsimulator|Equipment Simulator]] created from your host project.
  
-With the StandAloneGEMTool you can make the connection from your TransSECS host as normal.  Press the "hammer-and-star"{{:pasted:20210929-134003.png}} button then the SIM/LIVE {{:pasted:20210929-134032.png}}+For testing, you can use the [[https://github.com/jacopofar/demo-REST-server|Demo REST Server]] from Jacopo Farina on GitHub.  Full documentation on how to run the demo is on the GitHub page Possibly the simplest option is just to run the Docker image:
  
-{{:pasted:20210929-133901.png}}+<code> 
 +docker run -p 7000:7000 --name restdemo  jacopofar/demo-rest-server 
 +</code>
  
 +Using the "curl" application you can then add recipes.  Here we add a recipe, "recipe1", for the lot id "Lot123":
 +
 +<code>
 +curl -X PUT -H "Content-Type: application/json" -d '{"Recipe":"recipe1"}' "http://localhost:7000/Recipe/GEMHost/Lot123"
 +</code>
 +
 +With the StandAloneGEMTool you can make the connection from your TransSECS host as normal.  Build with the "hammer-and-star"{{:pasted:20210929-134003.png}} button then press the SIM/LIVE {{:pasted:20210929-134032.png}} to go LIVE. If you don't see the host connect to the tool, check your configuration and correct any mismatch and rebuild.
 +
 +{{:pasted:20210929-134337.png}}
 +
 +Once you're connected set the Lot ID field to "Lot123" to match the value in the REST server, then select the "LOADED" event and press the "Send Selected Event" message.
 +
 +{{:pasted:20210929-133901.png?400}}
 +
 +Select the "LOADED" event and press the "Send Selected Event" message.
 +
 +{{:pasted:20210929-135449.png?400}}
 +
 +You will see the event sent to the host, with the recipe "Lot123" and the PP-SELECT command sent from the host with the recipe and the lot id.
 +
 +Choose the "COMPLETED" event and send that event.  You should see the event, and if you check the value in the REST server it should have the value of "1"
 +
 +<code>
 +curl -X GET -w "\n" -H "Content-Type: application/json" "http://localhost:7000/StoreData/GEMHost"
 +</code>
 +
 +(If you want to change the value in the REST server to be sure that it's actually chaning on the COMPLETED event, this command will set it to 22:
 +
 +<code>
 +curl -X PUT -H "Content-Type: application/json" -d '{"WaferCount":22}' http://localhost:7000/StoreData/GEMHost
 +</code>
 +)
  • rest_client.1632940953.txt.gz
  • Last modified: 2021/09/29 13:42
  • by wikiadmin