Connector and Protocol

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 :slight_smile:

I am still surprised you could compile it!!!

Did it work?

1 Like