FlexSDKでHTTPServicePOSTメソッドを使用すると、次のエラーが発生します。
[RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: http://localhost/MAMP/secondPHP.php" errorID=2032]. URL: http://localhost/MAMP/secondPHP.php"]
at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\dev\4.y\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:345]
at mx.rpc::Responder/fault()[E:\dev\4.y\frameworks\projects\rpc\src\mx\rpc\Responder.as:68]
at mx.rpc::AsyncRequest/fault()[E:\dev\4.y\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:113]
at DirectHTTPMessageResponder/errorHandler()[E:\dev\4.y\frameworks\projects\rpc\src\mx\messaging\channels\DirectHTTPChannel.as:410]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()
これは私のフレックスコードです:
private function returnValue(evt:ResultEvent):void {
label.text = "" + evt.result;
}
protected function add(event:MouseEvent):void
{
// TODO Auto-generated method stub
new_friend.send();
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
<s:HTTPService id="new_friend" result="returnValue(event)" method="POST" url="http://localhost/server/secondPHP.php" useProxy="false">
<s:request xmlns="">
<method>ADD</method>
</s:request>
</s:HTTPService>
</fx:Declarations>
これが私のPHPコードです:
<?php
$method = $_POST["method"];
if ($method == "ADD") {
$xml = new SimpleXMLElement("http://localhost/server/userdatabase.xml", null, true);
$xml->Users->addChild("User", "testuser");
$xml->asXML('http://localhost/server/userdatabase.xml');
$returnValue = "Added";
print($returnValue);
}
?>
そして最後に私のXMLコード:
<?xml version="1.0" encoding="UTF-8"?>
<Users>
<User>SomeUser</User>
</Users>
なぜ私がこのエラーを受け取るのか誰かが知っていますか?PHPファイルでSimpleXMLを使用している場合にのみこのエラーが発生することに気付きました。また、xmlコードを削除してもエラーは発生せず、「print($ returnValue)」メッセージが表示されます。
RMK-ジェイコブ