[Mono-list] .NET Remoting Error on Mono

2005-10-13 Thread Gayan Perera
i'm tryign to run a sample application on Mono, following is my coding. client side coding     RemotingService.Service f =(RemotingService.Service)Activator.GetObject(Type.GetType("Remoting

Re: [Mono-list] .NET Remoting Error on Mono

2005-10-13 Thread Lluis Sanchez
Hi, What happened is that the database query that your remote method SayHelo performs failed for some reason. You got an exception which Remoting tried to send back to the client, but that exception object is not serializable, and that is the error you are getting. Put a try/catch in the server to