vote up 0 vote down star

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?

flag
Have you tried on another platform (XP for example)? – paxdiablo Sep 19 '08 at 6:45
Is there an asynchronous create call that hasn't finished before you try to access the socket? – Brad Bruce Sep 19 '08 at 10:49

3 Answers

vote up 1 vote down check

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?

link|flag
vote up 0 vote down

Hi

Thanks for your response.

The WinSock application under concern is a well-behaved TCP Server application written using C++ (and ACE framework) that has been running robustly since the past 5, 6 years in Win2K Platform.

Recently this Service is implemented in Win2K3 platform and the mentioned buggy behaviour has happened just for once in the past 4 months of running.

The Socket handle seems to have become invalid just for a period of 30, 40 seconds. Besides attempting to identify any bugs in the code (where none has been found so far) I am wondering whether this could also be a platform issue.

Thanks!

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.