I currently have a Windows form that has hardcoded some information that includes server FQDN's. For obvious reasons, I want to make this configurable within the app itself.
I assume I want to embed the following information into an XML file:
My first concern is to read the contents of this file so that I can use the FarmX/ServerX combination to take appropriate action.
Secondarily, I want to be able to add additional Farm/Server combinations and edit existing pairs as needed.
I have gotten thoroughly confused trying to research how to do this. I guess it's one of the pitfalls of learning on the fly. Nevertheless, I have faith that someone will point me in the right direction.
Thanks...
I assume I want to embed the following information into an XML file:
Code:
[u]Farm[/u] [u]Server[/u]
Farm1 Server1
Farm2 Server2
. .
. .
. .
FarmX ServerX
My first concern is to read the contents of this file so that I can use the FarmX/ServerX combination to take appropriate action.
Secondarily, I want to be able to add additional Farm/Server combinations and edit existing pairs as needed.
I have gotten thoroughly confused trying to research how to do this. I guess it's one of the pitfalls of learning on the fly. Nevertheless, I have faith that someone will point me in the right direction.
Thanks...