0
votes
0answers
13 views

Reading Partial Messages in NetworkStream Async Read Callback

We have a C# application that is communicating with a device over TCP/IP using a relatively simple protocol consisting of a series of messages, which have a fixed-size header and a variable length ...
0
votes
0answers
29 views

ASync Socket programmer

I'm having an issues with a new socket server. The program has a listener that receives requests from a client. It also has a async connection to another server. So when a request comes in it brokers ...
0
votes
1answer
27 views

vb.net server - multiple clients continually processing different information

I am looking for help with writing a server application to serve an updating text stream to clients. My requirements are as follows: I need to be able to have a client request information on server ...
0
votes
0answers
19 views

SocketAsync, can't reconnect to server

I have a problem with my Socketasync application, I have a server, and a client (the code below), everything with the communication works great except when the server application is closed, then the ...
0
votes
1answer
27 views

Convert java thread-based tcp socket server to javascript async tcp socket server

I am looking to convert a java thread-based tcp socket server to javascript-based (preferably nodejs) async tcp socket server. It's my app and now learning to nodejs. Thought it would be a good ...
1
vote
1answer
33 views

Python's TCPSocket vs. Asyncore

I created a simple Project with Python. It simply a server/client app. Python is server. I created this code for my server: import socketserver class MyTCPHandler(socketserver.BaseRequestHandler): ...
0
votes
1answer
64 views

Making udp socket non-blocking

I had been working on non-blocking udp socket. The code that I had developed generates a Window Message whenever there is any data to be read over the socket. Below is the code snippet: void ...
0
votes
2answers
173 views

C# WPF Application with TCP Socket and Multiple Threads

Recently, I have undertaken a project and I would like some help from the community with regards to how I can go about learning what I need to and in what order. I.e., this is less technical than ...
0
votes
3answers
42 views

When does a Stream EndRead Block the Callback

I am relatively new to using the Async pattern for stream reading and writing, and wondered if the answer to this question is so obvious it is not written anywhere explicitly: When calling a ...
0
votes
2answers
60 views

How can I get the amount of transferred bytes on asynchronous reading boost asio c++

As I've seen in Boost::asio the async read functions does not return the amount of bytes transferred but normal read functions does. How can I get the amount of bytes transferred when I use ...
0
votes
1answer
56 views

Writing to an AsynchronousSocketChannel and processing the data in an Event-based way

I'm trying to figure out how to send data between sockets in Java (this is part of a bigger project and I'll get back and answer my previous two questions related to that once I can resolve this..). ...
0
votes
2answers
82 views

I can't keep the client connected to the server or send anything after the first request made by the client

I can't keep the client connected to the server or send anything after the first request made by the client. And I know it is because I shutdown and close my socket at 'SendCallback' method, but else ...
0
votes
1answer
47 views

Sockets Winsock async blocking Read Write simultaneously

I have a client server arch and I am using blocking win sockets. I have a read and a write thread both on the server and on the client side. Say Client is waiting (blocked) on a read() call for ...
0
votes
1answer
445 views

Async TCP Server for multiple Clients

I've got an TCP Server that listens asynchronously for incoming connections. Everything works fine if just one client is connected. But if there are two or more connections, the Server doesn't get the ...
1
vote
2answers
151 views

How to determine stream end in a asynchronous socket server

I’m trying to write a asynchronous socket in c#. I read a lot of msdn articles and found those two examples: server, client. I understood the sample code an use this to implement my own async socket. ...
0
votes
1answer
47 views

Receive data of variable size in asynchronous socket communication in c#

I am making an application in c#.In that application I am using asynchronous socket communication.I have written code as byte[] byteData = new byte[1024]; clientSocket.BeginReceiveFrom(byteData, 0, ...
0
votes
2answers
61 views

Wait for server before receiving stream

I'm trying to implement a client-server socket system based on this MSDN article and I have it working. If I do this it works fine when the server is returning a string immediately. client.send(); ...
0
votes
1answer
55 views

C# ReceiveAsync response corrupt

Adding random data into response. This happens on all sites and pages, and for each particular page these data is fixed. Example: Connection: close X-Powered-By: PHP/5.4.11 1fb4 <!DOCTYPE ...
0
votes
1answer
377 views

Asynchronous Server Socket Example

I found this code of Asynchronous Server Socket Example and i am trying to get the data out from the thread where i receive info to update a textbox, but i can't just use a simple string. I've tried ...
3
votes
2answers
119 views

Boost Async UDP Client

I've read through the boost:asio documentation (which appears silent on async clients), and looked through here, but can't seem to find the forest for the trees here. I've got a simulation that has a ...
1
vote
1answer
120 views

asynchronous client interacting with form

I've searched for the better part of the day trying to figure this out, and I'm certain I'm missing a simple solution somewhere. I'm using an asynchronous socket client connection to monitor incoming ...
0
votes
0answers
47 views

is socketChannel.register() sychronized with close() method in java NIO?

in openJDK(jdk-6u23)this implementation of AbstractSelectableChannel.register() just like below: it first checks whether this channel is open or not.and then do the register work with reg lock.but ...
1
vote
1answer
37 views

Ruby sockets with nio4r select loop

Suppose I have a select loop with some open connections that I'm going to read from and I have state machines attached to each connection that are meant to parse some stuff coming over the wire and do ...
0
votes
0answers
76 views

How to know size of packet sent in SslStream Asynchronous Socket

How to know size of packet sent in SslStream Asynchronous Socket, since EndWrite doesn't have output? public void DataSent(IAsyncResult result) { SslStream stream = null; try ...
0
votes
1answer
74 views

What benefits do I gain using BeginAccept vs a dedicated thread that blocks on Accept using TcpListener?

I was trying to think if I would get any scalability benefits from using BeginAccept vs just blocking in a dedicated thread waiting for connections. Obviously, the individual clients are going to use ...
0
votes
1answer
47 views

How to reference class from AcceptCallBack method?

I have used the AcceptCallBack method found in this tutorial, which allows my app to receive files from another computer. When I try to use self in the AcceptCallBack method I get the following error ...
0
votes
2answers
212 views

What is the current standard of practice to implement an async socket client?

I look for the best practices to meet the following requirements: A framework that handles several client sockets in an asynchronous fashion Each incoming message protocol dictates that each message ...
0
votes
0answers
100 views

Async Socket vs Thread Sockets in IIS C#

I have an IIS application which communicates to and EXE over IPC using a local proxy Local proxy is implemented using standard socket programming that is: I have a thread that listens on a server ...
1
vote
1answer
105 views

Should I open and close sockets per transaction?

I have an async server running a slightly modified version of this MSDN article. This only allows one client to join at a time. My question is, is it okay for me to open and close the socket for ...
1
vote
1answer
623 views

Simple and fast async binary TCP socket server? [closed]

I'm looking for a simple and fast TCP socket server written in C#. It should be async (run alongside a WinForms app) and support async receiving/sending data to connected clients. I found the ...
0
votes
1answer
130 views

C++ CreateThread does not show result

i'm trying make asynchronous server listener with C++ i'm new in c++ but i must do this project , i'm web developer (PHP) but PHP can't make async connections + he is very poor language for big amount ...
0
votes
1answer
75 views

asynchronous socket connection in php

i'm trying write asynchronous socket listener code in php. but listener response answer only for first request and for other requests it only can receive packets without response (i'm checking with ...
0
votes
0answers
147 views

C# cancelling callbacks to BeginReceive instantaneously

I have seen similar questions about this on SO but can't figure out a working solution for my problem. I have an app where you basically use a TcpClient to connect to a remote server. There is a ...
-5
votes
1answer
81 views

buffer pool (asynchronous) [closed]

http://ahuwanya.net/blog/post/Buffer-Pooling-for-NET-Socket-Operations.aspx the site description for buffer pool(Asysnchrouns) now,how can do that? i have this code on parameter IAsyncResult i means ...
1
vote
1answer
144 views

NetworkStream.Write asynchronous issue

I have a problem with writing to a NetworkStream in C#. From MSDN i read: The Write method blocks until the requested number of bytes is sent or a SocketException is thrown Well - in my case, ...
1
vote
0answers
59 views

IOCP assync sock request

I'm walking through to what was been a hard college work. It is meant that we make a asynchronous http request with the usage of winsocks and IOCP. I've accomplished to bind asynchronous socket and ...
2
votes
2answers
332 views

async/await for high performance server applications?

the new async/await keywords in C# 5 look very promising but I read an article about the performance impact on those applications since the compiler will generate a quite complex state machine for ...
0
votes
1answer
106 views

How to use HttpWebRequest class for get real multiresponse

I have some logic issues with HttpWebRequest class. I using HttpWebRequest class from System.Net namespace, and when I doing this: while(true) { HttpWebRequest request = ...
1
vote
1answer
273 views

c# asynchronous server/client. Socket (on client side) disconnects “randomly”

this is my first post here so please be gentle =) I'm writing an asynchronuos server/client application for the management of a DB for my office, i tested it locally on my computer and it worked ...
0
votes
1answer
235 views

Async Socket listener sending data error

I'm creating a wrapper class around the Socket class. I have a connect async callback which does this: public void StartConnecting() { // Connect to a remote device. try { ...
0
votes
1answer
65 views

Should I use asynchronous MySQL queries?

Currently, I'm working on a socket server in Perl. The server accepts a client, and listens for an array of commands that sometimes may get or set values in a MySQL table (about 45 - 65% of the time, ...
1
vote
1answer
199 views

C# .Net Sockets Buffer Understanding

I'm trying to understand the use of a buffer in the socket scheme of things. Here is what I understand, and if someone could tell me if I'm correct or give feedback to where I might be ...
0
votes
1answer
142 views

Reading from NetworkStream corrupts the buffer

When reading data from NetworkStream with ReadUntilClosedObservable1, the returned data is corrupted like some blocks of read data overlap. However, when I read the data with ...
0
votes
3answers
192 views

Async socket reading

So I've started to muck around with sockets and asynchronously reading from them. First question is what is the difference between this: socket.BeginReceive(readResult.Buffer, 0, ...
2
votes
0answers
55 views

When does Socket.SendAsync complete synchronously? [duplicate]

Possible Duplicate: Socket.BeginSend does not complete synchronously despite plenty of buffer space Documentation for Socket.SendAsync says that its return value indicates either pending ...
1
vote
0answers
205 views

Socket.BeginSend does not complete synchronously despite plenty of buffer space

Why does Socket.BeginSend go asynchronous so quickly and so unpredictably? I know it's supposed to be asynchronous, but it can also complete immediately, in which case ...
0
votes
0answers
201 views

TCP Asynchronous socket slow on recieving server?

So my problem is the my server cannot recieve all the data the client is sending , which is causing virtually no packets to be getting recieved at all on server side. Basically the problem is I need ...
0
votes
1answer
230 views

Asynchronous TCP socket not working in C#

I keep getting this error: "The IAsyncResult object was not returned from the corresponding asynchonous method on this class. Parameter name : aysncResult. Line 105. This happens when I attempt to ...
2
votes
3answers
284 views

How to run blocking operation in Corona SDK Lua?

I'm new to LUA and I'm writing a tcp messaging library in LUA using Corona SDK. I stuck with a problem that socket reading operation hangs application UI even if it is run in coroutine. How I start ...
2
votes
2answers
233 views

Very simple python client/server working, but strange delays

I am trying to learn how to use sockets and a useful asynchronous backend. I've started in python with asyncore. After reading various online posts I've written a very simple chat server and ...

1 2 3 4 5 7