Asynchronous sockets allow for multiple simultaneous non-blocking socket connections.

learn more… | top users | synonyms

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
0answers
56 views

Receiving strings and images on the same socket with ICS v8

I was working on a small client/server project, and I decided to try to switch it over to using ICS. Unfortunately, I have no experience with ICS, and very little experience with sockets in general. ...
0
votes
0answers
36 views

wp7 socket access from UI thread and background agent

I have a problem in concurrent access to socket: I have a sort of messenger application, and I want to send some data thru the socket. Also on application launch I create a background agent that also ...
0
votes
1answer
32 views

Java Async I/O with NIO2: Does AsynchronousServerSocketChannel.accept give you an active AsynchronousSocketChannel

For server.accept I wrote a completion handler that has the parameters. When the handler is invoked via the accept method, does that mean the AsynchronousSocketChannel is now conneted? Or do I have ...
-1
votes
0answers
24 views

Using JMS to make socket connection ayschrorous [closed]

There is a basic socket programming i had written , where client will send an account number and server will respond with account details. To make this ashyncronous im planning to use JMS Queue. Since ...
-1
votes
0answers
47 views

Python socket programing using select

I have been asked to write a single program where the program sends udp packets and recieves udp packets using select in python.These upd packets contain any data(nummber string etc).I have to send ...
1
vote
1answer
72 views

asynchronous I/O multiplexing (socket and inter-thread)

I would like to have a Python thread wait either for data coming from one socket (serial port, TCP/IP, etc.), or for data coming from another thread. And I would like a portable Windows-and-Linux ...
0
votes
0answers
22 views

Connection in chat application with cyberoam

First I'm sorry about the question is not clear, Cybearoam is software used in my company, I don't know what technology it's used in. My network company can access facebook from 12h-13h, after that, ...
1
vote
0answers
67 views

use callback to allow multiple connections to socket?

I am trying to create a VB.Net server program that has an external link to process data. The server will wait on port 7878 for a request to be made from a client. When the server receives a request ...
0
votes
0answers
39 views

AvAudioRecorder record to AsyncSocket NSData

Hey everyone I am having quite a time trying to figure out what (should be) pretty straight forward. I have an open socket and I just want to pipe AAC audio data captured from the mic to it. It seems ...
0
votes
0answers
57 views

ios Read data at fast rate in UDP

i am establishing a UDP connection using GCDAsyncSocket(ios device). Everything working fine and im able to send and receive messages, my problem is that i want to exchange data fast. I can send ...
0
votes
1answer
145 views

Python - Asyncore (client) socket - Can not determaine connection status

For some reason, self.connected of the asyncore.dispatcher class doesn't consider my socket to be connected on the client side. The server side sees the socket as connected and treats it as such, but ...
0
votes
2answers
93 views

Understanding ManualResetEvent in asynchronous server socket

Socket SocketSrv; public static ManualResetEvent Done = new ManualResetEvent(false); IPEndPoint IPP = new IPEndPoint(IPAddress.Any, 1234); void Listening() { SocketSrv = new ...
0
votes
1answer
83 views

receving large file using Windows Phone socket

I am working on sendig file from desktop application to windows phone application using socket. I have developed desktop socket server app and windows phone app (socket client), both are working ...
1
vote
1answer
91 views

Client Side IPEndPoint can't use IPAddress.Any?

I have been learning some socket programming, i have created an asynchornous server which is only listen and return the data. but i have a problem here, I use IPEndPoint on server with ...
2
votes
0answers
38 views

Getting a message of asynchronous GetReceiveData method

I have in MainPage: private void AcceptCallBack(IAsyncResult ar) { try { ((Service1)ar.AsyncState).EndAccept(ar); } catch { } } And in service1: private void ...
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

Why doesn't AutoResetEvent work BeginSend?

I've written a serverside application that manages many clients using BeginSend() and EndSend() I'm struggling for the past hours to make sure no consequent BeginSend() calls are called for the same ...
0
votes
0answers
64 views

How to make sure there are no two subsequent BeginSend()s?

I've written a server side application that should manage many clients. Everything is done asynchronously using BeginSend() and EndSend() methods. In some cases I need to send two subsequent requests ...
1
vote
1answer
185 views

Issue with ASIO io_service to run multiple time

In my question. I am a client and my purpose is only to write at server whenever required not everytime. I have one singleton class(Caller class) in which I call my client program(Client) to write ...
0
votes
0answers
97 views

TLS connection b/w Objective-C client and Java server

What's the best option of establishing a TLS secure socket connection between a Objective-C (iOS 6) client and Java Server? I've heard Thrift, but it has less tutorial and documentation. Anyone had ...
0
votes
1answer
36 views

Where can I find a non-ARC version of CocoaAsyncSocket?

I have an application that I have used AsyncSocket with success, but the application is required to run on 32-bit Mac systems so I'd like a non-ARC version of AsyncSocket. In my searching I am finding ...
1
vote
1answer
120 views

CSocket Client-Server String recieved is chinese looking characters

Simple CAsyncSocket Server and client program. Right now I'm testing locally using tera term vt. So I type a word in TT and it gets sent to my program but the string I receive is just a bunch of ...
2
votes
1answer
95 views

I just want my client to say hello to my server but can't

OK this is such a simple problem but its driving me so mad that I have had to drink a whole jug of water to calm myself down. EDIT Added c# in the tag too, a c# answer will be fine too. Basically ...
0
votes
1answer
75 views

GWT server<->client message bus?

Errai provides one, for example. Are there any other solutions providing event bus implementations that allow the client to receive realtime events from the server and share client events with the ...
1
vote
0answers
63 views

Efficient Server Socket programming

I've implemented an efficient windows server using IO completion ports, and now I need to implement a new, cross platform one - Probably using select My design in Windows is based on X worker threads ...
3
votes
3answers
118 views

High CPU and Memory Consumption on using boost::asio async_read_some

I have made a server that reads data from client and I am using boost::asio async_read_some for reading data, and I have made one handler function and here _ioService->poll() will run event processing ...
0
votes
2answers
98 views

Read whole html string Asyncsocket iOS

Hi I want to read from a server the whole html not only the request like "HTTP/1.1 200 OK" I mean the html code too. But I dont know how. I am using the Asyncsocket library from ...
0
votes
0answers
55 views

Pros and Cons of preallocating a large byte array for sockets, using the SendAsync/ReceiveAsync paradigm

The way the SendAsync/ReceiveAsync paradigm works is you have SocketAsyncEventArgs objects, which handle the state for an operation. Importantly, this includes a .UserToken object which can be used to ...
0
votes
0answers
104 views

non-blocking socket in kernel space, kernel crash

I would like to implement non-blocking socket in kernel space. I have done that successfully in userspace with setting flags to socket: int on = 1; ioctl(socket, FIONBIO, &on); Hovewer while ...
1
vote
1answer
378 views

sockets using libev

Iam looking to write a socket program based on libev. I noticed that several examples as stated in https://github.com/coolaj86/libev-examples/blob/master/src/unix-echo-server.c use the call backs ...
2
votes
1answer
173 views

Assync TCP Server code example analysis

I'm using the following code to create an assyncronous TCP server: private void SetupServerSocket() { var myEndpoint = new IPEndPoint(IPAddress.Any, _port); _serverSocket = new ...
0
votes
2answers
678 views

How to keep the android client connected to the server even on activity changes and send data to server?

I initially implemented an async task in my activity which sends data to the server. But when i changed activities the connection was lost. To avoid this my approach was to implement a service that ...
0
votes
1answer
96 views

How to cleanup sockets after mono-process crashes?

I am creating a chat server in mono that should be able to have many sockets open. Before deciding on the architecture, I am doing a load test with mono. Just for a test, I created a small mono-server ...
0
votes
0answers
90 views

VB.Net socket programming

I have a problem and need your urgent help.. I work for a hospital that have purchased a new medical equipment which connects via tcp/ip sockets to get data that is sent out by the medical instrument. ...
0
votes
1answer
136 views

Send socket from C# to iOS app

I'm having some problems sending a string from my C# app to my iOS app. I tried to send the data using a socket from C# to SocketTest and it receives, I've sent the data using a socket from Socktest ...
0
votes
0answers
87 views

Creating a UDP Muliticast Listener in AsyncTask

I currently have an app with a separate class for an async network task that sends out data after it is executed from the main activity button with an onClickListener. What I need to do now is: • ...
1
vote
1answer
247 views

SocketAsyncEventArgs UDP Server Buffer is occassionally full of zeroes

I have a similar issue described in SocketAsyncEventArgs buffer is full of zeroes in which my implementation of a SocketAsyncEventArgs UDP server receives packets which have: ...
0
votes
1answer
133 views

update SQLite data from tablet to mobile in android

I am creating an app that is for my grandmother as she suffers from Alzheimer. I would like to have a feature where I could remotely update the schedules from my mobile to her tablet .Now I am ...
0
votes
0answers
112 views

Correct way of avoiding ObjectDisposedException with SocketAsyncEventArgs

I am creating a TCP Server using SocketAsyncEventArgs and have a accept method similar to this: private void BeginAccept(SocketAsyncEventArgs args) { if (args == null) { ...
3
votes
2answers
234 views

Sync core data between iOS devices over wifi?

I want to sync Core Data between iOS devices over wifi. I know how to make a connection with ASyncSockets, but I'm not sure of the next step - syncing the core data. I'm aware of the ZSync project ...
0
votes
2answers
165 views

Async Sockets work Locally but not over internet

It is working really good except sometimes (noticed on vista only so far) I am trying to create a robust Async Socket.BeginReceive process. Currently all I do is connect to the server, server ...
1
vote
1answer
200 views

c# Async Socket.BeginSendFile only sends two files async

I am puzzled at why my Socket.BeginSendFile only sends two files async at a time. I have tested on different computer with the same results. Socket.BeginSend seems to send all three at once as ...
0
votes
1answer
234 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
255 views

boost::asio::async_read_some run in parent thread

I am writing an efficient socket server. The intention is good overall throughput. I use the main thread as the listener. It async_accept a client and add the socket to a queue. There's a dispatcher ...
0
votes
0answers
81 views

How to Fix StackOverFlow Errors occuring in “BeginSend” command in VB.NET?

I am trying to make a Socket Program. But it happens StackOverFlow can not be catched by { try catch } sentence. I cant imagine why it happens. Here is full code that I copied and modified. the ...
0
votes
0answers
49 views

Library/framework to build highly scalable server on WIn2k8 (x64)

Can someone please point me to robust library/framework which I can use to build server on Win2k8(x64) through C/C++ ? The server is supposed to handle maximum possible incoming socket connections. ...
0
votes
0answers
183 views

how to fix System.AccessViolationException in ChilkatSocket AsyncConnection

Below is my Chilkat Sockets Server and client code which on running giving me below strange error, kindly help me to resolve it, both client and server are running on the same machine. Server Code: ...
0
votes
1answer
203 views

Properly Disconnecting and Reconnecting an Asynchronous Connection

I am currently developing a file sharing application using asynchronous communication in VB.Net. I successfully coded a simple connection between the client and the server. But, I am currently having ...
4
votes
2answers
206 views

Windows Phone camera feed over UDP is “horribly” slow

I have been working on a private project where i wanted to learn how to program on a windows phone, and at a point i started to fiddle with sockets and the camera, and a great idea came to mind video ...

1 2 3 4 5 7