Genesys CTI User Forum

Genesys CTI User Forum => Genesys-related Development => Topic started by: s.kulku on May 01, 2007, 12:08:13 AM

Title: Connector and Protocol
Post 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
Title: Re: Connector and Protocol
Post by: victor on May 01, 2007, 03:01:16 AM
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?