... I have a need to regularly deliver some info...

How often is 'regularly', and how much is 'some'? (Update: I see that you need to do this once a minute.)

My first inclination would be to develop your own interface on top of HTTP (i.e. a REST interface.) It's simple to build, debug and extend incrementally. If you need encryption, just use https. It's also easy to set up action to be performed when you send the data or message. SNMP is a good idea if you already have an SNMP monitoring solution that you want to integrate it with.

Another possibility is to use the Unix syslog mechanism over tcp if you can run a syslog daemon.

I would definitely nix the direct Mysql access - it creates too many problems. The best solution kinda depends on what you want to do with the data and what kind of reliability requirements you have. For instance, you might want decouple the collection of the data and the sending of it to the Linux box in case your laptop can't reach the Internet.


In reply to Re: Perl on Windows project direction by pc88mxer
in thread Perl on Windows project direction by kansaschuck

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.