Flash / Flex &

0 Cevap php

Ben PHP kullanarak bir soket sunucusu çalıştırıyorum. Ben PHP kullanarak ona bağlanmak, çünkü soketli sunucu iyi çalışır.

Şimdi, ben ona bağlanmaya çalışıyor flash uygulama var:

            this.socket.addEventListener(Event.CONNECT, onSocketConnect);
            this.socket.addEventListener(Event.CLOSE, onSocketClose);
            this.socket.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
            this.socket.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecError);

            try {
                this.socket.connect("myip", 9999);
            } catch (ioError:IOError) {
                this.debugLbl.text += "ioError1 "+ioError.message;
            } catch (secError:SecurityError) {
                this.debugLbl.text += "secError1 "+secError.message;
            }

Ben yerel uygulamayı çalıştırdığınızda, bu işe yarıyor! Benim sunucuya yükleyin Ancak, ben bir sanal güvenlik hatası (# 2048) olsun. Flaş uygulama aslında soket sunucusu olarak aynı sunucu üzerinde barındırılan ve yerine çapraz etki alanı ilke dosyası yoktur.

0 Cevap