From: <sam...@us...> - 2006-06-01 07:03:34
|
Revision: 11 Author: samuel337 Date: 2006-06-01 00:03:28 -0700 (Thu, 01 Jun 2006) ViewCVS: http://svn.sourceforge.net/mp-webinterface/?rev=11&view=rev Log Message: ----------- Reduced need for MP assemblies in MPW folder - now automatically returns assemblies in MP folder Modified Paths: -------------- trunk/source/ECP2WebService/Global.asax Modified: trunk/source/ECP2WebService/Global.asax =================================================================== --- trunk/source/ECP2WebService/Global.asax 2006-06-01 07:02:01 UTC (rev 10) +++ trunk/source/ECP2WebService/Global.asax 2006-06-01 07:03:28 UTC (rev 11) @@ -9,6 +9,8 @@ //setup remoting communication System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(new System.Runtime.Remoting.Channels.Tcp.TcpClientChannel(),false); + //attach to ResolveEventHandler in ECP2Assembly to resolve MP assembly issues + AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(ECP2Assembly.AssemblyResolve.MyResolveEventHandler); } void Application_End(object sender, EventArgs e) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |