While we're on it, now trying to access that service from client side with java script. I have the URL of the service and the URL of WSDL, now I just need to know how to configure XMLHttpRequest correctly and how to pass all the parameters and get the result from the server. Specifically, can't...
Well they mention something about WSF/PHP extention and how to install it on local apache server, but the question is can that extension be installed here and how? As far as I can see I can't configure the apache server here.
Well this is the example I found on the net:
<?php
$requestPayload = <<<XML
<calculate>
<param1>100</param1>
<param2>43</param2>
<param3>add</param3>
</calculate>
XML;
try{
$message = new WSMessage($requestPayload,
array("to" => "http://localhost:81/CalculatorService.php"))...
Hey, guys. Thanks for responding.
Let me rephrase. I need to know if this specific hostile(x10) supports writing web services in PHP, or any other script for that matter. The reason I'm asking is because I did find some examples on the web, and they don't seem to work here (PHP parser errors)...