[Mono-list] Remoting between web-applications on Apache

Robert Jordan robertj at gmx.net
Thu Jun 7 22:36:40 EDT 2007


Hi Maxim,

Maxim Karavaev wrote:
> Sorry for may be basic questions, but I've got some difficulties
> trying to use Remoting in Mono.

There is a small bug in APS.NET 2.0 that prevents Remoting
from being properly configured.

Please try this global.asax as a workaround:

<%@ Application %>

<script runat="server">

void Application_Start (object sender, EventArgs e)
{
	System.Runtime.Remoting.RemotingConfiguration.Configure(
		System.Web.Configuration.WebConfigurationManager
			.OpenWebConfiguration (null).FilePath, false);
}

</script>

Robert



More information about the Mono-list mailing list