Home
Blog
Contact
Mailing List
Software
Active Directory Products
Object Compare
Permission Compare
IPhone Products
Calls To Calendar
SMS To Gmail
Voicemail To Gmail
Sites
SaveMySerials
How Long For Me
DocuTerminal
My Music To Me
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
Parsing XML in PHP with SimpleXML
Simple encryption class for PHP
Netbeans and PHP: A promising future
Implementing AJAX with PHP and MySQL
SharePoint Web Services, .NET 3.5, and Authentication Issues
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:
|