Question

I want my web application to return .net remoting object when somebody requests one page (or handler) with certain parameters. how to make it?

No correct solution

OTHER TIPS

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 :)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top