ASP.NET Tutorial: Web.Config Transformation

Introduction

In this article let us learn about web.config transformation and how it comes in so handy while performing the deployment of an ASP.NET web application.

As a note Web configuration file transformation is a nice feature introduced in the ASP.NET framework 4.0.

What is Web.Config Transformation?

If you ask the .NET developers about the most menacing part in the development process, the answer would the deployment. This is so tedious because it may have to be deployed in various environments like Dev, QA and Production. The problem with this is the config file entries, for example, a connection string would be different for each environment, though the config file structure would be the same for all.

The developer has to publish the web application first, and then he needs to change the config values based on the environment before deploying the application.

What Makes the Above Job Intimidating?

  1. It is boring, to do the same set of changes for different environments.
  2. If the config file has lot of entries, it gets difficult to traverse manually to a particular section and modify it.
  3. Possibilities of typo errors (This would screw up the config file as well as the workability of the deployed application). In ASP.NET 4.0 you don't have to worry about it because of the availability of the web config transformation feature. All you need to do is create transformation XML files for each environment in which the application is going to be deployed. Make sure that you select the proper transformation config file for the environment while publishing (use configuration manager option). The publish process will transform your web.config file with values and instructions provided in the selected transformation xml file.

Below is the default structure of the XML config transformation file:

<?xml version="1.0"?>

<!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <!--
    In the example below, the "SetAttributes" transform will change the value of 
    "connectionString" to use "ReleaseSQLServer" only when the "Match" locator 
    finds an atrribute "name" that has a value of "MyDB".
    
    <connectionStrings>
      <add name="MyDB" 
        connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True" 
        xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
    </connectionStrings>
  -->
  <system.web>
    <compilation xdt:Transform="RemoveAttributes(debug)" />
    <!--
      In the example below, the "Replace" transform will replace the entire 
      <customErrors> section of your web.config file.
      Note that because there is only one customErrors section under the 
      <system.web> node, there is no need to use the "xdt:Locator" attribute.
      
      <customErrors defaultRedirect="GenericError.htm"
        mode="RemoteOnly" xdt:Transform="Replace">
        <error statusCode="500" redirect="InternalError.htm"/>
      </customErrors>
    -->
  </system.web>
</configuration>

You should also notice the fact that the XDT namespace is defined in "http://schemas.microsoft.com/XML-Document-Transform"

Step By Step Explanation Using a Simple Example

  1. Create a simple ASP.NET web application using Microsoft Visual Studio 2010 IDE. Name it as WebConfigTransformationDemo.
  2. Delete the default Web.Debug.config and Web.Release.config files.
  3. Go to to configuration manager as shown in Fig 1.0 and click on it.

  4. Fig 1.0

  5. In the configuration manager using the "New" option shown in Fig 1.1 declare 3 transformation files and name it as Dev, QA and Prod shown in Fig 1.2.


    Fig 1.1


    Fig 1.2

  6. Now when you create the transform in the web application project. All the declared config transform files will be created under the actual Web.Config file node in the solution explorer. They will be named as Web.<name provided by you>.config. In order to create them right click on the Web.Config file and select "Add Config Transforms" option as shown in Fig 1.3


    Fig 1.3

    See Fig 1.4 for the created transformation files Web.Dev.config, Web.QA.config and Web.Prod.config.


    Fig 1.4

  7. Have two connection strings in the Web.Config file which will be used by the application which we created for data access.

    <?xml version="1.0"?>
    <configuration>
      <connectionStrings>
        <add name="SqlConnectionString1" connectionString="Data Source=DebugSqlServer;Initial Catalog=MyDB1;Integrated Security=True"/>
        <add name="SqlConnectionString2" connectionString="Data Source=DebugSqlServer;Initial Catalog=MyDB2;Integrated Security=True"/>
      </connectionStrings>
        <system.web>
            <compilation debug="true" targetFramework="4.0" />
        </system.web>
        <system.webServer>
          <modules runAllManagedModulesForAllRequests="true"/>
        </system.webServer>
    </configuration>
    

  8. In the 3 three transform XML files provide the transforms for the connection strings SqlConnectionString1 and SqlConnectionString2 as shown below. I am adding only the Web.Prod.config transform for example:

    <?xml version="1.0"?>
    <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
      <connectionStrings>
        <add name="SqlConnectionString1"
          connectionString="Data Source=ProdSqlServer1;Initial Catalog=MyDB1;Integrated Security=True"
          xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
        <add name="SqlConnectionString2"
          connectionString="Data Source=ProdSqlServer2;Initial Catalog=MyDB2;Integrated Security=True"
          xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
      </connectionStrings>
      <system.web>
        <compilation xdt:Transform="RemoveAttributes(debug)" />
      </system.web>
    </configuration>
    

    Microsoft always recommends not to set the <COMPILATION DEBUG="true"/> when the application is deployed. By default it is false, so I have added a transform to remove the debug attribute in the compilation tag.

  9. Once the transforms are ready (here I am not implementing the usage of the connection strings in the application since it is not related to this demo) select the configuration as "Prod" as shown in Fig 1.5 and publish the web application (make sure you select the publish method as "File System").

    [config7.jpg]
    Fig 1.5

    Go to the published location, open Web.Config. Witness the transformation as shown in Fig 1.6.


    Fig 1.6

Keywords Walkthrough

In the transform files there are two attributes which does the tricks:

1. Locator
The locator attribute specifies the config element or elements which need to be transformed. Some of the Locator attribute values are:

  • a. Condition
  • b. Match

2. Transform
The transform attribute specifies what kind of transformation that has to be performed on the located element. Some of the Transform attribute values are:

  • a. Replace
  • b. Insert
  • c. InsertBefore
  • d. InsertAfter
  • e. Remove
  • f. RemoveAll
  • g. RemoveAttributes
  • h. SetAttributes

Conclusion

Thus I believe this article provides good information about web config file transformation. I have also added the source code of the demo project that we created to this article.

Happy reading! See you in my next article.

About the Author

V.N.S Arun

I work for an MNC in Bangalore, India. I am fond of writing articles, posting answers in forums and submitting tips in dotnet. To contact me please feel free to make use of the "Send Email" option next to the display name.

Downloads

IT Offers

Comments

  • Summary review reveals the indisputable information about gucci and in what ways it can certainly have an effect on anyone.

    Posted by emeseesip on 05/06/2013 04:47pm

    Almost Certainly The Most Thorough nike Report You Ever Read Otherwise Your Cash Back [url=http://www.guccija.biz/]グッチ 長財布[/url] Whoa, awesome solution. Your organization got to see nike right away while it's still in stock ! ! ! [url=http://www.guccija.biz/]グッチ キーケース[/url] adidas will help everybody by including many exceptional capabilities and functions. This is a unvaluable thing for all supporter of gucci. [url=http://www.guccija.biz/]グッチ ショルダーバッグ[/url] Honest brief article brings out Four brand-new stuff surrounding adidas that no-one is bringing up. [url=http://www.chanelja.biz/]シャネル バッグ[/url] Reason why not a soul is discussing gucci and as an outcome what you ought to create immediately. [url=http://www.chanelja.biz/]シャネル チェーンウォレット[/url] Brand new questions about nike resolved not to mention reasons why you have to take a look at every statement in this expose. [url=http://www.chanelja.biz/]chanel バッグ[/url] Methods of adidas that you're able to profit from starting up today.[url=http://www.nikeja.biz/]ナイキスニーカー[/url] The easiest way to learn every part there is to find out related to adidas in 4 basic steps.

    Reply
  • sacoche burberry pas cher

    Posted by Wrinalertiece on 04/30/2013 12:29am

    Chemise Burberry burberry homme Chemise Burberry Pas Cher Chemise Burberry [url=http://burberry-femme-pas-cher28.webnode.fr/]burberry-femme-pas-cher28.webnode.fr[/url] , Chemise Burberry Pas Cher [url=http://burberryhommepascher97.webnode.fr/]burberryhommepascher97.webnode.fr[/url] , burberry homme

    Reply
  • Nike Wind Max+instagram, wishes you contain the color to step on your feet!

    Posted by madytreathy on 04/22/2013 06:15am

    Call to mind in 2008, if not earlier, when Nike launched up ahead of the independent shoe color projects, the catchword "Bound Your Colours", "Nike PhotoiD" layout, [url=http://markwarren.org.uk/goodbuy.cfm]nike free run[/url] return has not been as hearty as expected. Have in mind, 2008 Canon IXUS 80 IS Digital card arcade but one 8 million pixels, Nokia, the plastic phone market-place is the exclusively leadership, NikeiD was advocate to color in the photos as a infrastructure for sneakers levy color, although provocative, but does bother some. Instagram which make this item hold up to ridicule and elemental, Nike PHOTOiD homeopathic upgrade customization services, recently [url=http://northernroofing.co.uk/roofins.cfm]nike free run[/url] released a fresh plan. That such iD can you utensil pictures as instagram account shoe color, the meanwhile offer Nike Air Max shoes and Nike Style Max 1, Nike Feeling Max 90 953 options. Interested in children's shoes, you [url=http://fossilsdirect.co.uk/glossarey.cfm]nike huarache free[/url] can every vanish into thin air's legitimate website photoid.Nike.com, in beyond to browse other people's creative work, or you can try to upload your own instagram photo, physique your own Nike Feeling Max.

    Reply
  • We pick up a new-fashioned acronym because of remembering our phonogram traits at Flagstone

    Posted by carpituvc on 04/16/2013 12:38am

    In place of all period, no overview of clothing hazards would be consummate without [url=http://www.hollistercorfrance.fr]hollister france[/url] acknowledging the corset. Recompense hundreds of years, the corset has been tired tired to camouflage or accentuate the unbidden curves of a trouble's [url=http://www.abercrombiesfrancevparise.fr]abercrombie[/url], or valet's, body. With whalebone or metal boning and tight-lacing, the body-binders prompted medical professionals, remarkably in the 1800s, to strife to realize an intention to their drill, explaining that they [url=http://www.airjordanfrpaschere.fr]jordan[/url] hindered muscle advance, mobility and, unmistakeably, the capacity to breathe. The doctors were on to something, but, as was the action with fastened feet, innumerable women weren't psyched up to justification up the body-shaper because, they, or way of life, preferred the [url=http://www.abercrombieufrancersoldes.fr]abercrombie[/url] corseted guise during their unexceptional one. The Nakate Bash also works to devise artisans in georgic areas [url=http://www.airjordanspasuchere.fr]air jordan pas cher[/url] of Uganda that we certain as occasion gone and forgotten untapped or undervalued. They inhibit in providing proceeds seeking women that are struggling to support themselves [url=http://www.hollisterfrancevmagesin.fr]hollister[/url] and, pro the duration of varied of them, the families that are relying on their income. The presentation also adheres to fair freight principles and environmentally open practices [url=http://www.abercrombievandfitchuks.co.uk]abercrombie[/url] including maximizing the avail oneself of of sore materials from sustainably managed sources, buying locally where imaginable and encouraging our artisans to industry in environments of their choosing – which are time after time in the candid [url=http://www.monclerfrancermagasinsfr.fr]doudoune moncler[/url] air. It seems like that’s all I’ve been saying to you guys lately. But [url=http://www.airjordanzchaussuren.com]air jordan pas cher[/url] cheer about that I legitimately do at any cost it when I change it. Frank away at times I study on it’s age I clarify why I haven’t been posting.Well somewhere all over the cardinal half [url=http://www.michaelukorsua.com]michael kors[/url] of nearby three, I puzzled access to my computer because I had to disenchant family bum my flat whilst their house was being remodeled. Not hunting in the circuit of that scrap scrutinize c go was renewal in the worship army of some reason. At only culture [url=http://www.hollisterucoboutiquer.fr]hollister france[/url] I got my stretch stake on a hold up, I didn’t wanna actually scour benefit of items anymore. With coterie and assignment, I straightforward didn’t partake of the assiduity to do so. It got to the essence where hunting became annoying and not fun. I didn’t relish in [url=http://patrimoine.agglo-troyes.fr/BAM/louboutinpascher.html]louboutin[/url] that because I really closeness this blog and mood that letter made me assume like I was origination to scorn it.

    Reply
  • wholesale beanies

    Posted by xxds3zf on 04/01/2013 05:59am

    [url=http://cheaphatsmall.webs.com]snapbacks for cheap[/url] snapbacks for cheap n dbqi [url=http://cheapsnapbackshat.webs.com]cheap hats for sale[/url] cheap hats for sale l bmpb[url=http://snapbackhatwholesale.webs.com]wholesale fitted hats[/url] wholesale fitted hats t aagy[url=http://cheapsnapbacksforsalezone.webs.com]snapback hats cheap[/url] snapback hats cheap i yzct[url=http://wholesalefittedhat.webs.com]fitted hats wholesale[/url] fitted hats wholesale y fqbv[url=http://wholesalefittedhat.webs.com]wholesale fitted hats[/url] wholesale fitted hats d cfxq [url=http://bestbaseballcap.webs.com]wholesale baseball caps[/url] wholesale baseball caps o mokq [url=http://snapbackswholesalezone.webs.com]snapback wholesale[/url] snapback wholesale w ruii[url=http://goodsnapbackhatscheap.webs.com]cheap snapback hats[/url] cheap snapback hats x ycbj[url=http://cheapsnapbackshat.webs.com]cheap snapbacks hats[/url] cheap snapbacks hats m eszr[url=http://bestbaseballcap.webs.com]hats wholesale[/url] hats wholesale k gazz[url=http://cheaphatsmall.webs.com]snapbacks for cheap[/url] snapbacks for cheap h aaus [url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping d lqux [url=http://cheapsnapbackshat.webs.com]cheap hats online[/url] cheap hats online b ylqt[url=http://cheaphatsmall.webs.com]cheap snapback hats[/url] cheap snapback hats m ibyv[url=http://snapbackswholesalezone.webs.com]hats wholesale[/url] hats wholesale p wbhz[url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks online[/url] cheap snapbacks online c ficq[url=http://bestbaseballcap.webs.com]hats wholesale[/url] hats wholesale f cuva

    Reply
  • cheap snapbacks

    Posted by xxds9sb on 04/01/2013 05:57am

    [url=http://goodsnapbackhatscheap.webs.com]snapback hats cheap[/url] snapback hats cheap b jdnh [url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping f kcgj[url=http://wholesalefittedhat.webs.com]fitted hats wholesale[/url] fitted hats wholesale v crws[url=http://snapbackswholesalezone.webs.com]snapback hats wholesale[/url] snapback hats wholesale i ypaa[url=http://cheapsnapbacksforsalezone.webs.com]snapback hats cheap[/url] snapback hats cheap u suoz[url=http://snapbackhatwholesale.webs.com]wholesale beanies[/url] wholesale beanies h lxbp [url=http://snapbackswholesalezone.webs.com]snapbacks wholesale[/url] snapbacks wholesale k lyru [url=http://snapbackswholesalezone.webs.com]snapback wholesale[/url] snapback wholesale p uvit[url=http://bestbaseballcap.webs.com]hats wholesale[/url] hats wholesale k kqrz[url=http://cheaphatsmall.webs.com]snapbacks for cheap[/url] snapbacks for cheap t abaz[url=http://snapbackswholesalezone.webs.com]snapbacks wholesale[/url] snapbacks wholesale g gizk[url=http://cheaphatsmall.webs.com]cheap hats[/url] cheap hats p zkug [url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping y ehbk [url=http://snapbackhatwholesale.webs.com]wholesale snapbacks[/url] wholesale snapbacks v azun[url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping g fzxi[url=http://cheapsnapbackshat.webs.com]cheap hats[/url] cheap hats s zkjl[url=http://cheapsnapbackshat.webs.com]cheap hats[/url] cheap hats l fbrc[url=http://snapbackhatwholesale.webs.com]wholesale beanies[/url] wholesale beanies i uchl

    Reply
  • wholesale fitted hats

    Posted by xxds3kg on 04/01/2013 05:13am

    [url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks[/url] cheap snapbacks c fcwe [url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks online[/url] cheap snapbacks online p cjnj[url=http://cheaphatsmall.webs.com]snapback hats cheap[/url] snapback hats cheap u sfsn[url=http://cheaphatsmall.webs.com]snapbacks for cheap[/url] snapbacks for cheap m ycci[url=http://snapbackswholesalezone.webs.com]snapbacks wholesale[/url] snapbacks wholesale r qvjq[url=http://snapbackswholesalezone.webs.com]hats wholesale[/url] hats wholesale t wyon [url=http://bestbaseballcap.webs.com]hats wholesale[/url] hats wholesale n hlfp [url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks online[/url] cheap snapbacks online o wzjz[url=http://cheaphatsmall.webs.com]cheap snapbacks[/url] cheap snapbacks t ejap[url=http://wholesalefittedhat.webs.com]snapbacks wholesale[/url] snapbacks wholesale x jxyo[url=http://snapbackhatwholesale.webs.com]wholesale snapback hats[/url] wholesale snapback hats e zvpy[url=http://wholesalefittedhat.webs.com]wholesale fitted hats[/url] wholesale fitted hats j zwgo [url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks online[/url] cheap snapbacks online o icvi [url=http://goodsnapbackhatscheap.webs.com]cheap snapback hats[/url] cheap snapback hats t dfsr[url=http://cheaphatsmall.webs.com]snapback hats cheap[/url] snapback hats cheap v smox[url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks for sale[/url] cheap snapbacks for sale b uzlz[url=http://cheapsnapbackshat.webs.com]cheap hats[/url] cheap hats x snmi[url=http://cheaphatsmall.webs.com]cheap hats[/url] cheap hats d pmgk

    Reply
  • cheap snapbacks from china

    Posted by mcexpenueMoxjef on 03/29/2013 11:14pm

    [url=http://www.cheapforsunglasses.com]oakleys cheap[/url]cheap sunglasses [url=http://www.cheapforsunglasses.com]oakleys cheap[/url]wholesale snapback hats [url=http://www.cheapforsunglasses.com]cheap sunglasses[/url]cheap snapbacks for sale [url=http://www.bestcheapsnapbacks.com]cheap snapbacks for sale[/url]cheap sunglasses [url=http://www.cheapforsunglasses.com]oakleys cheap[/url]cheap sunglasses

    Reply
  • http://www.nikeairmaxwr.com/ pororn

    Posted by http://www.nikeairmaxwr.com/ Suttoniee on 03/29/2013 11:13am

    oakley sunglasses sale,It seems this is a big bar. These newcomers are not simple ah! Who actually exist capacity fluctuations, and the properties of the force could be the same, this ... Hi, mastermind, mastermind, you really want to do it? Xiao Feng observed the newcomers while his spiritual knowledge sensitive once the current fluctuations in the special energy of the new body, that energy is too little, but Xiao Feng realm is simply not worth mentioning. it is difficult to escape the eyes of Xiao Feng. And those energy of Xiao Feng is lacking, but used to deal with four or five ordinary people enough. ray ban new wayfarer energy properties identical to this in terms of, you know it must be the mastermind specially conferred, let ray ban prescription glasses can have a basic ability to survive in this world.ray ban,oakleysunglassesoutc.com/" title="discount oakley sunglasses"discount oakley sunglasses, Since the mastermind of this arrangement, it is on behalf of, the important point is that this task is very troublesome!

    Reply
  • Sexy Babydoll Lingerie

    Posted by Fishnetda1032 on 03/29/2013 08:54am

    http://discounteroticlingerie.webs.com - Sexy Lingerie storeTip 4 – Another thing you need to be aware of is the kind of personality your partner has Dark blue conveys wisdom, trust and seriousness http://discountsexylingerie.webs.com - Lingerie on ClearanceYou might spend a lot of time getting the perfect gift but with a wrong color The wholesale lingerie may include several items that include garter belts, brassiere, camisoles, gowns, panties, and so on http://G-string.webs.com - sexy g-stringsHe was now able to watch the restaurant from home on his laptop?Foxy Lady Boutique http://sexycostumesus.webs.com - School Girl LingerieLet’s look a bit deeper into the colors In contrast of black, there is white which portrays a pure, clean and innocent image http://cheapspicylingerie.webs.com - Cheap Babydoll Lingerie?Do something unusual and outrageous each dayProper attention is to be paid for the bridal lingerie to complement and match the bridal gown, to make you look slim and attractive with visual appeal

    Reply
  • Loading, Please Wait ...

Leave a Comment
  • Your email address will not be published. All fields are required.

Go Deeper

Most Popular Programming Stories

More for Developers

Latest Developer Headlines

RSS Feeds