'SOAP' .. httpsocketpost odd response

Hi.
Im messing about with SOAP at the moment.
Using the HTTPSocket POST method explained elsewhere in the forum.

If I take the url and paste it in a browser with ?wsdl on the end, I get a page full of XML… correct
If I try anything to the same url with an httpSocket, I get a 302 response, which I dont understand… I think that means the page has moved, so what could be going on?

Its an https: address if that makes any difference

302 is a redirect. The browser handles that for you. With httpsocket, you need to handle it yourself. The new location will be in the location header field. Post to that url.

Thanks, I’ll experiment.