Multiple clients on one gateway

I am trying to figure out the best way to accomplish a task. My objective is to have 1 gateway with potentially 6 different clients all opening the same project. The clients will all be active simultaneously and are just displaying alarms specific to their location. My thought was to have 1 alarm object on a screen and dynamically change what station the alarms are pointing at based on the client connected. Are there any issues with this tactic? Thanks!

Yes. You shouldn't be running clients on the gateway. You should run them on separate devices.

Ignition's licencing model allows you to create as many Vision clients and connect as many Perspective (browser) clients for as many projects as you want without additional cost.

{ I suspect the OP is a service provider, and "clients" means other organizations. }

My fault for the poor terminology, still trying to get that all figured out as well! The gateway is running on a separate server and by clients I mean vision clients.

Ok, then your strategy is fine. Use a client startup event to examine MAC ids, user names, or whatever to determine what folder path the client should use, and open the common window with that folder path as a window parameter. (Don't set any main window to auto-open.)

Everything in that main window would access tags using indirect bindings, with the folder path as the prefix.

Perfect, thanks a lot!