Here is my situation:
I have a Webserver machine, a client machine, and a third computer running a program that listens for XMLHttpRequests.
The client accesses the web server from the client computer, makes some changes, and then clicks "Save." At this point, the data is sent back to the web server and to the third machine. All this is done using Javascript and an XMLHttpRequest object.
The message on the web server works fine, but the mail on the third machine does not work because it has a different IP address.
How can I do this job? Client machine → The third machine does not work because it is in a different domain The web server machine → The third machine does not work due to problems with the firewall.
Any ideas are welcome!
source
share