Access Remote Object in ASPNET Core Application

  • Thread starter Thread starter TejalRupera
  • Start date Start date
T

TejalRupera

Guest
Hi,

I am migrating my old ASMX application to ASPNET Core REST API.

In my old application i am using third party control for which i have configured wellknown object on web.config.

i have given sample code below.

<system.runtime.remoting>
<application>
<service>
<wellknown mode="SingleCall" type="ThirdpartyAssembly.TestClass, ThirdpartyAssembly" objectUri="TestClass.rem" />
</service>
<channels>
<channel ref="http" />
</channels>
</application>
</system.runtime.remoting>


How do i convert above code to make it work in new ASPNET Core api.

I am using .Net Framework 4.6.1 and added Nuget package on AspNetCore 2.2.



Regards,

Tejal

Continue reading...
 
Back
Top