问题描述
我想我的windows服务的用户名/密码信息存储登录为用户在App.config。
因此,在我安装,我想抓住从app.config中的用户名/密码,并设置属性,但我正在试图安装服务时发生错误。
它工作正常,如果c中的用户名/密码,我很难$ C $,当我试图访问在app.config失败
公共类胡说:安装程序
{
公共布拉赫()
{
ServiceProcessInstaller oServiceProcessInstaller =新ServiceProcessInstaller();
的ServiceInstaller oServiceInstaller =新的ServiceInstaller();
oServiceProcessInstaller.Account = ServiceAccount.User;
。oServiceProcessInstaller.Username = ConfigurationManager.AppSettings [ServiceProcessUsername]的ToString();
}
}
现在的问题是,当你安装程序运行,你仍然在安装阶段,你的应用程序还没有完全安装。在app.config将只提供实际的应用程序运行时。
不过,您可以执行以下操作:
- 提示为安装程序中的用户名和密码(或在命令行)。
- 将此信息传递给您的安装程序类(google一下)
- 在您的安装程序类,有一个变量,它告诉你的安装路径
- 在安装程序中相应的事件,使用System.IO功能打开app.config文件并插入用户输入的信息
I want to store the username/password information of my windows service 'logon as' user in the app.config.
So in my Installer, I am trying to grab the username/password from app.config and set the property but I am getting an error when trying to install the service.
It works fine if I hard code the username/password, and fails when I try and access the app.config
public class Blah : Installer
{
public Blah()
{
ServiceProcessInstaller oServiceProcessInstaller = new ServiceProcessInstaller();
ServiceInstaller oServiceInstaller = new ServiceInstaller();
oServiceProcessInstaller.Account = ServiceAccount.User;
oServiceProcessInstaller.Username = ConfigurationManager.AppSettings["ServiceProcessUsername"].ToString();
}
}
The problem is that when your installer runs, you are still in installation phase and your application hasn't been fully installed. The app.config will only be available when the actual application is run.
You can however do the following:
- Prompt the user for the username and password within the installer (or on the command line).
- Pass this information to your installer class (google it)
- Within your installer class, there is a variable that tells you the installation path
- Within the appropriate event in the installer, use System.IO functions to open the app.config file and insert the user entered information
这篇关于Windows服务,不能从我安装的构造访问的app.config的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!