Configuration :: Modify Web.Config For Continuous Integration

Mar 9, 2010

i am using CruiseControl.Net for my continous integration process. using ccnet i build and publish my asp.net application into a server in Release mode. but i am not able to change debug="true" to debug="false" in my Web.Config during publishing. what can i do?

View 2 Replies


Similar Messages:

Continuous Integration For .Net And Javascript With Unit Tests?

May 4, 2010

I need a Continuous integration tool that will support both .Net Unit tests and Javascript unit tests and perform the builds.It looks like my main options are CruiseControl.NET using JUnit and NUnit or Team City and JS Test Driver.

Are there any other options and which ones have you used or had good or bad experiences with.

View 1 Replies

Visual Studio :: Automated Builds And Continuous Integration

Feb 8, 2010

I have been working in isolation for a very long time, and over the past few monts a new CTO introduced me to Ant and CI (however in Java, with him doing the dirty work)..just enough to make me see the benifits. Now I'm back to .Net (left off at 1.1, started again after a few years in PHP) and since I got the hang of asp.net 3.5 (mvc) I'd like to expand my knowledge and tools a bit.

Found a copy of "Expert .NET Delivery Using NAnt and CruiseControl.NET" which sounds like exactly what I'd like to study to know how to create my own automated builds and Continuous Integration, but then I realized this book was written in the .net 1.1 days (yes yes, I know a lot will still apply..I just like to be on the bleeding edge of things) Can anyone make some recomendations, give some tips, advice (and even critic) on this train of thought?

View 1 Replies

Configuration :: Modify Application Url At Web.config Level?

Apr 11, 2010

My ISP recently has migrated my app to a new platform. The app has now to be parked in a root subfolder, say site1, rather than at the root.

The main page can still be accessed via [URL] is now located at /site1/default.aspx. Subfolder pages however cannot be accessed correctly anymore since the url includes now subfolder name "site1" ie

[URL]

instead of

[URL]

This of course breaks page referencing.

Despite multiple requests, I have not yet obtained an answer so far. Question: Is there a simple way to strip away string "site1" from the url, preferably at the web.config level? I know this can be done programmatically at the page level, to clean up page references (>30 pages). In addition, this could entail further compatibilty problems between the deployment version and the local development site.

View 3 Replies

Hudson Continuous Integration - Can Copy Contents Of A Folder To Another Folder Or Website

Feb 9, 2010

Im trying out the Hudson Continuous Integration. After the build is executed i want to copy the content of the ReleaseBuild to another website on the server.This should be possible i guess but i cant seem figure it out.I know this can be done in nAnt and msbuild but i need to make Hudson do it, eg plugin or something.

View 1 Replies

Configuration :: Trying To Modify My Web.config File/ Error "Keyword Not Supported: 'dsn'."

Jan 5, 2011

My hoting provider has provided me dsn connection to database through dotnetpanel for my asp.net mvc site. In my dev i was using sqlconnection. Now I am trying to modify my web.config file. In my web.config file i am getting the error

"Keyword not supported: 'dsn'."

My web.config file is shown below

[Code]....

View 6 Replies

Configuration :: Continuous Application Restart At (almost) Every Request

Jan 2, 2011

I just released a new version of my web application on ASP.NET V4.0 (on IIS 7 Win2008 R2) For some reason, the application Restarts at (almost) every request. I cannot figure out what configuration (although I didn't change it) or code error may cause this problem. Mind this happens on a hosted server - so I have a somewhat limited ability to debug it.

View 4 Replies

Configuration :: Custom Web App Integration Into Sharepoint With MS-Access Connectivity?

Jan 10, 2011

Ive integrated a custom asp.net web application into a Sharepoint site by creating a virual directory, that contains my web app files, that points to a directory in the Sharepoint inetpub folder.

On my local dev server I can access all my web app pages just fine by typing in /virtualdirectoryname/page.aspx

My Problem is that: When I deploy to my Live Test server that is internet facing, none of the pages that make a MS-Access database call will work.

The Error I receive is '[SecurityException: Request for the permission of type 'System.Data.Odbc.OdbcPermission, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]'

I have researched the issue online and tried numerous solutions which include giving all the assemblies in my application a strong name, and modifying the security policy to trust this strong name.

My Custom Web App consists of 2 projects

1. A Class Library Project (Data Layer)

2. A Web Application Project (Web Layer)

My .mdb database file is stored at root level within the Virtual Directory.

I have 1 class in the Data Layer (ClassConnect.cs) that when instantiated, creates the ODBC connection for all other pages to use (OdbcConnection dbConn = new OdbcConnection();)

I have a Connection String stored in the web.config file that is as such. When I deploy to the Live Test Server I change the path in this connection string, because I haven't figured out yet how to get a relative path that works.

I also place the dll's for my 2 projects in the Sharepoint bin folder.

Could anyone suggest what might be the dfference between my Local Dev Server and the Live Test Server and why I might be getting these errors.

View 1 Replies

Configuration :: Continuous Parser Error "Only Content Controls Are Allowed Directly In A Content Page" Messages

Nov 17, 2010

I bought a website a few years ago, hosted with WebHost4Life,. Since their migration their has been nothing but problems with my site, however, I am stuck because I don't have the knowledge to move it, have tried with no success. Anyway, recently I have been getting parser error messages, Webhost fixed them, and then it starts over again. It takes them weeks to get around to it and since its my livelihood, I can't afford for the site to be down for 5 days then running for one day. I've tried to contact the guy that built the site to no avail, he won't answer my emails.

why these parser errors keep happening. This is a recent thing from the past 2 months, never had this before. What can I do to stop it. it looks like the knowledge here is unreal, I'm in awe everytime I read your answers. BTW, heres my lastest parser error:

Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Only Content controls are allowed directly in a content page that contains Content controls. Source Error:

[Code]....

View 2 Replies

Configuration :: Deploy Web.config And App.config Connection String?

May 3, 2010

I have deploy my web site, it contains a project!

in MyWeb there are all the aspx page and some entites datamodel, in MyApp there are the class with function like "getter data from DB" and there is a entity data model.

afeter the deploy, I have only the web.config and the connection string for the entity datamodel....itīs run ok, read/write the data on the DB.

The problem is with MyApp.....after the deploy it is a dll file and I donīt have the app.config and the entity inside it donīt run, not read/write nothing on the DB.

There arenīt error or messager but not read/write the data in the MyApp project.

all run on the iis 7

now...the question is:

I lose the connection string (in app.config) after the deploy?

Can I put a entity in the MyWeb and read it in another project (myApp)?

ps: for connect to DB I use not the c# code:

var db=from x in AccessDB.Example select x;

View 1 Replies

Configuration :: How To Read Web.config File In App.Config In Web Application

Jan 5, 2011

I am developing web applicaiton. I want to read web.config in App.config file. I have appSettings and connectionStrings in web.config. How to read that?

View 10 Replies

Configuration :: How To Modify Project Settings At Run Time

Aug 24, 2010

I have several settings in my project area (stored in web.config). However, the scope is not editable and is permanently set to "Application", which means I can't edit them at run time. I would really like to be able to edit these from the web interface. I know that doing so would restart the application (since the web.config was modified), but I'm okay with that, once the settings are written.

Is there any way to programmatically modify the settings in the <applicationSettings><PROJECT.Properties.Settings> area of the web.config?

View 9 Replies

C# - Why Does The System.configuration Differentiate Between Web.config And App.config

Jan 15, 2010

While using a third party dll I was getting the following exception - "exePath must be specified when not running inside a stand alone exe" with following trace

System.Configuration.ConfigurationManager.OpenExeConfigurationImpl(ConfigurationFileMap fileMap, Boolean isMachine, ConfigurationUserLevel userLevel, String exePath).

The reason I found was that it was looking for app.config and I had provided the details in web.config. My question is why does the system.configuration differentiate between web.config and app.config.

View 2 Replies

Configuration :: Upgrade From .NET 2.0 To 4.0; Now It Started Using App.config Instead Of Web.config?

Aug 10, 2010

I upgrade my application from .NET 2.0 to .NET 4.0. Everything went smooth, with very few errors. Now the code is compiling fine, but run time environment is loading the configuration parameters from app.config instead of web.config;Here is my setup:Objects project: has app.configUI project: has web.config, When I run this site, it is fetching the configuration parameters from app.config. Any idea if I need to make any changes to read it from web.config instead of app.config? It used to work fine in my previous environment.

View 8 Replies

How To Modify Configuration Section Programmatically In Medium Trust

Jan 30, 2011

I have a custom ConfigurationSection in my application:

public class SettingsSection : ConfigurationSection
{
[ConfigurationProperty("Setting")]
public MyElement Setting
get
[code]...

View 1 Replies

Configuration :: Web.config Deploy Time Configuration Error Assemblies

Jun 4, 2010

I built my ASP.NET website using vs2008 professional.

Now I have purchased vs2010 professional edition.

I do format my computer and then installed vs2010.

Now I want to deploy my website in vs2010, but it is giving configuration error in <add assemblies...

Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: Could not load file or assembly 'System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'

View 2 Replies

Configuration :: Modify Visual Studio 2010 Default Database From SQL Express?

Sep 26, 2010

Im having an issue when I create a new ASP.NET Web Application within Visual Studio 2010, this creates a web.config configured to use SQLEXPRESS. The default web.config that VisualStudio generates for New Web Application Projects still points to the SQLServerExpress Database which I had previously removed! The only instance that I have now is SQL Server 2008 R2 Developer. The web.config that is created along with other files for the for New Web Application Projects template:

[Code]....

The question is how can I change this web.config thats created with the ASP.NET Web Project template automatically from Visual Studio 2010? I can go in and modify the web.config by hand obviously. It doesnt make sense to have the web.config automatically created this way whereby the connectionstrings point to SQLServer Express that does not exist. I did in stall Visual Studio 2010 which included SQLServerExpress, but that I later removed. Now is VisualStudio always going to create web.config's pointing to SQLServer Express?

View 3 Replies

Configuration :: How To Read Configuration Settings Of Web.config Using Javascript

Apr 30, 2010

Web.config is the main settings and configuration file for an ASP.NET web application. The file is an XML document that defines configuration information regarding the web application. The web.config file contains information that control module loading, security configuration, session state configuration, and application language and compilation settings. Web.config files can also contain application specific items such as database connection strings

Example 1:

<!-- This is an example Web.config file -->

[Code]....

In this article, we will see how to read the configuration settings in the web.config using 'JavaScript'.

Step 1: Create a new ASP.NET website. Add a button control to the Default.aspx.

Step 2: Right click the project > Add New Item > Web Configuration File

Add the following sample entry to the appSettings section in the web.config between the <configuration> tag as shown in the example 1:

<add key="var1" value="SomeValue"/>

Step 3: To read these entries using JavaScript, add the following script in the <head> tag of your Default.aspx page as shown below:

<head runat="server">
<title></title>
<script type="text/javascript">
function ReadConfigSettings()
{
var v1 = '<%=ConfigurationManager.AppSettings["var1"].ToString() %>'
alert(v1);
}
</script>
</head>
Step 4: Call this function on a button click and display the values of the configuration settings

<input type="button" value="Get" onclick="ReadConfigSettings();" />
That's it. Run the application and click the button. The value of the key in the appSettings will be displayed in the alert window. I hope you liked this short article.

View 7 Replies

Configuration :: Report Viewer Configuration Error - Changes In Web Config

Jan 26, 2011

I keep getting the all-too-familiar Report Viewer Configuration error, even after double-checking changes in web.config.It worked fine yesterday morning. Then by late afternoon, after I uploaded some site changes, it reverted to throwing the error.Report Viewer Configuration Error
The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add <add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0

View 1 Replies

Configuration :: Configuration Error In Web.config [when Uploading To Hosting]?

Nov 2, 2010

when developing in my pc , all is fine , but when upload to hosting , it show error ~

[img]http://image.love9cube.net/images/sadsadcgc.jpg[/img]

View 2 Replies

Get Error "The Configuration For Physical Path C:Web.Config Cannot Be Opened" While Decrypting The Web.config

Mar 25, 2010

aspnet_regiis.exe -pdf "connectionStrings" c:web.config And this is the error I got. Error - "The configuration for physical path 'C:Web.Config' cannot be opened. And the permissions of that file is not read only.

View 2 Replies

C# - How To Modify A Web.config File As If It Was A Text File

Feb 28, 2011

by looking at using the XmlDocument and creating elements and attributes and then inserting them into the document. Pretty soon this looked like a massive amount of work for all the elements I have to add.What are the repercussions of treating the config file as one big long text string and doing a replace at certain points to add my entries. Something like this...

private void InsertXMLElement()
{
StringBuilder webConfig = new StringBuilder();
// get the file into a stringbuilder for manipulation
using (var sr = new StreamReader("C:web.config"))
{
webConfig.Append(sr.ReadToEnd());

View 3 Replies

Configuration :: How To Merge A Distribution Web.config File And An Existing Web.config File

Mar 30, 2010

I'm preparing to deploy a ASP.NET web application. The target server has already a previous version of my web application with parameters specified on the web.config file.

In the new version of this web application, the web.config file contains new sections I would like they appear into the target web.config file on the server.

However I can't find the way to merge the new web.config sections into the existing web.config file ?

Does I have to do it programmatically, or is there a tool to merge the both files during installation ? (I'm using Web Setup Project).

View 2 Replies

Configuration :: One Web.config, Two Type Of Configuration?

Mar 8, 2010

I would like to have a different connection string when I deploy the web application, without manage my web.config anytime.How can I do that?

View 2 Replies

C# - Continuous Deployment With Website?

May 19, 2010

I have a website in C#/ASP.NET that is currently in development. When we are in production, I would like to do releases frequently over the course of the day, as we fix bugs and add features (like this: [URL]. If you upload a new version of the site or even change a single file, it kicks out the users that are currently logged in and makes them start over any forms and such. Is there a secret to being able to do deployments without interfering with users for .NET sites?

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved