hi. I am using OpenLaszlo4.6.1/DHTML/SOLO. I want to fetch data from the known web services on the DHTML SOLO apps.
When I compile the dhtml app as SOLO, "http://....." src of a dataset does not work at all. Any help? regards, minamotonoason --------------------------------- main.lzx --------------------------------- <canvas proxied="false" debug="true"> <!--4.6.1/DHTML/SOLO--> <dataset name="ds" src="http://localhost/test4dhtml.php?data=hello" request="true" ondata="Debug.write(dsd.data)" /> </canvas> --------------------------------- test4dhtml.php --------------------------------- <?php $data = $_GET['data']; print "<root><data d='" . $data . "'/></root>"; ?>
