Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Yes, it is possible. A shared settings file is just like the connection string wizard in regards to support however many data source connections you will have.
However, depending on what you are trying to accomplish and your network and client workstation load, you may want to consider creating a server or service that runs on your server and sends out a UDP broadcast telling the clients what the connection information is. This is what we do in our medical application. Each instance of the application creates a unique GUID that the client knows about as part of the install. Then when it starts up, if it doesn't know the IP and port of the server, it listens for the UDP broadcast and then syncs up with the server by getting the connection information from the server when the server tells it the IP and port.
This allows the client to be totally "dumb", but accommodates any size network. If you have too many people hitting the shared settings file all at the same time, you may run into some file contention issues if you are not careful.
Just food for thought.
|