Think of something, then make it

Requested Service not found

Posted in .NET by Sebastien Lachance on June 21, 2007

If you are doing remoting and you get a RemotingException with the message : “Requested Service not found” there is a really good chance there is an error in your configuration file. Mine was because the objectUri attribute was written all in lowercase. Be carefull !!

Another case this error can come up it’s if the lifetime is expired. To remedy to that override the InitializeLifeTimeService method and return null.

 

19 public override object InitializeLifetimeService()

20 {

21 return null;

22 }

Resources I used :

2 Responses

Subscribe to comments with RSS.

  1. [...] Sebastien Lachance [...]

  2. Javad said, on May 31, 2009 at 10:32 am

    hi,
    I have the same problem with iis 6 on windows 2003. i didn’t how you solved your problem.


Leave a Reply