I added
<property name="allowedDomains">*.192.168.0.100</property>
but the result is the same. HTTP 403 status.
I'm using a simple REST webservice (named rest-server.php) like above:
<?
$amount=$_GET["amount"];
$taxcalc=$amount*.15;
echo "<?xml version=\"1.0\" ?>";
echo "<taxinfo>";
echo "<result>".$taxcalc."</result>";
echo "</taxinfo>";
?>
I'm using the GET method to request a result in a xml file. (
http://192.168.0.100/rest-server.php?amount=500)
I noticed that when I request from firefox or opera, in the same server, the browser doesn't see the result like an xml file and show just a number. When I request from a windows system using IE the result is OK and the browser show an xml file. Also I put the rest-server.php in a win2000 server with the same results.
Is this has relation with my zimlet problem? What do you think?