Hi,
As part of some work I'm doing I need to send a SOAP request of an xml file ($xml) to https://login.live.com/RST.srf
I have no idea how to do this and I was hoping someone could point me in the right direction.
I've tried:
to dump a list of functions, but it gives me:
Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't find <definitions> in 'https://login.live.com/RST.srf'
I've looked at SoapClient->__doRequest( ) but it seems to have too many arguments.
Any help would be seriously appreciated,
Thank-you.
As part of some work I'm doing I need to send a SOAP request of an xml file ($xml) to https://login.live.com/RST.srf
I have no idea how to do this and I was hoping someone could point me in the right direction.
I've tried:
Code:
$client = new SoapClient("https://login.live.com/RST.srf");
$funcs = $client->__getFunctions();
print_r($funcs);
Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't find <definitions> in 'https://login.live.com/RST.srf'
I've looked at SoapClient->__doRequest( ) but it seems to have too many arguments.
Any help would be seriously appreciated,
Thank-you.
Comment