Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
10answers
8k views

Alternatives to Flash Media Server for multiplayer game development

I've used Flash Media Server to create multiplayer flash games, but the cost of deploying a FMS application seems rather high. Are there good alternatives, open source or not, that I should look into ...
3
votes
2answers
441 views

How does an asynchronous socket server work?

I should state that I'm not asking about specific implementation details (yet), but just a general overview of what's going on. I understand the basic concept behind a socket, and need clarification ...
3
votes
2answers
714 views

java socket server, client detect server has died

If I kill the Socket Server process, my Socket client process does not receive any errors, it continues to loop forever on the following code: public void run() { while(readData) { String ...
1
vote
4answers
59 views

My Server/Listener lacks True Grit

My Server/Listener has ADD or no stamina; what is the antidote or prodote? The app serves as both ends of a socket communication. It seems to work fine for the first message (I enter "Bla" in ...
1
vote
2answers
1k views

Explain basic PHP Socket server code

Hi so I'm trying to lurn how to make a chat with a socket server. I noticed everybody uses the same code (ripoff from the zend developer zone). The problem is no one really explains how it works. ...
1
vote
1answer
322 views

Python: socket server framework like Tcl “socket -server”

I'm looking to reimplement some Tcl code that uses the socket -server construct [1]. What's the best option in Python for a small, industrial strength multi-user network-based server that includes ...
0
votes
2answers
25 views

*nix & C++ writing a non-blocking socket server

I'm experiencing some issues with rewriting my blocking socket server to a non-blocking version. Actually, I can't seem to even get socket connected anymore, I've been googling for the most of today, ...
0
votes
1answer
46 views

How to Listen for Socket on high numbered port

My chat server wasn't working on port 6667 (a common irc chat server port), so I switched it to port 844 and it works fine now. I had my firewall disabled, but something was still preventing remote ...
0
votes
2answers
41 views

Writing a server that queues tasks

I'm writing a server in python that needs to take requests from clients, queue the requests, execute them one at a time, then tell the clients that their particular request has been processed. ...
0
votes
3answers
170 views

Which is the best way to send data in a client-server App using Sockets (Java)?

Hy, what i am trying to do is an Swing App(using sockets) on the client side that does something , and another App for the server(using serverSocket) which does all the database work according to the ...
0
votes
2answers
436 views

Javascript to socket server conneciton

I wanted to create a web chat. It was suggested that i use Php Socket Servers. I've made one and they function well with a telnet client. What i find myself bamboozled by is how to get that data to ...
0
votes
1answer
385 views

Handshake between a socket server and Flash AS3

What's an example of a simple handshake between a php socket server and flash? A test I can run command line would be ideal, since I don't have a server for this experiment. I'm need a good example ...
0
votes
1answer
1k views

Multi-player server for iPhone application, using device as socket server

I'm working on a multiplayer iPhone application that allows up to 6 users to connect and play in "real time." I've been looking at hosted and non-hosted socket servers (SmartFox, ElectroServer, ...
0
votes
2answers
69 views

Service with wide API organizational & techincal questions

Here are some task details: The key functionality of service is Java socket-server (based on Red5. I know it might be overkill, but it makes me confident in future) on unix-platform (FreeBSD or ...
0
votes
2answers
497 views

Simple socket server that can send raw messsages that I type in?

Does a simple socket server exists that sends any message I want to send to all clients? I need to do this to test a socket client. And FAFAIK Putty can't do this. Thanks, Myth