[flexcoders] Re: Socket communications in Flex

2009-02-16 Thread markgoldin_2000
I actually got it working: Problem with Flex not getting data was ... From Help: Each XML message is a complete XML document, terminated by a zero (0) byte After I added it to my server message to Flex it worked fine. Thanks everyone for help. --- In flexcoders@yahoogroups.com, Guy Morton

RE: [flexcoders] Re: Socket communications in Flex

2009-02-16 Thread Jim Hayes
with a socket server, if you don't do that then it can appear as if it's not working. -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of markgoldin_2000 Sent: 15 February 2009 16:50 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Socket

Re: [flexcoders] Re: Socket communications in Flex

2009-02-16 Thread Weyert de Boer
It's \0 or null character for the XMLSocket class. This limitation doesn't exist when you use the binary sockets.

[flexcoders] Re: Socket communications in Flex

2009-02-15 Thread markgoldin_2000
I was able to create a server socket using VB code. I am sending data from a Flex test application to my server socket but cannot send any data to Flex. Any idea? --- In flexcoders@yahoogroups.com, Guy Morton g...@... wrote: As Tracy said, yes. A socket is just a network connection. Your

[flexcoders] Re: Socket communications in Flex

2009-02-15 Thread markgoldin_2000
Link is not working for me. --- In flexcoders@yahoogroups.com, Weyert de Boer w...@... wrote: Have a look at: http://www.innerfuse.biz/dropbox/WebDU 2007 Leveraging Apollo Runtime.zip Shows how you can make a socket server in Ruby and talk with a Bluetooth GPS device.

[flexcoders] Re: Socket communications in Flex

2009-02-15 Thread valdhor
Copy and paste (Including the spaces) --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: Link is not working for me. --- In flexcoders@yahoogroups.com, Weyert de Boer wdb@ wrote: Have a look at: http://www.innerfuse.biz/dropbox/WebDU 2007 Leveraging Apollo

Re: [flexcoders] Re: Socket communications in Flex

2009-02-15 Thread Guy Morton
Firewall? Is the port you're using open? Is the data event firing at all? If so, what's in it? If not, either your server is not serving data like you think it is, or the data can't get to your flex app because there's something in the way. On 16/02/2009, at 3:50 AM, markgoldin_2000

[flexcoders] Re: Socket communications in Flex

2009-02-14 Thread markgoldin_2000
I am not sure myself about my question :). First, can Flex be listening to a socket that is created within any program? I mean, if a vb program creates a socket using Winsock will Flex be able to listen to such socket? Second, if yes, how would data actually be transfered? Thanks --- In

RE: [flexcoders] Re: Socket communications in Flex

2009-02-14 Thread Tracy Spratt
...@yahoogroups.com] On Behalf Of markgoldin_2000 Sent: Saturday, February 14, 2009 11:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Socket communications in Flex I am not sure myself about my question :). First, can Flex be listening to a socket that is created within any program? I mean

[flexcoders] Re: Socket communications in Flex

2009-02-14 Thread markgoldin_2000
development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of markgoldin_2000 Sent: Saturday, February 14, 2009 11:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Socket communications in Flex

Re: [flexcoders] Re: Socket communications in Flex

2009-02-14 Thread Guy Morton
As Tracy said, yes. A socket is just a network connection. Your flex XMLSocket doesn't know or care what language the program listening on the other was written in. A socket connection is like a call connected between two telephones - if no-one at either end talks or neither end

Re: [flexcoders] Re: Socket communications in Flex

2009-02-14 Thread Weyert de Boer
Have a look at: http://www.innerfuse.biz/dropbox/WebDU 2007 Leveraging Apollo Runtime.zip Shows how you can make a socket server in Ruby and talk with a Bluetooth GPS device.