Home
Blog
Contact
Mailing List
Software
Blog
Twitter
|
<< Back To All Blogs
Calling .NET WebService From PHP
Sunday, October 15th, 2006
Here is how you call a webservice written in .NET from PHP. Note the very important addition of the Result to the end of the function call while getting a resultset from a webservice call:
$client = new SoapClient("http://server/service.asmx?WSDL");
$params->param1 = "some value";
$params->param2 = "some other value";
$objectresult = $client->function($params);
$simpleresult = $objectresult->functionResult;
print($simpleresult);
Tags
PHP
CSharp
Related Blogs
Simple encryption class for PHP
Implementing AJAX with PHP and MySQL
Netbeans and PHP: A promising future
Parsing XML in PHP with SimpleXML
Comments
Currently no comments.
Add A Comment
Name:
URL:
Email Address: (not public, used to send notifications on further comments)
Comments:

Enter the text above, except for the 1st and last character:
|