Who knows something about Java platform SDK?
I am coding with Java platform SDK 7.2 and I suspect that there is a bug in a receive method of protocol class. I could send and receive through it for about a day and then all of a sudden it can’t get no response from t-server though it successfully transmits requests using the same instance and t-server’s log shows that there is a response going back to it.
If I reboot my app everything gets back to norm. Is it a bug or am I plain dumb?
sorry if it took me a while, but I think I know what your problem is: addp or lack of thereof.
Genesys SDK by default does not use addp in a connection, and I was able to recreate a situation where Genesys would not notice that session went down south for the rest of the weekend. This is plain and simple to do:
take three hubs and connect hub one to two and two to three.
connect your application to hub one
connect Genesys T-Server to hub three
once your application is connected and running, try disconnecting hub#2 for a few seconds and then connect it back in. The link will be still there but session won’t. What is worse, you will see session die on T-Server side but not on your application side. Once I have added addp, I could no longer recreate the problem.
so, I really strongly suggest for you to look into adding addp - chances are you already did it between your post and my reply, right?