vote up 0 vote down star

I'm using the VNCsharp .NET control to attach to remote XenServer sessions using their VNC protocol. This control has been working great except for one when the VM's resolution is increased. For example from 800x600 to 1024x768. The console viewer in XenCenter handles this situation fine!

In that case, it appears as if the XenServer stops sending screen updates. However, I hooked up Wireshare and there are clearly still packets being sent to my client. I've checked to make sure that VNCsharp is handling the boundary conditions (stream changes) and that looks OK. If the resolution request times out then the screen will work again when Windows goes back to the original resolution.

If I drop the connection and reconnect then the client happily renders the new resolution.

I suspect that there is some reset signal that I'm missing. Is there something in the VNC RPC about this? If so, I could not find it.

Suggestions?

flag

0% accept rate
Welcome to Stack Overflow. This question is better suited for serverfault.com so I have voted to move it there. After five people vote, it will move automatically. – Greg Hewgill Oct 3 at 20:32
1  
Not sure about that. Isn't serverfault about IT management? This is a development issue. Using Wireshark, I've confirmed that XenServer is dropping the connection after a resize. I've also found that there is no timeout value set on the stream that VNCsharp uses. – RAVolt Oct 3 at 22:18

1 Answer

vote up 0 vote down

I resolved this problem, but it feels like a hack. I had to add a stream timeout (5 seconds) to the ReadByte call. The host drops the stream and the client does not detect it.

In order to keep the timeout from firing due to inactivity, I had to add a keepalive thread that sends a mouse move if the client is idle. I think there is a more elegant way to do the keep alive, but it's working for now.

link|flag

Your Answer

Get an OpenID
or

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