Genesys CTI User Forum
Genesys CTI User Forum => Genesys-related Development => Topic started by: s.kulku on May 01, 2007, 12:08:13 AM
-
A quick question to all you pros:
how do I connect t-server?
I have defined my connection like this:
ClientChannel connector = new TServerProtocol(new Endpoint(uri,name));
but I do not see any trace of connection in t-server logs. Is it possible to turn on the logging for client's side of this connection?
Thank you and have a good day!
Sanja Kulku
Product Development Manager
Xafa
-
Sanja,
try:
ClientChannel connector = new TServerProtocol(new Endpoint(name,uri));
you got name, uri in the wrong order :)
I am still surprised you could compile it!!!
Did it work?