Показать сообщение отдельно
Старый 15.10.2010, 22:37
Eric Gurt вне форума Посмотреть профиль Отправить личное сообщение для Eric Gurt Посетить домашнюю страницу Eric Gurt Найти все сообщения от Eric Gurt
  № 1  
Ответить с цитированием
Eric Gurt
 
Аватар для Eric Gurt

Регистрация: Oct 2006
Сообщений: 395
Arrow Socket securityError :: Error #2048

Всем добрый вечер

Когда я запускаю флэшку в IDE, все работает замечательно, но при запуске из браузера Socket выдает ошибку...

Для создания подключения в коде флэшки as3:
Код AS3:
var MP_SERVER_IP:String="91.200.106.130";
var MP_SERVER_PORT:int=10014;
var MP_socket:Socket = new Socket();
 
Security.loadPolicyFile("http://"+MP_SERVER_IP+"/crossdomain.xml");
 
MP_socket.connect(MP_SERVER_IP, MP_SERVER_PORT);
Когда флэшка делает попытку подключиться и взять кросдомэин, в логах сервера следующее:
Код:
-= Server =-

New client connected: 91.200.106.130 (Total 1 clients)
 -- Client said: <policy-file-request/>�
client requested crossdomain.xml sending...
 -- Client said: 
client disconnected.
И спустя 5-10 секунд после попытки подключиться, прослушиватель подключения сокета сообщает securityError:
Код:
[SecurityErrorEvent type="securityError" bubbles=false cancelable=false eventPhase=2 text="Error #2048"]
Вот такой полный код php-скрипта, запускающего сервер:
Код AS3:
<?
 
    header('Content-Type: text/plain;');
    error_reporting(E_ALL ^ E_WARNING);
    set_time_limit(0);
    ob_implicit_flush();
	ob_end_flush();
 
 
    echo "-= Server =-\n\n";
 
	include("adm.php");
	$address = '0.0.0.0';
	$port    = 10014;
	$max_clients = 128; 
 
	$crossdomain = '<cross-domain-policy><allow-access-from domain="*" secure="false" to-ports="'.$port.'"/></cross-domain-policy>';
 
 
	$trrr=0;
 
// create a streaming socket, of type TCP/IP
    $sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
 
    // set the option to reuse the port
    socket_set_option($sock, SOL_SOCKET, SO_REUSEADDR, 1);
 
    // "bind" the socket to the address to "localhost", on port $port
    // so this means that all connections on this port are now our resposibility to send/recv data, disconnect, etc..
   // socket_bind($sock, 0, $port);
   socket_bind($sock, $address, $port) or die('Could not bind to address'); 
 
    // start listen for connections
    socket_listen($sock);
 
    // create a list of all the clients that will be connected to us..
    // add the listening socket to this list
    $clients = array($sock);
 
    while (true) 
	{
		@ob_flush();
        // create a copy, so $clients doesn't get modified by socket_select()
        $read = $clients;
 
        // get a list of all the clients that have data to be read from
        // if there are no clients with data, go to next iteration
        if (socket_select($read, $write = NULL, $except = NULL, 0) < 1)
            continue;
 
        // check if there is a client trying to connect
        if (in_array($sock, $read)) 
		{
            // accept the client, and add him to the $clients array
            $clients[] = $newsock = socket_accept($sock);
 
            // send the client a welcome message
            //socket_write($newsock, "no noobs, but ill make an exception :)\n"."There are ".(count($clients) - 1)." client(s) connected to the server\n");
			socket_write($newsock, $crossdomain, strlen($crossdomain));
 
			socket_write($newsock, $crossdomain, strlen($crossdomain));
 
            socket_getpeername($newsock, $ip);
            echo "New client connected: {$ip} (Total ".(count($clients) - 1)." clients)\n";
 
            // remove the listening socket from the clients-with-data array
            $key = array_search($sock, $read);
            unset($read[$key]);
        }
 
        // loop through all the clients that have data to read from
        foreach ($read as $read_sock) 
		{
			if (false === ($data = socket_read($read_sock, 1024))) 
			{
				echo 'socket_read() failed: '.socket_strerror(socket_last_error())."\n";
			} 
 
 
			echo ' -- Client said: '.$data."\n";
 
 
            // check if the client is disconnected
 
			//echo ;
			if (strlen($data)==0 && ord($data)==0)
			//if ($data=='')
			{
                // remove client for $clients array
                $key = array_search($read_sock, $clients);
                unset($clients[$key]);
                echo "client disconnected.\n";
                // continue to the next client to read from, if any
                continue;
            }
 
 
            // trim off the trailing/beginning white spaces
 
            $data = trim($data);
 
			//if ($data == '<policy-file-request/>')
			if (substr($data, 0, 12) == substr('<policy-file-request/>', 0, 12))
			{
				echo "client requested crossdomain.xml sending...\n"; 
 
				socket_write($send_sock, $crossdomain, strlen($crossdomain));
			}
			else
			{
				$ans='Beep';
 
				echo 'Sending "'.$ans.'"'."\n";
				socket_write($send_sock, $ans, strlen($ans));
				//$data=$ans;
				//$trrr++;
			}
			// check if there is any data after trimming off the spaces
            if (!empty($data)) 
			{
 
                // send this to all the clients in the $clients array (except the first one, which is a listening socket)
                foreach ($clients as $send_sock) 
				{
 
                    // if its the listening sock or the client that we got the message from, go to the next one in the list
                    if ($send_sock == $sock || $send_sock == $read_sock)
                   //     continue;
 
                    // write the message to the client -- add a newline character to the end of the message
                    socket_write($send_sock, $data."\n");
 
                } // end of broadcast foreach
 
            }
 
        } // end of reading foreach
    }
 
    // close the listening socket
    socket_close($sock);
?>
Как сервер использую Ubuntu, ipv6 выключен. Мало чего соображаю в серверах и программировании сокетов, но кажется что все верно... Почему тогда может не работать?
__________________
.:Make it better:.
www.gevanni.com