I've written a Windows Service, Listens for Data via TCP, Each listener is
spawned in a new Thread creating a new Listener Object.
I have the Interface for the Remoting Server side on the Listener Class
Object (separate Project that Generates a DLL)
The Service Works and I'm running my cod...
more >>
I am trying to create a remote class that will allow a client to subscribe
to an event using delegates in C#. I have tried to do this my setting up a
class that is marshaled by reference to be used as the object that handles
the event
public delegate void RemoteAlert(string str);
public...
more >>
I'm not sure if this is the correct forum for posting queries about .NET
Web services. If it isn't, please point me in the right direction, and
I'll trouble you no more.
I have to write an application that will interact with a Web service
exposed by a partner organisation. Unfortunately t...
more >>
Hello
I need to send an object of HttpListenerContext class to another AppDomain.
HttpListenerContext class is neither inheritor of MarshalByRefObject nor
marked as Serializable (more over it is sealed). I wrote a wrapper for this
class and tried to send an object of this class which inherits...
more >>