0

Flex 4 で新しいサービス メソッドを学習しようとしていますが、うまくいきません。flash builder 4 でサービスに近いテスト運用を行いました。しかし、コードを実行すると、NetConnection.Call.Failed: HTTP: Failed が表示されます。誰かが問題が何であるかを知っていますか?

トム

コード:

PHP

 <?php 

class AuthService {
    public function login($username, $password) {
        return 'ok';
    }
    public function logout() {
        return true;
    }
}

?>

フレックス

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:authservice="services.authservice.*">
    <fx:Script>
        <![CDATA[
            import mx.controls.Alert;

            protected function button_clickHandler(event:MouseEvent):void
            {
                loginResult.token = authService.login(username, password);
            }

        ]]>
    </fx:Script>
    <fx:Declarations>
        <s:CallResponder id="loginResult"/>
        <authservice:AuthService id="authService" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:Button x="97" y="193" label="Button" id="button" click="button_clickHandler(event)"/>
    <s:TextInput x="91" y="87" id="username"/>
    <s:TextInput x="97" y="117" id="password"/>
</s:Application

>

4

1 に答える 1

1

PHPサーバー側でクロスドメイン設定をチェックアウトします。

于 2010-04-24T22:38:03.733 に答える