Two disparate servers need to communicate
February 26, 2009 6:48 AM
Subscribe
A Windows server needs to tell a Linux Web server to change the contents of a Web page. I don't know how the first can communicate this to the second, or how the second can then make the change.
We have two servers:
[A] runs Windows Server 2003 (no http server).
[B] runs Linux, and Tomcat is its http server.
The home page on [B] is login.jsp and normally displays "Welcome".
When a particular C# program begins running on [A], login.jsp needs to display "[B] is not available".
When the program on [A] finishes, login.jsp needs to again display "Welcome".
BTW I'm more comfortable with Windows than with Linux. Thanks for any input.
posted by davcoo to computers & internet (7 comments total)
login.jps will check the flag before it displays it's message - and if the flag is 1 it says "[B] is not available." or if it is 0 it says "Welcome".
It may be one of those things that is easier said that done - but this seems like it would be easily implemented as long as you had access to the code on both machines.
posted by Brettus at 6:56 AM on February 26