System.Configuration.ConfigurationSettings.AppSettings在生产中无法访问

时间:2013-07-03 08:23:02

标签: c# .net web-config desktop-application windows-applications

我有一个Windows应用程序正在启动的Windows桌面应用程序。

private void Home_Load(object sender, EventArgs e)
       {
           string url = string.Format("http://localhost:49916/Express/Login.aspx?yek@soh={0}", System.Configuration.ConfigurationSettings.AppSettings["HK"].ToString());

           Process.Start("IExplore.exe", url);
           this.Close();
       }

我的机器运行正常。然后我创建了一个安装程序来安装它,但工作正常但是当我在生产机器上运行我新安装的程序时,我得到以下异常:

System.NullReferenceException: Object reference not set to an instance of an object.
   at HospitalClient_App.Home.Home_Load(Object sender, EventArgs e)
   at System.Windows.Forms.Form.OnLoad(EventArgs e)
   at System.Windows.Forms.Form.OnCreateControl()
   at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
   at System.Windows.Forms.Control.CreateControl()
   at System.Windows.Forms.Control.WmShowWindow(Message& m)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
   at System.Windows.Forms.ContainerControl.WndProc(Message& m)
   at System.Windows.Forms.Form.WmShowWindow(Message& m)
   at System.Windows.Forms.Form.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

如果我改变了行

 Process.Start("IExplore.exe", url); 

Process.Start("IExplore.exe","http://localhost:49916/Express/Login.aspx?yek@soh=6775228");
然后程序就可以了。

我的app.config如下:

<configuration>
    <appSettings>
        <add key="HK" value="PRO2"/>
        <add key="ClientSettingsProvider.ServiceUri" value=""/>
    </appSettings>
    <startup>
        <supportedRuntime version="v2.0.50727"/>
    </startup>
</configuration>

我该如何解决这个问题?可能导致问题的原因是什么?

3 个答案:

答案 0 :(得分:2)

我的通灵调试器看到潜在NRE的唯一地方就在这里:

ConfigurationSettings.AppSettings["HK"].ToString()

(哪个是deprecated,请使用ConfigurationManager.AppSettings[])。

它抛出的事实将告诉您没有找到键HK的Appsetting,导致ConfigurationSettings.AppSettings["HK"]返回null,导致null.ToString()抛出上述异常

确保<add key="HK" value="..." />位于相关配置的appsettings部分。

答案 1 :(得分:1)

您是否正在查看错误的app.config?我这样做了100次。

答案 2 :(得分:0)

在运行时,正在读取的配置文件的文件名为 NOT app.config。它是applicationname.extension.config。

例如:如果正在运行application.exe,配置文件的名称将为application.exe.confiig。该文件应与您的应用程序位于同一目录中。