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

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