문제

I want my web application to return .net remoting object 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 :)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top