Tagged Questions

2
votes
2answers
3k views

Flash client XMLSocket not connecting to server

I have a Flash client that I want to connect to a server. Both are using localhost and port 50000 so there shouldn't be any cross-domain problems. I also set Access Network Only in the publishing ...
2
votes
2answers
1k views

ActionScript 3.0 sockets can't reconnect

I'm having trouble connecting (via the Socket and XMLSocket classes) to a TCP listener after a connect timeout. I have a flash applet that needs to maintain a TCP connection to a server. I have ...
1
vote
2answers
324 views

Impossibility to connect to a java server with AS3

I'm having trouble with a XMLSocket script in AS3. I have a java server and i'm trying to send a XML data, but the server isn't recieving anything. The most suprising is that my script worked very ...
1
vote
1answer
421 views

XMLSocket communication between localhost and example.com

I want to use XMLSocekt between localhost and example.com. SWF in localhost try to connect example.com, SecurityError occured. How can I use XMLSocekt between localhost and example.com?
1
vote
2answers
424 views

What is the xmlsocket:// protocol?

This SO answer says "The Flash Player now looks for a policy file on port 843".. I have a policy server that is listening on port 843 which sends out an XML policy to Flash clients. Is this enough? ...
0
votes
0answers
20 views

ActionScript socket in Android

I have a Flash client application, written in ActionScript, which uses an XMLSocket to talk to the server device via TCP/IP. So for example, I can run the Flash client in a browser and connect to a ...
0
votes
0answers
45 views

Why is Flash 8 XMLSocket so slow?

I have a Flash 8 application which is streaming data from a localhost server. The data is being broadcast by the server 10 times a second. Flash is receiving all the data. No values are missed. I am ...
0
votes
1answer
91 views

Ignore large amount of sites with TCP/IP Sockets policy file for Flash

Let me explain my situation. I'm using flash sockets to build an embedded chat application. everything works great. I want to allow all the sites who embedded this application to connect to my server, ...
0
votes
1answer
167 views

Flash XMLSocket & NetStream interfere with each other

in my test application, i have an XMLSocket to communicate with a java socket server (running locally on my computer). If i concurrently try to setup a P2P connection with another client (also ...
0
votes
2answers
223 views

connecting javascript to php socket to communicate with Flash

I'm trying to build a projection installation for a university project, I want the audience to be able to communicate with the installation with their mobile phones. This is what I'm trying to do: - ...
0
votes
1answer
439 views

Flash: XMLSocket can receive data but not send

I am attempting to connect to a python twisted socket server with Flash using XMLSocket. The connect works fine, and so does the receive. However I can't send data to the server. Is there a specific ...
0
votes
2answers
263 views

How to split packets in flash, XMLSocket

Hello I believe my flash client is losing some packets the server sends, because some packets get joined together hence I believe it drops them. Here is my packetHandler in flash private var ...
0
votes
3answers
534 views

Can't connect to server with AS3.0 XMLSocket

I have a server that I have written in Python and I'm trying to connect to it via Flash's XMLSocket. I know for sure that this server is working properly as I have used it successfully with multiple ...
0
votes
0answers
312 views

connection via an XML socket cannot connect Flash movie on same domain to website

I'm creating a Flash movie which uses an XMLSocket as one of the methods it connects to the server. At the moment I am trying to test this movie and check that the connection works. The problem I'm ...
0
votes
1answer
250 views

Can XMLSocket send more than once in a frame?

I have a XMLSocket and I call send twice in the same function. The first send works but the second does not? Does XMLSocket have a restriction to only send one message per frame? Do I have to queue ...
0
votes
2answers
912 views

XMLSocket working in firefox but not IE

I'm helping a customer who has a problem with a flash app. The flash app uses an XMLSocket to connect to a service running on localhost. It works fine under firefox. It uses the following line to ...