Please help me.
object[] Param = new object[1];
Param[0] = "Hello everybody!";
System.Type BankType = System.Type.GetTypeFromProgID("BankComponent.Account","SERV1");
object Bank = System.Activator.CreateInstance(BankType);
MethodInfo MI = obj.GetType().GetMethod("Hello");
MessageBox.Show(MI.Invoke(obj,Param).ToString());
It works on "SERV1", I can not access this component from remote machines.
I don't want to create an application proxy *.msi.
Thanks
If you don't want to create a proxy you'll have to do something like a
manual proxy through remoting. Or, use VB6 or VC++ and go through DCOM.
A proxy is probably the easiest way to accomplish this.

Signature
____________________
Klaus H. Probst, MVP
http://www.vbbox.com/
Please help me.
object[] Param = new object[1];
Param[0] = "Hello everybody!";
System.Type BankType =
System.Type.GetTypeFromProgID("BankComponent.Account","SERV1");
object Bank = System.Activator.CreateInstance(BankType);
MethodInfo MI = obj.GetType().GetMethod("Hello");
MessageBox.Show(MI.Invoke(obj,Param).ToString());
It works on "SERV1", I can not access this component from remote machines.
I don't want to create an application proxy *.msi.
Thanks