I want my web application to return .net remoting object when somebody requests one page (or handler) with certain parameters. how to make it?
A:
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 :)
Rhapsody
2010-03-31 15:57:51