First of all, i need to make my script as a daemon process
which can accept requests from the server.
I can choose any Server side technology till it can communicate with this Perl script.
To keep it simple, i can choose Perl/CGI which can talk to this daemon Perl script.
What is the best way to communicate with this Daemon script.
I haven't decided on how the communication needs to be..Sockets or anything else...any suggestions?
Are there Perl modules already available which can make my message passing simpler?
I can have the Web Page submit actual remote commands which needs to be passed to the Perl script which executes on the embedded system and returns me the result.
Thanks in advance.