I am trying to get value of service in my application from app.config. I have to send it to the application which shows the URL. A web service which I am consuming in this aplication also using it so can not move it to appSettings.

I want to get this value 'http://192.168.4.22:82/Service.asmx' through c# code.

<applicationSettings>
    <SDHSServer.Properties.Settings>
      <setting name="DOServer_WebReference1_Service" serializeAs="String">
        <value>http://192.168.4.22:82/Service.asmx</value>
      </setting>
    </SDHSServer.Properties.Settings>
  </applicationSettings>
link|improve this question

Or in a more strongly typed manner. Worked with ASP.NET app but don't think there is big difference. – Oybek Feb 17 at 14:29
Your snippet above shows the setting you're trying to get is already in the appSettings, which you said you didn't want to do. Which is it? – M.Babcock Feb 17 at 14:30
feedback

2 Answers

up vote 1 down vote accepted

Not sure i get the question,

string s = SDHSServer.Properties.Settings.DOServer_WebReference1_Service;

will get you it

link|improve this answer
feedback

If I understand you correctly you have two Visual Studio C# projects. The first (project A) has a setting you want to access in the second (project B). To do that you have to perform the following steps:

  • Add a reference from project B to project A

  • Change the access modifier of the settings i project A to public (default is internal)

    Visual Studio settings editor

  • Now you can access the setting in project B, in your case using the fully qualified name SDHSServer.Properties.Settings.Default.DOServer_WebReference1_Service

Note that in the settings editor you can set a value for the setting. This is the default value for the setting and this value is also stored in the App.config file for the project. However, you can override this value by providing another value in the App.config file for the application executing.

In this example, the App.config file for project A will contain the value for the setting which is http://192.168.4.22:82/Service.asmx. However, you can override this in the App.config file for project B to get another value. That is probably not what you want to do but you should be aware of this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.