User Profile
Collapse
-
Edit jar file
I got a jar file, it's an applet. I'd like to remove a button on it. But this jar is signed and verified. I tried many ways, but cannot update this jar file. Could you help me please? Thanks in advance! -
Socket: C++ Server reads text wrongly from Java client
I have a client in Java and a server in C++ (using wsock32.lib). The client is very simple, just sends a text to server. I have the server loop to receive a message from client, like this:
...Code:while(1){ int nret = 0; nret = recv(m_socket,buffer,100,0); if(nret == SOCKET_ERROR) { nret = WSAGetLastError(); //throw error }
No activity results to display
Show More