how to host .NET Remoting object in ASP.NET application?
I want my web application to return .net remoting 开发者_如何学Pythonobject when somebody requests one page (or handler) with certain parameters. how to make it?
So you want to create an instance of a Remote Object when the ASP.NET page is generated?
Doesn't this work:
IMyObj objMyObj = (IMyObj) Activator.GetObject(typeof(IMyObj), "http://URL/myObj.soap");
But perhaps I misunderstood you :)
精彩评论