我正在创建一个Windows服务,它假设在特定表中查找数据,然后根据状态处理记录。
我想在使用installutill作为参数安装服务时传递数据库凭据,并将它们保存在注册表中。我尝试使用下面的代码这样做,但我在“OnBeforeInstall”事件上一直收到错误。
我相信要么我错误地传递参数,要么我在错误的事件中编写代码。需要你的帮助来弄清楚我做错了什么。
protected override void OnBeforeInstall(IDictionary savedState)
{
base.OnBeforeInstall(savedState);
_eventLog.WriteEntry("OnBeforeInstall Started");
try
{
RegistryKey key = Registry.CurrentUser.CreateSubKey(@"SOFTWARE\RyteRMS");
if (key != null)
{
_eventLog.WriteEntry("Write data to registry key");
key.SetValue("DBTYPE", this.Context.Parameters["dbtype"].ToString()); // This throws error, I am assuming as the above event entry is visible.
key.SetValue("DATASOURCE", this.Context.Parameters["datasource"].ToString());
key.SetValue("USERID", this.Context.Parameters["userid"].ToString());
key.SetValue("PASSWORD", this.Context.Parameters["password"].ToString());
key.SetValue("DBNAME", this.Context.Parameters["dbname"].ToString());
key.Close();
}
}
catch (Exception ex)
{
_eventLog.WriteEntry(ex.Message);
}
_eventLog.WriteEntry("OnBeforeInstall Finished");
}
我在命令提示符下写这个: installutil RMSBGService.exe / dbtype = sqlserver / datasource = hitin-lt / dbname = rms / userid = admin / password = passw0rd
错误:“对象引用未设置为对象的实例。”
P.S。我不知道如何调试Win服务,所以我使用事件日志记录每件事。
答案 0 :(得分:0)
管理我自己做,这是我们想要做的。
protected override void OnBeforeInstall(IDictionary savedState)
{
_eventLog.WriteEntry("OnBeforeInstall Started");
try
{
RegistryKey key = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(@"SOFTWARE\RMS");
if (key != null)
{
_eventLog.WriteEntry("Write data to registry key");
Process _prc = new Process();
_prc.StartInfo.FileName = "cmd.exe";
_prc.StartInfo.UseShellExecute = false;
_prc.StartInfo.RedirectStandardOutput = true;
_prc.StartInfo.RedirectStandardInput = true;
_prc.Start();
ConsoleColor _color = Console.ForegroundColor;
Console.ForegroundColor = ConsoleColor.DarkGreen;
Console.WriteLine("\n\n");
Console.WriteLine("PLEASE ENTER FOLLOWING DETAILS TO COMPLETE SETUP");
Console.WriteLine("NOTE: if you enter wrong information, you will need to reinstall the application.");
Console.WriteLine("\n\n");
Console.WriteLine("Enter DBTYPE (SQLSERVER or ORACLE):");
key.SetValue("DBTYPE", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
Console.WriteLine("Enter DATASOURCE (SERVER NAME):");
key.SetValue("DATASOURCE", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
Console.WriteLine("Enter DATABASE USER ID:");
key.SetValue("USERID", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
Console.WriteLine("Enter PASSWORD:");
key.SetValue("PASSWORD", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
Console.WriteLine("Enter DATABASE NAME:");
key.SetValue("DBNAME", StringCipher.Encrypt(Console.ReadLine(), "@xx"));
key.Close();
Console.ForegroundColor = _color;
_prc.Close();
}
}
catch (Exception ex)
{
_eventLog.WriteEntry(ex.Message);
}
_eventLog.WriteEntry("OnBeforeInstall Finished");
base.OnBeforeInstall(savedState);
}
StringCipher是我用来加密/解密文本的自定义函数。稍后开始,我正在从注册表中读取这些存储的值,并解密它们以将其传递到数据库连接代码并完成所需的操作。
希望这会对某人有所帮助。
注意强>
您必须使用“InstallUtil”安装此服务,如果您选择使用安装项目安装此服务,则此安装将在cmd窗口打开时停滞。