it is possible to acces exemple at localhost:5500 for an user with access web page with paramètre to activate a task
thks
Web services
Re: Web services
Do you want script on ASP or PHP?
Maybe this is possible but there are some problems:
ASP works under IIS user account within separate session.
COM object is working within current session only where the caller script work.
Probably it's possible to call the task from RoboTask service.
But I'm sure that you have to tune your web server in order to reach this.
I will try to investigate this job.
Maybe this is possible but there are some problems:
ASP works under IIS user account within separate session.
COM object is working within current session only where the caller script work.
Probably it's possible to call the task from RoboTask service.
But I'm sure that you have to tune your web server in order to reach this.
I will try to investigate this job.
Oleg Yershov
Re: Web services
Also look at the Send Command action and Listener
This action and trigger designed for running tasks remotely from another computer
I hope this can assist you.
This action and trigger designed for running tasks remotely from another computer
I hope this can assist you.
Oleg Yershov
Re: Web services
PHP for it's more fine.
it's possible to activate a task with vbscript under another machine? with parameters for exemple?
it's possible to activate a task with vbscript under another machine? with parameters for exemple?
Re: Web services
There is NetworkClient utility. Download it here
It simulates "Send Command" action
NetworkClient can be used as interactive utility and from command line. Description of command line is included this is not complex.
Next, you should prepare necessary tasks with Listener trigger on your RoboTask
You can run these tasks by using command line from PHP script. See the example:
Of course you can use your own server, port, password, command, etc.
It simulates "Send Command" action
NetworkClient can be used as interactive utility and from command line. Description of command line is included this is not complex.
Next, you should prepare necessary tasks with Listener trigger on your RoboTask
You can run these tasks by using command line from PHP script. See the example:
Code: Select all
<?php
exec('"D:\Test\NetWorkClient.exe" srv=localhost cmd="start" port=5255 silent=yes', $arr);
foreach ($arr as $s)
{
echo $s."<br/>";
}
?>
Oleg Yershov