Requested Service not found
Posted 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 :

July 20, 2007 at 8:36 am
[...] Sebastien Lachance [...]