Reputation: 377
What is the best way to call a secured ASP.NET web service from PHP?
Upvotes: 0
Views: 130
Reputation: 130
you can use fsockopen
:
http://php.net/manual/pt_BR/function.fsockopen.php
Or Curl
:
http://www.php.net/manual/pt_BR/curl.examples-basic.php
Or file_get_contents
:
http://php.net/manual/en/function.file-get-contents.php
Upvotes: 2