AMF veri Flex Servisi ile eksik

2 Cevap php

Ben bir veri hizmetleri ile bir Flex projesi ile bussy duyuyorum. Flaş oluşturucu Zend_Amf ile Zend Framework yüklü.

HTTP: i NetConnection.Call.Failed hatayı alıyorum projeyi çalıştırdığınızda başarısız oldu. Chalers i Zend_Amf hatayı vermek demek: AMF veri (0 bayt 0 bayt) eksiktir. Kayıt Ayarlar kayıt sınırlarını kontrol edin.

Ben sorunun ne anlama geldiğini bilmiyorum. Ben google arandı, ama iyi bir sonuç bulamadı. Flex projesi kodu:

<?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 click_me_clickHandler(event:MouseEvent):void
            {
                text.text += "Test started";
                testmeResult.token = authService.testme();
                text.text += testmeResult.lastResult
                text.text += "Test ended";
            }

        ]]>
    </fx:Script>
    <fx:Declarations>
        <s:CallResponder id="testmeResult"/>
        <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="124" y="85" label="Click Me!" id="click_me" click="click_me_clickHandler(event)"/>
    <s:RichText x="58" y="114" width="238" height="182" id="text"/>
</s:Application>

Php kodu:

<?php
class AuthService {
    public function testme() {
        return 'ik ben getest op'+date('d-m-Y H:i:s', time());
    }
}?>

Lütfen bana yardım edin!

2 Cevap

Ben wamp sunucu ve flaş oluşturucu yeniden ve bu çalıştı.

Yakalandı olmayan bir hizmet sunucu tarafında atılmış bir hata olduğunda bu hata normalde olur. Eğer günlüğü etkinleştirmek ve PHP oluyor herhangi bir hata olup olmadığını görebiliyor musun? Sizin örnek kod gayet iyi görünüyor ve çalışması gerekir.