The examples show how to set up a TCP connection, but not how to attach
the transport to an existing socket.
Ted Dunning wrote:
The login part is easy. You just create a method called login that returns
a magic token. Then all subsequent requests use the token (which should be
signed and a little hard to reuse).
Insofar as how to plug into the C# server, this is just like creating any
other thrift server. See the examples.
On Thu, Nov 13, 2008 at 10:29 AM, Stuart Johnson <[EMAIL PROTECTED]> wrote:
I want to create a server app capable of accepting multiple thrift-clients.
As each thrift client connects, it must send a login struct, which will be
a username and password.
I have looked at the C# classes, and I am not sure where to start. I can
create the socket server, but I am unsure which class I need to attach to my
socket.