Ben görevlerin en temel giderek bir sorunu hata ayıklamak çalışıyorum.
Ben bir web hizmeti ile etkileşim istiyorum adobe flex (action script 3) yazılı bir uygulama var. Ben sunucuya erişemez görünür, çünkü, ben basit bir uygulama oluşturduk.
ActionScript için kaynak kodu
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" viewSourceURL="srcview/index.html">
<mx:HTTPService id="concat" url="concat.php" resultFormat="text" method="POST">
<mx:request xmlns="">
<stringOne>{stringOne.text}</stringOne>
<stringTwo>{stringTwo.text}</stringTwo>
</mx:request>
</mx:HTTPService>
<mx:VBox top="10" left="10">
<mx:HBox verticalAlign="middle">
<mx:Label text="String 1:"/>
<mx:TextInput id="stringOne"/>
</mx:HBox>
<mx:HBox verticalAlign="middle">
<mx:Label text="String 2:"/>
<mx:TextInput id="stringTwo"/>
</mx:HBox>
<mx:HRule width="100%"/>
<mx:Button label="Concatenate!" click="concat.send()"/>
<mx:Text fontSize="14" text="{concat.lastResult}"/>
</mx:VBox>
</mx:Application>
PHP kodu
<?php
$stringOne = $_POST['stringOne'];
$stringTwo = $_POST['stringTwo'];
print $stringOne . $stringTwo;
?>
Ben alanları doldurun ve butonuna bastığınızda hiçbir şey olmuyor. Fikirler? Düşünceler? Önerileriniz?