win32 socket, "Operation not supported"

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • David Konerding

    win32 socket, "Operation not supported"


    Hello,

    I have written an app which opens a TCP connection to a server and uses a protocol to communicate with it.
    Specifically, I've written a python IMD client for the molecular dynamics application 'NAMD' (do searches for IMD and NAMD if you want to learn more).

    The protocol is very simple: both ends of the TCP connection can send messages to the other side at any time; when data is
    available on a read socket, a full packet (with known size) is read in a blocking fashion from the socket.

    This is used, on the client side, to make requests of the molecular dynamics engine (such as "speed up", or "slow down", or "quit").
    The server side periodically sends updates on the state of the molecular dynamics engine (current step, atomic coords, etc).

    This all works fine on linux: I can connect, and send and receive messages as necessary.

    However, on Windows, I can connect and complete the initial handshake, and receive periodic updates, but when I try to send a message
    to the server, socket.send gets an "Operation not supported".

    From my reading of the win32 docs, the socket send call returns this in a couple of situations:
    when a two-way socket had one half shut down and the send would have used the shut down direction, or
    when an out of band message was sent on a socket type which does not support it (such as UDP).

    Neither of these situations are true. When I re-code the app in C, the problem doesn't occur. Anybody got some suggestions?
    (PS: the socket I/O is set to blocking, and the Nagle algorithm is disabled).

    Dave
  • Dave Brueck

    #2
    Re: win32 socket, "Operat ion not supported"

    David wrote:[color=blue]
    > I have written an app which opens a TCP connection to a server and uses a[/color]
    protocol to communicate with it.[color=blue]
    > Specifically, I've written a python IMD client for the molecular dynamics[/color]
    application 'NAMD' (do searches for[color=blue]
    > IMD and NAMD if you want to learn more).
    >
    > The protocol is very simple: both ends of the TCP connection can send[/color]
    messages to the other side at any time; when data is[color=blue]
    > available on a read socket, a full packet (with known size) is read in a[/color]
    blocking fashion from the socket.

    Are you doing a select or poll on the socket to ensure the read won't block?
    (not relevent to your problem, just trying to understand your program)
    [color=blue]
    > However, on Windows, I can connect and complete the initial handshake, and[/color]
    receive periodic updates, but when I try to[color=blue]
    >send a message
    > to the server, socket.send gets an "Operation not supported".
    >[color=green]
    > >From my reading of the win32 docs, the socket send call returns this in a[/color][/color]
    couple of situations:[color=blue]
    > when a two-way socket had one half shut down and the send would have used the[/color]
    shut down direction, or[color=blue]
    > when an out of band message was sent on a socket type which does not support[/color]
    it (such as UDP).[color=blue]
    >
    > Neither of these situations are true. When I re-code the app in C, the[/color]
    problem doesn't occur. Anybody got some suggestions?[color=blue]
    > (PS: the socket I/O is set to blocking, and the Nagle algorithm is disabled).[/color]

    Could you send a stripped-down version of the Python code? If nothing else,
    other Windows users can try it out too and report back their results.

    -Dave


    Comment

    • Thomas Heller

      #3
      Re: win32 socket, "Operat ion not supported"

      David Konerding <dek@compbio.be rkeley.edu> writes:
      [color=blue]
      > Hello,
      >
      > I have written an app which opens a TCP connection to a server and
      > uses a protocol to communicate with it. Specifically, I've written a
      > python IMD client for the molecular dynamics application 'NAMD' (do
      > searches for IMD and NAMD if you want to learn more).
      >
      > The protocol is very simple: both ends of the TCP connection can send
      > messages to the other side at any time; when data is available on a
      > read socket, a full packet (with known size) is read in a blocking
      > fashion from the socket.
      >
      > This is used, on the client side, to make requests of the molecular
      > dynamics engine (such as "speed up", or "slow down", or "quit"). The
      > server side periodically sends updates on the state of the molecular
      > dynamics engine (current step, atomic coords, etc).
      >
      > This all works fine on linux: I can connect, and send and receive
      > messages as necessary.
      >
      > However, on Windows, I can connect and complete the initial handshake,
      > and receive periodic updates, but when I try to send a message to the
      > server, socket.send gets an "Operation not supported".
      >
      > From my reading of the win32 docs, the socket send call returns this
      > in a couple of situations: when a two-way socket had one half shut
      > down and the send would have used the shut down direction, or when an
      > out of band message was sent on a socket type which does not support
      > it (such as UDP).
      >
      > Neither of these situations are true. When I re-code the app in C,
      > the problem doesn't occur. Anybody got some suggestions? (PS: the
      > socket I/O is set to blocking, and the Nagle algorithm is disabled).[/color]

      I have no idea, and if it works in C it should also work in Python ;-).

      OTOH, the approach you take sounds a little strange - if you communicate
      with fixed size packets wouldn't UDP datagrams fit better? This would
      IIUC also remove the requirement to disable the nagle algo.

      Thomas

      Comment

      Working...