The tag has no wiki summary.

learn more… | top users | synonyms

-4
votes
1answer
29 views

multi client socket programming [closed]

I want to do multi-party computation. first party send data to second party, second party execute tasks on it and send the output to third party and so on. every party execute same task. I want to ...
2
votes
1answer
90 views

Cannot receive response from socket server when on localhost in AS3

I have problems with my flash AS3 project. I'm in my last stage of productions which is to deploy it to our webserver. But the problem is, once the SWF is deployed on web server (Web server is XAMPP) ...
1
vote
2answers
318 views

While reading from socket how to detect when the client is done sending the request?

I am now writing a http server and I am having problem with reading from a socket. My problem is that the inputStream from the client never ends and it keeps reading until the client is closed. I know ...
0
votes
0answers
137 views

Socket Serve API with Stencyl

Alright so I have asked this question in the PlayerIO forum, and the Stencyl Forum, and now I am bringing it to you. I am trying to use the Player I.O. socket server with Stenyl to make a multiplayer ...
1
vote
3answers
249 views

does Etherpad Lite transfer entire documents or only the diff?

I guess the question says it all. When working with very large documents, would it basically overwhelm the connection and ground to a halt or successfully manage using diffs?
0
votes
2answers
490 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
199 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 ...
1
vote
4answers
232 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 ...
0
votes
2answers
215 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. ...
1
vote
3answers
446 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 ...
6
votes
2answers
1k 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 ...
0
votes
2answers
528 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 ...
1
vote
2answers
3k 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. ...
0
votes
1answer
732 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 ...
1
vote
1answer
451 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
1answer
2k 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
74 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 ...
3
votes
2answers
1k 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 ...
0
votes
2answers
861 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
10
votes
10answers
10k 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 ...