Tagged Questions
2
votes
1answer
277 views
communication between winsock and java socket
I'm trying to build a client/server application with a java server on the one and a c++ client on the other side.
Client:
while(true)
{
sock = con.connectToServer(argv[2], port);
...
1
vote
2answers
275 views
C++ TCP Winsock Server receiving the same packet many times
I have written a very simple C++ server which I am connecting to from a Java application. The C++ server uses winsock2. I am sending UTF8 encoded numbers to the server from my client and on receipt ...
1
vote
1answer
216 views
Can anyone explain the socket throughput discrepancies experienced between Windows (7 Pro N) and Linux ( Ubuntu 12-04)
While evaluating 3rd party software (Java framework utilising NIO) we discovered that the throughput of the framework on Windows was about 50% of that on Linux.
Assuming that the there are some JVM ...
0
votes
4answers
510 views
C server and a java client. How to read the full string?
I've implemented a C server and a Java client which communicate to each other through TCP. The problem is when the client sends a string, the recv() call in C server just reads a character and returns ...
2
votes
2answers
363 views
Java Socket get unusable after exception
Problem
In a desktop network application upon sending data to DatagramSocket sometimes the exceptiption occur:
java.net.SocketException: No buffer space available (maximum connections reached?): ...
0
votes
2answers
65 views
I can't get more than one applet communicating with my Cpp server
For some reason when I connect one Java client to my Cpp server it works perfectly. But when another Java applet tries to connect in addition to the first, it does but it stops receiving data from the ...
0
votes
0answers
311 views
What is the difference in windows socket (winsock.dll) implementation between Windows XP and Windows 2k3?
Background: I have an URL with a valid host and port, and invalid path. Opening up a java.net.Socket on XP with a timeout of 0 (no timeout) fails immediately. The same code hangs indefinitely on ...
1
vote
3answers
2k views
Using Winsock “send” function in Java (or similar)
I have a feeling my problem is a bit strange, but here goes...
I have a C++ program (from another organization) that interacts with a camera connected to hardware via Ethernet using sockets. On the ...
1
vote
1answer
569 views
passing native winsock socket to java socket
I need to pass a native winsock socket created by C++ application to a library in my application that uses java.net.Socket to connect to a server.
This winsock appication already take care of ...
1
vote
1answer
327 views
Winsock only sending data at program close
I have a c++/windows program that receives data from another c++ program via a WM_COPYDATA message. It is then supposed to use Sockets/winsock to send this message on to a server written in Java. The ...
0
votes
2answers
1k views
xampp server and java client/server application
hiho,
i intend to develop just a litte network application, something like a chat. so i downloaded xampp for windows and installed it (also as service), mysql included. well, i started the apache ...
0
votes
1answer
288 views
Implementing Java's getResponseCode() in C?
If it's any help, there is also a similar class in C#'s WebRequest. Although I do not want it in java or .NET, i am wondering how to implement this in native C/C++ code (for windows).
for reference:
...