mhamilton3
Programmer
- Oct 31, 2001
- 129
Hello,
I have to call a 3rd party service. I can call this service either by a simple server to server http call or via SOAP service. I have found a bunch of sites that talk about SOAP, but no concrete examples (I have to talk to .NET). I have also read .NET has issues from PHP. I am looking to do what ever is easiest. I know in PERL I can enter
and it will return whatever the URL returns - it can be an XML stream or a web page, I parse in on the other side. I Can I do that in PHP? Thanks in advance.
- Mark
I have to call a 3rd party service. I can call this service either by a simple server to server http call or via SOAP service. I have found a bunch of sites that talk about SOAP, but no concrete examples (I have to talk to .NET). I have also read .NET has issues from PHP. I am looking to do what ever is easiest. I know in PERL I can enter
Code:
$var = get("myurl")
- Mark