This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
So the code is really as simple as it gets int len = 0x00000097; Socket sock = new Socket(host, port); DataOutputStream out = new DataOutputStream(sock.getOutputStream()); out.write(i); out.flush(); out.write(xml_doc); out.flush(); So the idea is that the host is expecting an xml form but its length before hand. The form is a [...] read more
I am running a development server on a fairly old version of CentOS 5. This server has been live almost constantly for the past five years ago, so has been pretty stable. A while ago, it crashed during normal operation. I restarted it and it crashed again after a few [...] read more