Actionscript 3 :: XMLSocket Works In WIN EXE But Not On SWF?

Nov 22, 2011

I'm trying to make a socket client in FlashAS3 for my socket server written in nodejs. I also have a mobile app client that communicates with it.

In AS3 I wrote some test code that works perfectly when I publish and run Windows EXE file but when publishing to SWF and opening in browsers it does not connect to server. Even all that "imports" do not help. The Code:

[Code]...

View 2 Replies


Similar Posts:


XMLSocket Works While Testing In CS3, Not In A Browser?

Aug 16, 2009

I am sure that I am missing something simple but I am doing an overhaul of a flash chat application that I wrote a few years back.I have everything humming along in Actionscript 3 and it works well when I test the .swf in Flash CS3 Pro but when I publish it and view it in the browser, I get no joy.I can see the flash plug-in retrieving the crossdomain.xml in my web server's root directory but in the browser, the XMLSocket Object fails to connect I installed flashpolicy server that is responding on port 843, but again, through the browser, the XMLSocket Object fails to connect.I have tried both Firefox and Safari browsers with the same result.I have swapped out the XMLSocket Object for the Socket Object and I am able to connect to my socket server, from within Flash CS3, but not from a browser.

View 3 Replies

IDE :: Connecting To XMLsocket Works Only When Running On PC

Jun 4, 2009

I have done everything in my knowledge and everything i can find in Google to successfully connect to a simple php socket server that I create on my friends server.I can connect to the server successfully as long as the flash file is not on the server.If I "run" the fla on my computer, it works perfectly.I also sent the SWF to my friend who owns the server and he was able to get it to work running from his computer.He had a security thing at first but was able to change his settings to get it to work.I have tried uploading the swf to one of my servers and run it but it did not work either.As found in google, I added a crossdomain.xml file to the server and allowed any possible path that could be used. Nothing seems to work unless the flash is running straight off of the users computer.I have also tried the loadPolicyFile and it did not help either.

View 4 Replies

ActionScript 3.0 :: Movie Clip ROLL_OVER Only Works Once But MOUSE_OUT Works Infinitely

Apr 11, 2011

I have a movie clip (with instance name rectangle_mc) on the stage. Within this movie clip there are two separation animations on the timeline. The ROLL_OVER animation starts on frame "over" and the MOUSE_OUT animation starts on frame "off." If I roll over the movie clip, the initial animation plays, and when I mouse out the other animation plays to restore it to it's initial state. However, once the rollover animation has played once, it will not play again when I roll over it again, but for some reason the MOUSE_OUT plays every time.

[Code]...

View 1 Replies

Flex XMLSocket Over Ssl?

Aug 29, 2009

i am writing a flash app that receives its data over a XMLSocket. On the testmachine that worked really fine, but now the data will be ssl secured. Is there any XMLSSLSocket or something similar available? If not XMLSocket a normal SSLSocket would be a great help as well.

View 2 Replies

Apache Server W/ XMLSocket?

Aug 17, 2011

I have a perl socket on my apache server that correctly takes input from sockets and sends it back out to every socket connected to the perl socket. I have tested the perl socket, and it works correctly.
When I launch the Flash in the IDE, as a flash program, it functions correctly with the perl socket.
However, when I try to launch the Flash in a Browser on my apache server, it tells me it is unable to connect to the server.However, I am seeing from feedback from my perl socket, the flash connects for about a half of a second, and thats it.

What could be the problem, do I have to include code in the flash to allow XMLSockets to connect in a browser as well? Is there certain things I need to do with my apache server to make it work?

Also if I 'Preview as HTML' from Adobe Flash CS4, it does not connect.

View 3 Replies

ActionScript 2.0 :: XMLSocket Over Port 80?

May 3, 2005

On this page it says "The XMLSocket.connect method can connect only to TCP port numbers greater than or equal to 1024"This makes it hard to get a chatserver to work through a firewall.BUT I recently discovered on this page that you can set up "policies" for your flash movie that allow it to run on port 80.

View 1 Replies

ActionScript 3.0 :: XMLSocket Error #2048?

Aug 6, 2009

Im looking for a solution for the Error #2048 from Flash. I have a server program developed in Java using the class xSocket and it works fine. It manage the clients from Flash. Well, once i installed the server app in my domain "97.225.158.110" and running the client developed in Flash from my PC within Flash environment, it connects to the server with no problem. But, if i upload the flash to the domain and load it in a web explorer, it doesnt work. Well, i have been seeing many web pages mentioning the policy file and i will show you how i have done it: In the the Java App i have a event handler for incomming data where i idetify the incomming string:

Code:
if(data.equalsIgnoreCase("<policy-file-request/>")) {
Main.Log.append("Enviando archivo Politica Seguridad");
nbc.write("<cross-domain-policy><allow-access-from domain="*" to-ports="8090"/></cross-domain-policy>�");[code].............

Well, the java server app receive the string policy request and it should answer with the quoted file but the Flash never receive it and in a minute the Error 2048 appear.

View 2 Replies

Web Development :: Can XMLSocket Send More Than Once In Frame?

Nov 10, 2009

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 messages and have an onEnterFrame function that checks the queue and sends one message for a frame?

View 1 Replies

Flash :: Can't Connect To Server With AS3.0 XMLSocket

Feb 7, 2010

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 non-Flash client applications. For right now, I just want to connect to the remote server with an SWF residing on my local disk. From what I understand, this means that I do not need a security policy file since the SWF is not in another domain. I have also confirmed that the security sandbox property of the file is set to local-trusted, so the SWF should be able to connect to servers and retrieve data from them. Here's the important code from the AS file:

[Code]...

View 3 Replies

Java :: When To Use Socket And When To Use XMLSocket In Flex

May 18, 2011

In what situations should i use Socket class or XMLSocket when trying to connect from Flex to a Java Server that is going to listen to a port?

View 1 Replies

Actionscript 3 :: Read Data From An XMLSocket?

May 24, 2011

While using Socket, i am able to read the data as

while (socket.bytesAvailable)
{
textArea.text += socket.readUTFBytes(socket.bytesAvailable);
}

How can i read the data while using a XMLSocket? Is it enough to use xmlSocket.toString() ?

View 2 Replies

ActionScript 3.0 :: Xmlsocket With Wireless Connection?

Jan 19, 2009

i am using this code to connect to socket

Code:
function configureListeners(dispatcher:IEventDispatcher):void {
dispatcher.addEventListener(DataEvent.DATA, dataHandler);
dispatcher.addEventListener(Event.CONNECT, connectHandler);
dispatcher.addEventListener(Event.CLOSE, closeHandler);
dispatcher.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);

[Code]...

View 2 Replies

ActionScript 3.0 :: XMLSocket Not Receiving Data

Aug 4, 2009

I'm writing a flash chat program using XMLSocket.It's connecting and sending data just fine. The server is sending the data back just fine (I checked the packets on Ethereal), but Flash is just not receiving any data.[code]The server is a Java server written with the NIO classes.

View 2 Replies

ActionScript 2.0 :: Delay For XMLSocket Messages?

Jun 18, 2003

I am writing an XMLSocket Flash program and basically on startup, i call a funcion initialize, which connects the socket to the server and sends a message. Now I need to to wait for several startup messages from the server before I can continue. I need this to time out if they are not received.

View 2 Replies

ActionScript 2.0 :: XMLSocket.onData And UTF-8 Zero Bytes?

Aug 6, 2007

I'm currently playing around a bit with Java and Flash's XMLSocket to get them to talk together. The Flash documentation doesn't mention this anywhere, so I assumed that Flash's XMLSocket sends out its data encoded in UTF-8 just like XML.load expects its XML files to be UTF-8 encoded (and won't take anything else even if you tell it to!). This seems to be correct, because I've had Java send the string back as UTF-8 and Flash displayed it fine.However, there is a slight complication. XMLSocket's EOF marker for both input and output is a single zero byte, but certain high-codepoint Unicode characters get encoded in UTF-8 containing several zero bytes. When I have Java send back a byte sequence containing one of these multi-bytes characters, XMLSocket's onData seems to fire for the zero bytes that are part of the UTF-8 encoded string, as well as the zero byte EOF markerCode:61 62 63 00My Java server receives this sequence successfully and echoes it back to Flash identically. So Flash then receives:Code:61 62 63 00XMLSocket reads this, fires onData when it hits the last zero byte, and all is fine.

View 1 Replies

ActionScript 3.0 :: XmlSocket Return DataHandler?

Mar 24, 2009

Basically, I have an actionscript file as follows:

Code:
package {
import flash.display.Sprite;
import flash.events.*;
import flash.net.XMLSocket;

[code]....

And ALL I'm trying to do is return the information from the dataHandler to my main flash application.So just to emphasise I don't want it to trace the output (which it does OK), I want to return it as a String to my main application.

View 3 Replies

ActionScript 3.0 :: Xmlsocket Won't Show Outside Of Function

Apr 22, 2009

I have an actionscript file called[code]....

View 5 Replies

ActionScript 3.0 :: Which Is Faster - SharedObject Or XMLSocket?

Aug 24, 2009

I'm trying to make a multi-player game. Should I use SharedObject, which I find REALLY simple, or XMLSocket to make the users communicate with the server? Which will be the faster option?

View 4 Replies

ActionScript 3.0 :: XMLSocket Won't Receive The Data?

Dec 16, 2009

Code:
// action script
var socket:XMLSocket = new XMLSocket("127.0.0.1",8888);
socket.addEventListener(Event.CONNECT, connected);
socket.addEventListener(DataEvent.DATA, transData);

[Code]....

this won't send the string "this string won't be sent" to the client(flash).

View 1 Replies

ActionScript 2.0 :: XMLSocket : Live Game

Aug 21, 2004

some other buds are creating a game where we need to have multiple players in 'real time'. I have tested the solution of using a database/text file to handle the player positions, but it used huge amounts of CPU w/ only 2 players. So I wrote a socket server in PHP, and now I need help creating the AS part of it .I already wrote a bunch of accessors, I would like you to tell me if this is the best way to do it, as I am a total AS n00b.

Code:
/* Handle the receiving of player positions */
XMLSocket.prototype.onData = function (PlayerList)[code]...........

View 2 Replies

Error Creating Property OnConnect Of The XMLSocket?

Jan 5, 2010

I'm trying to stabelish a connection using XMLSocket:

var socket = new XMLSocket();
socket.connect("dyn.obi-graphics.com", 9999);
socket.onConnect = function(success)

[code].....

View 1 Replies

ActionScript 3.0 :: XMLSocket Loses Connection After 3 Seconds?

Oct 29, 2009

am getting now really crazy over this.I wrote a shockwave application that connects to a server (this one I wrote in PHP) via XMLSockets. My problem now is that exactly after 3 seconds the client disconnects automatically from the server.Maybe some of you could review my code to give me a hint where the problem is located - note that I use ExternalInterface and call the functions with JavaScript.

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="setup();">

[code]......

View 3 Replies

Flash :: Client XMLSocket Not Connecting To Server

Jul 30, 2009

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 settings. When I call the XMLSocket connect, the server seems to get a new connection. But, the XMLSocket.onConnect callback is not called with success=true.[code]...

View 2 Replies

Flex :: XMLSocket Truncates The Final Closing Tag Of The XML?

Mar 2, 2010

I have a project which tries to send an XML using XMLSocket to a server listening to it on the other side.The application file is:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[

[code].....

I have to open and close the socket on each request, but even trying not to do that for the sake of testing didn't help.

View 1 Replies

Java :: OpenPeak Flash App XMLSocket Security

Mar 12, 2010

We're trying to create an app for OpenPeak. The Flash app will act as a client to a Java server on another computer on another domain.The Flash app client connects via XMLSocket. The Java Server uses ServerSocket to receive a request and send back a message.In order to trust the server, the Flash client needs a socket master policy file to tell it that the server comes from a trustworthy domain. According to an article on Adobe, when a connection has succeeded, the Flash client automatically requests the cross-domain policy or socket master policy file on port 843.Still, even when we implement it according to the tutorials and recommendations we have read, the Flash client continues to throw the following security error:[code]We've tried logging the policy file request during testing to see if there was any call made to port 843. There was not.Interestingly, even without a policy file, the Flash client still manages to send the first data message to the server successfully. It's just when the server tries to send back a reply that the entire thing hangs for about 10 seconds before the security error above is displayed.

View 1 Replies

Actionscript :: Split Packets In Flash, XMLSocket?

Aug 27, 2010

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 xmlsock:XMLSocket;
this.xmlsock = new XMLSocket();
xmlsock.connect("127.0.0.1", 1234);[code].......

A possible packet I sniffed sent by the server was.

u:105.w. aka (75 3A 31 30 35 00 77 00)

so the waiting packet never came in.

View 2 Replies

Flash - Have A XMLSocket On The Server Side For AIR ServerSocket?

Jun 28, 2011

I have two software to create with AIR: a server and a client. Both with AS3 and AIR.I want to avoid having a big architecture with Remote Shared Object, or using BlazeDS, or having to set a Java / Python / ... server in the middle.In order to avoid having to parse socket data in the server and in the client side, I thought about using XMLSocket on the client side: the data arrives in a way which is already parsed by the Flash framework.However, when I use this XMLSocket with the AIR ServerSocket, the "connect" event returns me a raw Socket on the server side. So I have to manually manage the XML data on the server side.

Is there a way to also use an XMLSocket on the server side to communicate with the client? A kind of trick to convert the returned Socket into an XMLSocket?If there is an AS3 library which manages that, I did not find it.

View 2 Replies

ActionScript 2.0 :: Real Time Multiplayer/xmlSocket?

May 24, 2008

Im trying to create a real time multiplayer game similar to "Stick Arena". Ive already created a nio java server which works wonderfully. Everything connects and works ok however the problem im facing is efficency. When I test the game on my lan network, there is a delay of about 200 ms. When the game is tested ona single computer everything gets sent without any significant delay (1ms~). Whats wrong?

View 6 Replies

ActionScript 2.0 :: XMLSocket Failing In Latest Versions?

May 30, 2008

I've been scratching my head over this problem for two weeks now, trying to test (destroy) my router, internet connections, and flash apps to try and solve this problem. First of all, what I am trying to do: I've got a php socket server set up, and on localhost and lan connections with XMLSocket the server and flash clients work fine. But from the internet only some versions(or at least that is what I suspect) seem to connect. There is only one instance in which the connection worked, the client actually asked for a policy file... but I haven't been able to ask that guy's flash version yet. Is there anything different in the latest flash versions that prohibits XMLSocket from connecting to worldwide IPs?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved