vote up 0 vote down star

In my ASP.NET application, I have a line in the global application start event that configures the client remoting channel by calling RemotingConfiguration.Configure().

This works well the first time, but when my web application gets recycled, the application start event is fired again causing the following remoting exception:

Remoting configuration failed with the exception 'System.Runtime.Remoting.RemotingException: The channel 'tcp' is already registered.

I would like to detect if the channel is already configured so that I can avoid getting this exception.

flag

2 Answers

vote up 1 vote down check

Try ChannelServices.RegisteredChannels

http://msdn.microsoft.com/en-us/library/system.runtime.remoting.channels.channelservices.registeredchannels(VS.71).aspx

link|flag
Thanks John. That's what I was looking for. – randy.klingelheber Aug 10 at 23:59
vote up 0 vote down

But what would you do if you found it was already registered?

In any case, I just wanted to make sure you knew that .NET Remoting has been deprecated in favor of WCF.

link|flag
If I knew that it was already registered, I would not call RemotingConfiguration.Configure() to avoid the exception. – randy.klingelheber Jul 22 at 18:45
But it wouldn't be registered to you, would it? – John Saunders Jul 22 at 19:06
It would be registered to our software. My guess is that the first time we register the remoting channel, it becomes registered for the w3wp.exe process. Since the process does not get restarted when the web app recycles, the second configuration call from the application_start event causes an exception. – randy.klingelheber Jul 22 at 20:45
Have you tried that? Because I bet the registration takes effect per-AppDomain. I bet it involves data structures mapping between the remoted types and the proxy types to be instantiated instead of them. Besides, Processes don't matter much to .NET. Most things are in terms of AppDomain and Thread. – John Saunders Jul 22 at 21:20
Thanks for your help with this John. I can reliably repeat this behavior by rebuilding my app and then refreshing from the browser. I can see the application is restarted and the exception is thrown. BTW - this is something I am seeing with IIS7 with an integrated pipeline (which I'm new to). I don't remember seeing this in previous versions of IIS. – randy.klingelheber Jul 22 at 23:42
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.