1
vote
4answers
64 views
Network Communication between a java socket (server) and a C++ socket (client)
I know this must be a pretty common problem, but I haven't been able to find a definitive answer on how to do it.
First, assume we have a java server that accepts queries such as (I've just put the …
0
votes
0answers
14 views
can a Flash app running in browsser connect to localhost to get data from another app?
it seems that Flash was supposed to run in a sandbox in the browser. But, if Flash can get data from a remote server, can it similarly get data from localhost IP on the same machine? In other words, …
0
votes
2answers
40 views
reading from input stream of socket without busy waiting in JAVA
i want to read from input stream when i connect to a server socket.
but there may exist some delays between messages how can i read from input stream without busy loop ?
string mes = …
1
vote
1answer
44 views
Is there a Java-applet implementation of HTML5 WebSockets?
Is there a Java-applet implementation of HTML5 WebSockets?
I'd like to use WebSockets for a new project, and provide a backward compatible implementation of WebSockets (for all current non-dev …
0
votes
1answer
23 views
Checking whether SendAsync has finished sending
As in the simplified code below, is checking that SendAsync() has finished transmitting all intended bytes in the buffer the correct thing to do? Or is that redundant? This is for a TCP connection …
0
votes
1answer
30 views
BSD socket compatible wrapper around winsock?
I'm attempting to port a Linux application to Windows. The application isn't too complex, using all fairly standard code, with few external dependencies. The main dependencies are libelf (which …
0
votes
1answer
38 views
sendfile() completion to non-blocking socket
Hi,
In my program, I need to check the completion of a sendfile() operation in a non-blocking socket. How can that be done?
After checking the documentation and searching on internet, I couldn't …
0
votes
6answers
158 views
How to add web-services as a layer on the top of sockets written in C/C++?
Is it possible to exchange web-services over socket programs written in C/C++?
The data to exchange are in the from of xml/soap message.
0
votes
2answers
71 views
how to pass xml schema through sockets
Hi
Could someone please help and tell me if there is a possibility to pass an xml schema through a socket program written in C/C++ ? here is an example:
---- c/C++ ----
...
struct zone { // as an …
3
votes
6answers
131 views
C# send structure objects through socket
i have done a bit of reading in client/server programming in c#. i am familiar enough with this process to ask the following question:
how do i transmit structure objects through tcp/ip instead of …
0
votes
2answers
18 views
How could I know that BeginAcceptSocket callback needs IAsyncResult parameter?
Hi,
I am curious where can I find out that AcceptClient as a callback of BeginAcceptSocket needs to have IAsyncResult as a parameter. In the MSDN article there is only mentioned that return value of …
0
votes
5answers
118 views
how to exchange data in form of XML through sockets in C/C++
Hi,
Could someone please help and provide me links where I can find materials/examples describing how to exchange data in the form of XML schemas between socket programs written in C/C++?
Actually I …
0
votes
3answers
53 views
Cygwin in Visual Studio
I'm trying to port an old program I wrote for class from KDev in Ubuntu to Windows Visual Studio 2008 using Cygwin as a personal learning exercise. I have the include path configured to include …
0
votes
2answers
33 views
How to get the LAN IP that a socket is sending (linux)
Hello,
I need some code to get the address of the socket i just created (to filter out packets originating from localhost on a multicast network)
this:
socket.gethostbyname(socket.gethostname())
…
1
vote
1answer
38 views
EAGAIN error for accept on blocking socket
I am using a blocking socket to accept connection. I rarely get this error which makes it hard to debug. The accept returns with EAGAIN error. How can that be for a blocking socket?
