Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to overwrite an existing value in my Application .config file using NSIS.

I want to change 'endpoint address="http://DefaultWebService.asmx"'

to 'endpoint address="http://MyWebService.asmx"'

My Config file looks something like this:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<client>
  <endpoint address="http://DefaultWebService.asmx"
    binding="customBinding" bindingConfiguration="MyServiceSoap12"
    contract="WebServiceProxies.MyServiceSoap" name="MyServiceSoap12" />
</client>
</system.serviceModel>
</configuration>

In my NSIS I'm using :

WriteIniStr "$MyApp.exe.config" "system.serviceModel" "endpoint address" "endpoint address="http://MyWebService.asmx"

but this just adds

[system.serviceModel]
endpoint address=http://MyWebService.asmx

to the bottom of the .config file.

Where am I going wrong?

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

The problem is that you're using WriteIniStr which updates .ini files and application.config is an XML file. You need to use something like this plug-in instead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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