Differences

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

Link to this comparison view

Both sides previous revision Previous revision
remotetriggerplugin [2020/05/04 18:46]
admin removed
— (current)
Line 1: Line 1:
-=====Remote Trigger Plugin===== 
- 
-//Remote Trigger Plugin// automatically sends the state and transition traversal event triggers to the remote agent as MBT model is being executed.  
- 
-[[http://testoptimal.com/javaDoc/reference/com/webmbt/plugin/RemoteTriggerPlugin.html| MScript Functions]] 
- 
------- 
-==== Overview ==== 
- 
-Upon receiving the state and transition traversal event triggers, the remote agent then performs the action accordingly. After the action is performed, the agent responds to the server with the execution result and obtains next state and transition traversal event trigger. 
- 
-==== Remote Agent ==== 
- 
-The remote agent can be written in any programming language which supports http requests. That is, if you can call an url and parse the result returned from a remote web server, you can write the remote agent. 
- 
-Below is a pseudo code for a typical remote agent: 
- 
-  * on start up, call //TestOptimal// to obtain the agent id 
-  * obtain the first trigger from the server. 
-  * loop until no more triggers returned from the sever 
-    * perform the action for the trigger received 
-    * obtain the next trigger from the sever 
-  * end-loop 
- 
-     
-  http://localhost:8888/MbtSvr/app=agentsvc&action=regAgent&mbtFile=xxx 
-  Return: localhost:6049 
- 
-  http://localhost:8888/MbtSvr/app=agentsvc&action=nextCmd&agentID=localhost:6049&status=SUCCESS&result=xxx 
- 
- 
-You may pass FAIL for "status" param which will cause the state/transition to fail and the value in "result" param will be the exception message. 
- 
-   Return from "nextCmd": 
- 
-  * MBT_start() 
-  * MBT_end() 
-  * onException() 
-  * onError() 
-  * mCaseName_setup() 
-  * mCaseName_cleanup() 
-  * state1_onentry() 
-  * state1_onexit() 
-  * trans1_prep() 
-  * trans1_action() 
-  * trans1_verify() 
- 
- 
-==== More Plugin Info ==== 
- 
-By default, this plugin is different from [[RemoteCommandPlugin|RemoteCommandPlugin]] which allows you to send a specific command to the remote agent instead of the the triggers that correspond to the traversing of states and transitions. However, you can use this plugin to also run mScript like [[RemoteCommandPlugin|RemoteCommandPlugin]] by following the instruction described in [[RemoteCommandPlugin|RemoteCommandPlugin]]. 
- 
-Additionally you may have [[Remote Agent Callback Action|remote agent callback]] to the server to retrieve data: dataset, user var and system var. 
-