Tagged Questions
Asynchronous sockets allow for multiple simultaneous non-blocking socket connections.
8
votes
2answers
3k views
AsyncUdpSocket how to use receive
I am trying to get a program for iPhone running on the simulator. My problem is with receiving UDP data. I use asyncUdpSocket. If I make a socket and use sendData:(NSData) toHost:,... well it works ...
8
votes
5answers
2k views
C# UDP Socket: Get receiver address
I have an asynchronous UDP server class with a socket bound on IPAddress.Any, and I'd like to know which IPAddress the received packet was sent to (...or received on). It seems that I can't just use ...
7
votes
1answer
118 views
Visual Studio 2010 doesn’t stop at an unhandled exception inside a Socket.BeginReceive() callback - why?
Normally, when the debugger is attached, Visual Studio 2010 stops at an unhandled exception even if the Exceptions dialog doesn’t have the tickmark for the exception type in the “Thrown” column. The ...
7
votes
3answers
1k views
Java Non-Blocking and Asynchronous IO with NIO & NIO.2 (JSR203) - Reactor/Proactor Implementations
So here I am reading one of my favorite software pattern books (Pattern-Oriented Software Architecture - Patterns for Concurrent and Networked Objects), specifically the sections on Proactor/Reactor ...
6
votes
3answers
331 views
.NET question about asynchronous socket operations and message framing
I've been looking everywhere for examples on how to deal with TCP message framing. I see many examples where NetworkStreams are passed into a StreamReader or StreamWriter object and then use ReadLine ...
6
votes
2answers
423 views
Unhandled Exception error from a callback c#
I have a 3 tier architecture and send some data in the transport layer (TCP Client) using tcp sockets is this methods asynchronously using BeginSend method.
public void TransportData(Stream stream)
{
...
5
votes
1answer
227 views
What's the difference between async and nonblocking in unix socket?
I'm seeing such code in nginx:
if(fcntl(ngx_processes[s].channel[0], F_SETFL, fcntl(s, F_GETFL) | O_NONBLOCK) == -1) {
...
if (ioctl(ngx_processes[s].channel[0], FIOASYNC, &on) == -1) {
...
...
4
votes
3answers
79 views
Waiting on a condition (pthread_cond_wait) and a socket change (select) simultaneously
I'm writing a POSIX compatible multi-threaded server in c/c++ that must be able to accept, read from, and write to a large number of connections asynchronously. The server has several worker threads ...
4
votes
1answer
112 views
Tuning buffer length for reading small data from NetworkStream
How to fine tune the bufferSize while reading small data from the TcpClient/NetworkStrem?
If the bufferSize is big like 1024, 4096 the Read/BeginRead blocks.
If I set the bufferSize to 16, 32 it works ...
4
votes
1answer
113 views
Must call EndRead() in ALL cases?
Related to asynchronous IO using a (bidirectional) NetworkStream, MSDN says that "EndRead must be called once for every call to BeginRead."
Is this true even for cases where the EndRead() will throw ...
4
votes
0answers
481 views
Using AsyncSocket with secondary threads on the iPhone
I use AsyncSocket on the iPhone to communicate with a server. AsyncSocket is based on run loops but my app is based on threads. That means, I start a new thread to write data and wait until a response ...
3
votes
1answer
100 views
Fast Repeat TakeWhile causes infinite loop. (Rx)
How can I make the following observable repeat until stream.DataAvailable is false?
Currently it looks like it never stops.
AsyncReadChunk and Observable.Return inside the Defer section make OnNext ...
3
votes
0answers
132 views
AsyncSocket TLS HOWTO
I am pretty new to AsyncSocket and I'm desperately trying to get it to connect to Facebook chat server (chat.facebook.com) on port 5222 (xmpp), and it does it very well. it used to work fine before ...
3
votes
1answer
246 views
3
votes
1answer
340 views
.NETCF Async TCP socket graceful shutdown issue
I have a TCP client/server app to communicate with a Windows CE device over an ActiveSync connection. Both the client and server utilize Asynchronous sockets (i.e. the Socket.Begin* and Socket.End* ...
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
1answer
448 views
C# Async Webserver - how to send data to client
This might be a piece of cake for any experienced C# developer
What you see here is a sample Asynchronous webserver
using System;
using System.Text;
using System.Net;
using System.Net.Sockets;
using ...
3
votes
2answers
265 views
Why is Objective-C converting JSON values to a hash of ASCII character codes?
We are building an iPhone chat application.
When sending from the browser to the iPhone a JSON chat message:
{"content":"Hi"}
The iPhone receives:
{"content":{"0":72,"1":105,"length":2}}
...
3
votes
2answers
316 views
How to implement voice chat in cocoa?
I have made a simple chat application using AsyncSocket class where client nodes can send message to each other via chat server application.
I want to integrate voice chat functionality in it but I ...
2
votes
2answers
977 views
CocoaAsyncSocket's read and write delegates are not firing & code organization
I'm trying to do the following with a modified version of the echo server example that comes with the cocoaasyncsocket library:
1) open a connection to a python script acting as a server
2) send ...
2
votes
1answer
244 views
iOS SDK: How can I check if a port is open?
I have nothing found yet how I can check if a port is open or not!? I tried to realize it with AsyncSocket but it returns always TRUE although I reject all connections to that port on my server.
...
2
votes
1answer
452 views
How to handle timeout in Async Socket?
I have a code that using async socket to send message to client and expecting response from it. If the client did not reply in a specified internal it will considers timeout. Some of the article in ...
2
votes
4answers
387 views
Only one write() call sends data over socket connection
First stackoverflow question! I've searched...I promise. I haven't found any answers to my predicament. I have...a severely aggravating problem to say the least. To make a very long story short, I am ...
2
votes
1answer
496 views
Objective C, Best way to implement a chat application (socket)
I am trying to develop a chat application. I used AsyncSocket and followed tutorial. So now I can receive a text msg from telnet using localhost.
But I don't know how to handle multiple chats. Lets ...
2
votes
2answers
1k views
C# Async TCP Server overkill?
This is really an implementation question so I feel it's best to start with my specific case.
I've got a C# server that listens for TCP connections asynchronously from mobile clients. When a mobile ...
2
votes
1answer
546 views
boost::asio fails to close TCP connection cleanly
I am trying to implement a simple HTTP server. I am able to send the HTTP response to clients but the issue is that on Firefox I get "Connection Reset" error. IE too fails, while Chrome works ...
2
votes
1answer
645 views
C# Socket.BeginSend AsyncCallback behavior (timeout?)
Here is a scenario with asynchronous sockets that I dont't quite understand... I have 2 Tcp sockets, a client socket & a server socket. My server socket is bound & listening on a port.
My ...
2
votes
1answer
214 views
Help eliminate loop in asynchronous receiver due to content-length = 0 in HTTP response
Some web servers return content-length set to zero in the HTTP response headers. I'd like a deterministic and performant solution for receiving all the data in that situation.
URL known to exhibit ...
2
votes
1answer
353 views
Socket Server: Manage client connections
I'm wondering how to implement a client management for a socket server.
I'm having the case where I would like to know whether the client has just reconnected or if it's a new client. I know, it ...
2
votes
3answers
2k views
Cocoa, Stomp, ActiveMQ, iPhone, SSL, & AsyncSocket Help Needed
Well, maybe not with all 4 things, but here's my situation:
I have an ActiveMQ backend (running on my desktop Mac). It's a stock Apache ActiveMQ server I have which I am basically using as an echo ...
1
vote
0answers
60 views
.NET Sockets suddenly stopped working
I wrote a TCP Socket server and client a few months ago in my current project and they've been working flawlessly since then. But as of today I simply cannot get a connection between two machines that ...
1
vote
2answers
63 views
Send object to server in C#
I have a client / server application made with C#. Its working fine when i send Strings of messages to the server. But i need to send (simple) objects to the server instead of Strings. But i'm not ...
1
vote
2answers
79 views
Why does Visual Studio exit debugging mode after this statement?
I am trying to debug some async code and when I try to step through the lines of code in the debugger, everything goes fine until it reaches Line 18 in the snippet below. After it runs that line, the ...
1
vote
0answers
116 views
C# asynchronous socket, missing packet on server overload
I have written an asynchronous server using .Net socket, and when this server is overloaded (receiving a lot of data, file for example), all the packets are not received by the server.
If I increase ...
1
vote
2answers
86 views
Could I have some advice on basic Asynchronous Socket Programming in C#?
I've developing (or trying to, anyway) a program that uses Asynchronous Socket to, supposedly, pass strings to and fro the server and client, at any time.
This program requires no more than one ...
1
vote
1answer
48 views
how to use boost::asio::async_read_until with an external memory address as a buffer
async_read_until expects a basic_streambuf into which the data will be read. I don't want to allocate additional memory, but using a memory address (from a specified interface that I'm not allowed to ...
1
vote
1answer
81 views
Should I call socket::connect() from a handler invoked by resolver::async_resolve()?
I'm using a wrapper class to represent a network connection. My implementation contains a method, called async_connect(), which resolves a host/service and connects to a related endpoint (if ...
1
vote
2answers
50 views
testing socket communication offline as a simulation
Whenever having to test my app which basically is some kind of communication via sockets with external devices, the device itself has to be available and connected.
I would like to ask,if there is a ...
1
vote
1answer
79 views
How to send mail using PHP as fast as possible for mobile device api?
I'm trying to implement a fast way to send mails from a php script which is a mobile API for mobile devices which access the API via GPRS, Edge or 3G. It should be as fast as possible so that the user ...
1
vote
1answer
118 views
What's the difference between FIONBIO and FIOASYNC for socket?
It seems both options can be used to make a socket nonblocking/asynchronous ?
Or what's the difference between nonblocking and asynchronous?
1
vote
3answers
135 views
Socket programming: The Server
Ok so I've been trying to teach myself some socket programming. I wrote myself a little C# application with an async server and I understand most of it, except for the following:
So the server has a ...
1
vote
3answers
1k views
GCDAsyncSocket - not receiving data - AsyncSocket works ok
I made an iPhone client connect to a server using GCDAsyncSocket. The server is running .Net on a Windows server. The connect is good and it sends data well too.
I then tell the client to go into ...
1
vote
1answer
303 views
Using async sockets on Windows Server 2008 R2 causes 100% CPU usage
I have a fairly generic C# socket server that uses the asynchronous methods of the socket classes - BeginAccept(), BeginReceive(), etc. This server has been working great for the last 4 years at many ...
1
vote
2answers
220 views
AsyncUDPSocket broken pipe after locking phone with application suspended in background
I'm using the AsyncUDPSocket third party library in my iPhone app and for the most part it works great. I have a singleton instance of an AsyncUDPSocket that I use for all my network traffic. My app ...
1
vote
0answers
240 views
asynchronous method call inside the callback/NSthread
i have get class files(AsyncUdpSocket.h & AsyncUdpSocket.m) from http://code.google.com/p/cocoaasyncsocket/
using asynudpsocket class ,i can able to send UDP data ...
1
vote
0answers
208 views
AsyncSocket just read once?
I make simple client server with no CLRFdata, but i give header of message with lenght message self. this is my code :
This method send data
- (void)sendMessage:(NSString *)message {
unsigned char ...
1
vote
1answer
502 views
Connecting to a server with NSNetService but failing- automatic socket disconnect?
NEW SIMPLER VERSION OF PROBLEM:
I'm trying to connect to and communicate with a Bonjour device using an Objective-C client and I'm having trouble resolving the service (server). Originally I tried to ...
1
vote
1answer
66 views
Silverlight tcp socket never calls back the second time, unless I put a breakpoint on the connectasync call
I have a method that attempts to connect. I'm currently testing connection failure. If it fails, the user is offered a retry button. If I press it, m_tcpSocket.ConnectAsync(m_connectArgs); is ...
1
vote
1answer
366 views
AsyncSocket can connect to java Socket server but can't write data
every time i call upLoad, Java console prints accept, but nothing else, is the data transfered?
I changed the writedata call to didConnectToHost, and now the client say that the data has been ...
1
vote
1answer
432 views
asyncsocket “connectToHost” always succeeds and never returns a fail
I am creating a socket connection with objective C, using asyncsocket. I do this using the "connectToHost" method. I am trying to handle the case where the socket connection fails. "connectToHost" ...