I need to develop a tool in C# which interacts with a SOAP webservice. The first operation of this webservice takes a username and password to login to the application. However that tool shall be run without user interaction when providing the user credentials.
This implies that the tool knows the username and password. What would be a more or less appropriate way of storing the encryped username and password either in the program code or in an external file?
If you indeed need to store the password in some form, better encrypt it using AES. AES is a proven algorithm which is not feasible to thwart at least until the next decade. See this SO link to find some examples of AES encryption in C#:
Using AES encryption in C#