I have 2 servers. The first one is the main server where visitors drop by.
For one service (*), I would need to pass an XML file and images to server number 2, where another PHP script would need to be able to receive them, process them and return an other file (PDF).
So... server 1 is the calling server and has the XML file and the images, sends them over to server 2, another PHP script takes them, processes them and returns the new file.
The questions are : how can I send the files from server 1->2 and after processing from 2->1.
Second question: how can I receive the files on server 2 ?
Thx for the help!
(*) The purpose is to take the XML file and the images, run them throuhg FOP and return the PDF file to the first server. The first sever doesn't allow me to run FOP.