Question

Attempt to send a message through a socket failed with WinSock error 10038. After around 40 seconds, messages are received successfully from the same socket and subsequently the send() is also succeeding in the same socket. This behaviour has been witnessed in Windows Server 2003. Is this any known behaviour with WinSock and Windows Server 2003?

Was it helpful?

Solution

Winsock error 10038 means "An operation was attempted on something that is not a socket".

Little trick to find info about error codes (usefull for all sorts of windows error codes):

  • Open a command prompt
  • Type "net helpmsg 10038"

What language is your application written in? If it's C/C++, could it be that you are using an invalid socket handle?

OTHER TIPS

Thanks so much to a_mole for the idea of checking for layered winsock providers. We are having problems with some of our PC's and TimesTen DB. When we try to setup and ODBC Client DSN, we get a 10038 error. On examining the netsh output from the affected PC's, we found that they have Embassy Trust Suite by Wave Systems installed. Evidently Dell pre-installed this on some of their PC's. Anyway, on uninstalling this software, the problem has been solved.

Thanks again

Lou

Not a platform issue, I can guarantee that. Most likely, whatever variable you are using to access the socket handle is not thread-safe and is being used in the send() call before the actual socket is created.

Another possible cause is the presence of layered winsock providers. "netsh winsock show" at a cmd prompt will show you the installed providers and you can try removing any non-microsoft ones.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top