Hi everyone. I need to set up a protocol for fast command/response interactions. My instinct tells me to just knock together a simple protocol with CRLF separated ascii strings like how SMTP or POP3 works, and tunnel it through SSH/SSL if I need it to be secured.
While I could just do this, I'd prefer to build on an existing technology so people could use a friendly library rather than the socket library interface the OS gives them.
I need...
- Commands and responses passing structured data back and forth. (XML, S expressions, don't care.)
- The ability for the server to make unscheduled notifications to the client without being polled.
Any ideas please?