danieleteti / delphistompclient

STOMP client for Embarcadero Delphi and FreePascal.
141 stars 64 forks source link

Delayed messages with Indy Socket #8

Open jonwakingup opened 8 years ago

jonwakingup commented 8 years ago

Hi,

I'm using the StompClient to connect to an Oracle OpenMQ JMS. Every now and again (a few times a day) a message on an incoming queue appears to get stuck and does not arrive at the listening application - until it is "pushed through" by the subsequent message.

The problem is particularly visible with a heartbeat message that arrives once a minute. Every now and again there is a two minute delay between heartbeat messages instead of one - then two arrive at once. The sending application (a Java application on another computer under Linux) confirms that the messages were sent on time.

The receiving application, with the problem, is a Windows service running on a Windows Server 2012 R2 machine. It uses the StompClient compiled with the default options - i.e. the Indy socket. The application was compiled using Delphi XE5.

I have tried compiling it with the latest Delphi 10 Seattle, with no difference. I've also tried disabling the Nagle algorithm in the Indy socket (wasn't really expecting this to help in the client socket, and it didn't).

Recompiling the StompClient with the use Synapse conditional resolves the delay. However, with the Synapse socket, unicode characters do not get through.

There are several components in the overall system that could be responsible for the delay, however that fact that it goes away when recompiling with the Synapse socket pretty much identifies it as a problem with the Indy client socket.

The application has now been running for two weeks without any message delays, using Synapse. For the time being we're getting round this by using UTF-8, but it would be great to have this problem resolved with Indy sockets, or perhaps the native Delphi client socket, and to have a robust unicode StompClient.

I don't suppose this is really a problem with your StompClient, but I thought you should know about it as it affects its use.

Jon

Jon Stewart

danieleteti commented 8 years ago

Thank you for your suggestion Jon. I'll investigate ASAP.

jonwakingup commented 8 years ago

Hi Daniele,

Since I think the underlying problem is with the Indy socket, I’ve also placed a question on the Embarcadero forum:

http://community.embarcadero.com/forum/programming/1850-delphi-delayed-messages-with-indy-tidtcpclient

Jon

From: Daniele Teti [mailto:notifications@github.com] Sent: 10 March 2016 15:53 To: danieleteti/delphistompclient Cc: jonwakingup Subject: Re: [delphistompclient] Delayed messages with Indy Socket (#8)

Thank you for your suggestion Jon. I'll investigate ASAP.

— Reply to this email directly or view it on GitHub https://github.com/danieleteti/delphistompclient/issues/8#issuecomment-194917741 . https://github.com/notifications/beacon/AMdU3jQr8H3tdzC3EpUnw8hszZAP-GgYks5psD5AgaJpZM4HttLK.gif

jonwakingup commented 8 years ago

Hi Daniele, Remy Lebeau has responded to this thread on the Delphi forum. I will follow the suggestion up in the next few days when I get a chance.

https://forums.embarcadero.com/thread.jspa?messageID=809343#809343

jonwakingup commented 8 years ago

Hi Daniele,

Remy Lebeau's suggestion in the link above worked.

I must admit that I would have coded it in the same way that you did, and I still don't quite see why ReadChar should fail every few hours. Is it possible that it could time out whilst waiting for the second byte of a character? Anyway...

Remy's solution seems to cover all possibilities. He reads the encoding from the STOMP headers (if present) and then reads the body with the selected encoding.

Jon