12-07-2008 09:51 AM
Hi :),
I would like to have a main application running in a PC (server), and reading and controlling some features on the client PCs (all in the same network). The features to access are not the same for each client PC.
Which is the best way to make my application, using web services, remote panel?
Thanks
12-07-2008 10:31 AM
12-07-2008 06:05 PM
Your question is a bit too vague. What kind of features are you trying to read and control? Is this one-way communicaton, or two-way? Is it synchronized, or asynchronous? Can it happen with more than one client at a time?
Hi,
At the PC Server I want to build an application wich have control of all the system. Each PC client will display and control part of the information contained in the PC server (two-way of communication).
Maybe given a pratical example it'll be easy to understand:
All the information that is changed in the server or in the clients should be updated in all of them. This Update doesn't need to be at the same time(can take some few seconds). It is possible that PC client 2 and 3 want to take control of Temperatute 2 at the same time.
Thanks in advance :).
12-08-2008 09:35 AM
12-08-2008 10:40 AM
I have used Action Engines to implement that type of architecture.
All of the Action Engines execute on the Server.
I started by developing the Server app and then got it working the way I needed.
Then using VI server I developed (on the server) the apps that run on the other machines after debugging I moved these apps to the other machines and still used the VI server (just changed the IP of the machine serving teh AEs) to serve the Action Engines to the client machines.
I hope that helps,
Ben
12-09-2008 06:04 PM
It sounds to me like a network published shared variable is what you're looking for. You can read more about these in the LabVIEW Help. When it comes to building the executables, be sure to read this: How do I Deploy Network Shared Variables from a Compiled Executable?
Thanks for your replies. I think I'll follow smercurio_fc suggestion: using shared variables to do my applications. However, thanks also for your reply Ben :). I didn't know action engines, maybe in the future I'll use this solution for another type of applications.
Smercurio_fc, Do you know if I have a limit number of PCs to implement this solution?
Thanks 🙂