I'm trying VEE Pro 9.0 for the first time and I need to use a .net assembly to control a remote external program but its use model is:
ISomeInterface myReference = Utilities.SomeStaticMethod(some parameters);
I've used Device->.NET Assembly Reference to add the reference, and Device->Function and Object browser shows the Utilities class but SomeStaticMethod is not shown.
How would I create myReference?
Thanks in advance!
ISomeInterface myReference = Utilities.SomeStaticMethod(some parameters);
I've used Device->.NET Assembly Reference to add the reference, and Device->Function and Object browser shows the Utilities class but SomeStaticMethod is not shown.
How would I create myReference?
Thanks in advance!
However, any IRemoteAte method or property I try to access using the returned interface fails with error 751. I read the help page for that and nothing resolves it.
Here's the actual code:
Text(130.29.70.192) -> RemoteAteUtilities.GetRemoteAte(ipAddress) -> iRemoteAte.Ping()
I verified:
The remote application that supports the IRemoteAte interface is running on the remote machine
The PC running VEE can access the remote machine via LAN
The IP address is correct.
I can access the remote application using other remote clients using the same DLL I gave to VEE
- this DLL, provided by the remote program, uses .NET Remoting to establish a connection to the remote program and returns an IRemoteAte interface