Ok, I'm stumped - and maybe someone here will know.
I've written a simple XMLRPC client in javascript, using XMLHttpRequest - and this works, I can contact the server, make an RPC, and get a result back - hurrah.
Now my problem comes from trying to pass in a cookie into the request
I do
Code:
request.setRequestHeader('Cookie','aParam=aValue');
which works in Firefox - however in IE7, it doesn't. There used to be a bug where you had to set the cookie twice for it to register in IE, but that doesn't work here.
I'm not getting an error, the cookies just aren't being passed through to the server.
I've tried the ActiveX version of XMLHttpRequest, as well as the new native version in IE7 - both have the same result - I've googled a fair bit but haven't found any answers....