Here is the problem :

I have a brand new web application in VS 2010, Framework 3.5 I have a very simple web.config with the connectionStrings node :

 <connectionStrings>

The Web.Release.Config is like this :

<?xml version="1.0" encoding="utf-8"?>

Then i create a deployment package using VS 2010. I copy all the zip file along with all other file in a folder on my IIS Server.

I import the package using IIS user interface.

Finally, here is the web.config I have in my app :

  <connectionStrings>
<add name="StockDatabaseConnectionString"
  connectionString="{% token='$(ReplacableToken_#(parameter)_#(tokennumber))' xpathlocator='name' parameter='StockDatabaseConnectionString-Web.config Connection String' description='StockDatabaseConnectionString Chaîne de connexion utilisée dans web.config par l'application pour accéder à la base de données.' defaultValue='Data Source=NDTEST2;Initial Catalog=NatDecStocks;User ID=ND_InternetUser;password=1ND_@Internet_User3;' tags='SqlConnectionString' %}"
  providerName="System.Data.SqlClient"/>

As you can see, the connection string is not replaced as it should be.

I have the exact same problem when I deploy the application with Web Deploy.

It is a shame because web.config transformation is a great feature but I can't get it to work.

Tanhks for helping.

link|improve this question
i realize the c/c from de fils have failed : the web.release.config is like this : <connectionStrings> <add name="StockDatabaseConnectionString" connectionString="Data Source=MSSQLCLUSTERKID;Initial Catalog=NatDecStocks;User ID=ND_StockUser;password=stock_user;" xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/> </connectionStrings> – Nicolas Riou Sep 24 '10 at 9:26
You can experiment with config transformations using this tool: webconfigtransformationtester.apphb.com – friism Sep 14 '11 at 15:53
feedback

1 Answer

Have you checked out this article on Transforming a Web.Config File for Deployment?

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.