If I understand the issue correctly, you have info on server 1 that you really just want accessed/displayed on server2

I've done this sort of thing numerous times to get data from locked systems to an "enternal" source. i.e. getting oracle billing data to a customer without letting them actually touch a box that is directly connected to the network oracle is on. Another project I am working right now, allows an external division across the world invoke our CGI input screen without actually using them directly....i.e. they use their existing interface, which calls my system passing what would have been entered into our forms. they then have to parse some specially formatted output that indicates the status of their requests, but we have made that fairly easy by creating consistent markers they can use to snag the real data...the biggest hurdle we face is that the system calling us is ASP based, getting them to figure out how to do what LWP does via ASP, and parsing without the benefit of a regex.

If this is the case, simply create all the web pages on the source server1, then use a front end on the access server2 call server1, redisplaying the data on server2.

LWP can make this fairly easy. And it's damn fun.

of course, if I misunderstand the problem....nevermind :-)


In reply to Re: perl script accesing another server by wardk
in thread perl script accesing another server by philbe

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.