Client Application as Service
I have a client side class named MyApplication that has many methods like open new forms and load some reports. I initialize this class normally.
The server should know about this class by ref, although I can't pass objects by reference in WCF.
What I was trying to do was open a host of this MyApplication and at server side I created the Channel.
The problem is when I create a new Channel it creates a new instance of that MyApplication and I want the server to catch the already instanced MyApplication.
What should I do to make this work?
Thanx

