Within our intranet I have multiple domains. Domain ABC has our directory, and domain XYZ needs to read data on 30 people (3k per person in XML). So I have a browser window that pops off a window that interprets the query and creates a 100k XML string that needs to be returned to the page.
If the return string were smaller, I could encode it into the URL. I could set up a POST to a cgi program that would transfer the data, but that's something of a job for the backend guys. What I would like to do is set up some sort of a semaphore system that would allow me to send 100 URL's each with 1k in the GET parameters. I would accumulate the string back into a single message, and go about my merry way.
Has anyone heard of a way of doing anything remotely like this?
Thanks
Kevin
If the return string were smaller, I could encode it into the URL. I could set up a POST to a cgi program that would transfer the data, but that's something of a job for the backend guys. What I would like to do is set up some sort of a semaphore system that would allow me to send 100 URL's each with 1k in the GET parameters. I would accumulate the string back into a single message, and go about my merry way.
Has anyone heard of a way of doing anything remotely like this?
Thanks
Kevin