sending data to another site without changing code
suppose there is a site A and form of my site is same as in site A.
what i want is that
when i fill the form and submit it the data of my form should fill the form of site A and submitted automatically.
the result will be display in my site
NOTE: i dont have authority to change the code of site A
how can my data accepted by the form of site A
please help
sandy
Loading
Mahesh ChandPosted Jun 20, 2007, 8:05 AM
You have to open a two way communication between two servers (Site A and your site) and pass data back and forth between the servers. You need to learn basics of remoting and how communication works.
It can be done using Web Services as well. Your machine (where data will be updated) will have to host a Web service and MachineA has to call this WebService on certain interval of time(say using timer). If you want real-time updates, you will have to use remoting.