So, I have a strange situation occurring in my web system.
I have a implementation of a Windows Service, that starts a .Net Remoting Server and stay waiting for calls of various clients.
At other side, I have a ASP.Net Web-forms Application, that can call some methods in this service, using the .Net Remoting Structure.
In a page, I have a button, this Button call a Ajax Call, and this Ajax Call, execute a async method at the Asp.Net Web-forms Application.
Everything works fine.
But, at complete Ajax Call, I have a second Async Call. After complete first Ajax Call, the second executes ok, but not immediately, only 3 or 4 seconds after.
It occurs just when the site are published in IIS, in Visual Studio (localhost), this not happened.
I can configurate my Service (server) as TCP or ICP, send the data in binary mode... With any configuration, the problem always happened.