ASAP: Remoting not possible

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

H

I tried to implement .net remoting in my VB.NET app, but the studio doesn't seem to be able to find the correct namespace

Imports System.Runtime.Remoting.Channels.Tc

This just gives an error: namespace not foun

Can anyone help me

Sam
 
By default the namespace system.runtime.remoting is avaible from mscorlib.dll, but if you want to use
System.Runtime.Remoting.Channels.Tcp ; you'll have to add a reference to system.runtime.remoting.dll from "Add References" dialog

HT
Sudhakar Sadasivun
Microsoft .NET MVP | MCA
http://weblogs.asp.net/ssadasivun
www.mugh.ne

----- Sam Johnson wrote: ----

H

I tried to implement .net remoting in my VB.NET app, but the studio doesn't seem to be able to find the correct namespace

Imports System.Runtime.Remoting.Channels.Tc

This just gives an error: namespace not foun

Can anyone help me

Sam
 
Back
Top