Tagged Questions
0
votes
1answer
27 views
pubxml XML to change a web.config value on web deployment
Suppose I have a web.config parameter under <appSettings><add key="myParam" value="myValue"/></appSettings> and I want to modify the value for myParam depending on the publish ...
0
votes
3answers
42 views
What settings does Visual Studio use from the Web.config at compile time?
We recently removed our Web.config from SVN. Inadvertently no Web.config was copied to our build server (Team City). The compiled version of our code worked properly and made it through full-suite ...
0
votes
0answers
25 views
Looping URL with IIS and URL Rewrite
I've encountered an odd issue and I need some assistance determining the error source.
I am developing a website which has a few pages in the /pages/ directory. The root is being reserved for ...
0
votes
1answer
40 views
Web.config Remove ConnectionStrings node from Web.Release.Config
I have this in my Web.config so that my service will run locally:
<connectionStrings>
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data ...
0
votes
2answers
102 views
Transform web.config file when creating a release branch
We essentially have two separate development paths:
Local → Dev → QA → Prod
Local-Release → Dev-Release → QA-Release → Prod
The first path uses our mainline/trunk, ...
0
votes
1answer
119 views
Could not load file or assembly 'System.Core, Version=3.5.0.0'. Can work on 2.0.0.0 or 4.0.0.0?
I have seen many answers to similar questions, but have an additional question
I developed a web site in Visual Studio 2008. Working well on development server. When I tried to transfer it to ...
2
votes
0answers
33 views
WCF timeouts in SOME solutions
The problem is that when I create a new solution in VS2012 and add service reference of wcf, everything works fine. However, when I add the same service reference to one of my projects, the methods ...
0
votes
0answers
220 views
Auto Generating Web.Config In Visual Studio 2012
I'm having some trouble with the endpoint generation in Visual Studio 2012. When I add a web service, the data types are added and the code is generated but no Web.Config is actually made.
The ...
3
votes
1answer
310 views
msbuild transform one config few times
I have next config in my Web.config file
<Target Name="UpdateWebConfigForProjectsBeforeRun">
<ItemGroup>
<FilesToTransofm ...
1
vote
1answer
798 views
How to add config transform for custom config file?
Visual Studio natively supports adding custom config transforms for web.config. Is there a way to do the same thing for a custom config file? For instance, the shop I'm at has an EnvironmentConfigs ...
2
votes
1answer
338 views
Encrypting web.config sections
In a .NET 4.0 website, which web.config sections can be encrypted?
I read that not all sections can be encrypted, but I can't find anything detailing which sections can.
0
votes
1answer
87 views
using solution folder in web config connection string
I want to put my db inside Solution Items folder. How can use these folder in connection string as data source.?
Thanks
1
vote
0answers
191 views
Web Configuration Transformation
Here’s a way to use the standalone Web Configuration Transformation Tool to use the same modifications that Visual Studio’s Configuration Manager uses to implement multiple deployment environments. In ...
0
votes
0answers
305 views
Site works in Visual Studio test but not IIS Server - aspx
For some reason that I can't figure out, the aspx site I'm working on works perfectly in my Visual Studio temporary test server, but when I copied it all to IIS, it doesn't work. I didn't write the ...
4
votes
4answers
618 views
web.config transform from web.template.xml not working
I'm trying to get web.config transformations working as described here. We've used this method on other projects and it works without issue, but not on this new project.
Here's what I've tried ...
0
votes
1answer
888 views
How to combine two projects in asp.net?
I am having two different websites and I want to access the second website's home page as a link in the first website. But I am getting the problem in merging them in visual studio(2008). And also ...
2
votes
1answer
573 views
How to replace web.config with transformed for debug file when running WAP in Visual Studio?
I want to replace web.config with transformed for debug config file when running in Visual Studio( I am NOT interesting in publishing project to some output directory). I want to keep original ...
1
vote
1answer
308 views
Visual Studio - Suppress web.config warning
I have the following, rather irritating, warning appearing my visual studio error list:
The element 'behavior' has invalid child element 'silverlightFaults'. List of possible elements expected: ...
0
votes
1answer
426 views
allowDefinition='MachineToApplication' beyond application level error, but it IS an application
When trying to build my website in Visual Studio 2010, I receive the following error:
It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. ...
2
votes
2answers
957 views
Difference between <compilation debug=“true”> and .csproj file settings?
Setting <compilation debug="true/false"> in Web.config seems to do things that you can also set in Visual Studio in Project properties, Build tab. Are they connected somehow? Does one of them ...
10
votes
1answer
2k views
IIS Express is automatically disabling anonymous authentication for my project, why?
When I switch my ASP.NET MVC project from Cassini web server to IIS Express, this is added to my applicationhost.config file:
<location path="MyProject">
<system.webServer>
...
0
votes
1answer
1k views
Change web.config during deployment
I need to switch between http and https during development and deployment.
To do that, I need to make the following changes in web.config:
<behaviors>
<serviceBehaviors>
...
22
votes
4answers
14k views
Error to use a section registered as allowDefinition='MachineToApplication' beyond application level
It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.
The top line in all of my aspx pages in my /portal/ directory has this error ...
8
votes
1answer
6k views
Element 'system.webServer' has invalid child element 'rewrite'. Should I fix this, and how?
I have a number of rewrite rules for a lot of things that I did in IIS7, like removing trailing slashes, canonnical URLs, lowercase lettering, and such. IIS altered my web.config, and everything ...
3
votes
1answer
987 views
Does the appsettings file attribute override what is in the app.config?
The appsettings tag in the app.config has a file attribute:
<appSettings file="other.config">
..
..
</appSettings>
How does this work? Will it merge what is in the appSettings ...
6
votes
2answers
2k views
How to remove a ConnectionString using Config Transformations
I have a Web.config with several ConnectionStrings
<connectionStrings>
<add name="connStr1" connectionString="...
<add name="ConnStr2" connectionString="...
<add ...
1
vote
2answers
54 views
Is there a way to prevent the loss of comments in my web.config if I use Visual Studio's settings editor?
I'm using the settings editor in Visual Studio 2010 to add/edit/remove my settings from the section of my .NET 4 web.config file.
Here's a (pretty vague) example extract to illustrate the bit I ...
2
votes
2answers
422 views
VS2010 Can't add web.config transformation
Once upon a time, I had a 'DEV' configuration and a 'Web.DEV.config' transformation file for my project. I then removed that particular configuration...
...Now I want it again. Problem is, when I add ...
0
votes
1answer
1k views
Unable to find the requested .Net Framework Data Provider. It may not be installed. Error
, it was working fine I have no clue about this error what should I do
Unable to find the requested .Net Framework Data Provider. It may not be installed.
Description: An unhandled exception ...
2
votes
2answers
331 views
How do I stop visual studio checking out the web.config?
I want to make changes to my web.config file but I dont want to check it out (as I really dont want to accidently check it in).
How can I do this? I unchecked 'read-only' in the file properties but ...
0
votes
1answer
272 views
Azure web role no longer copies web.config to role directory
We used to be able to access the web.config file for the Web role during the role deployment process (from the startup task):
(from servicedefinition.csdef)
<Startup>
<Task ...
4
votes
3answers
440 views
How do I handle multiple web.config transforms for different instances when dealing with multiple publish targets?
I have an Asp.NET MVC site that I manage multiple instances of. Each instance uses it's own database but the code base is all the same. To facilitate this I have several build configurations with ...
4
votes
1answer
283 views
Visual Studio's “Publish” feature prevents my ASP.NET MVC app from compiling
I've noticed a strange issue when FTP publishing my ASP.NET MVC app in Visual Studio:
After publishing, it won't compile. I get this error:
It is an error to use a section registered as ...
1
vote
0answers
309 views
How to use www root level web.Config file with “Use Visual Studio Development Center”
I hope I can explain this question sufficiently...
In the past, we have utilized a web.Config file in the wwwroot folder so multiple sites can pick up the same connectionstrings/app settings (it also ...
0
votes
1answer
285 views
Publishing using different Web.config
I have a Visual Studio 2010 web-application solution I have created. In this solution I have created a new mode in the configuration manager called "MyProjectName". I have created an additional ...
0
votes
1answer
364 views
Visual Studio SharePoint solution overwrites machineKey
Exactly what it says on the tin - any time I make a change in a SharePoint 2010 solution which results in web.config being updated by visual studio, it makes changes to the element
<machineKey ...
1
vote
2answers
995 views
How do I get rid of Unit Testing relicts in my Web.config?
While uploading my current project to our staging server I noticed that the Web.config file of my Asp.net MVC framework contains some references to assemblies called
Hostadapters.AspNetAdapter
...
1
vote
3answers
2k views
smtp.send method throws exception
I am using .net version 3.5 for sending mails though my web application
I get the following error:
The SMTP server requires a secure connection or the client was not authenticated.
The server ...
1
vote
5answers
128 views
How to get a code or stacktrace?
I am trying to figure out the execution path for some code (i.e. which methods it hits and in what order). Is there a tool, or means through visual studio or the web.config to show the order of ...
1
vote
1answer
190 views
how to disable automatic logged out feature in web.config
how to disable automatic logged out feature in web.config....
0
votes
0answers
584 views
Could not load file or assembly 'System.Web.Extensions, Version=3.5.0.0
I still can't find the reason that causing the error. It working in our local server. But, it didn't work in the shared hosting. (Medium Trust Level).
Here is the page that showed the error.
2
votes
1answer
888 views
Visual Studio 2010 - Config Transformations not working, custom build configuration not being added
I have the current problem. I want to implement "Config Transformations" to make my life easier. I currently have three build configurations in Visual Studio 2010. Debug, QA and Release. The QA ...
0
votes
1answer
434 views
Write an application to Encrypt/ decrypt various web.config (vb.net)
I'm trying to write an application that will encrypt and decrypt a web.config which has been selected.
I have found some code to do this within an application like so...
Imports System
Imports ...
9
votes
4answers
3k views
How do I do Web.config Transformations with Visual Studio Website Projects?
It doesn't seem to be possible to change the Build Configuration of Visual Studio 2010 Website Projects (as opposed to Visual Studio Web Applications), and changing the Build Configuration is a key ...
1
vote
1answer
175 views
how to create a authentication rule if i use seperate login for two folders say admin folder and vendor folder
I have the following directory structure in my asp.net webdirectory !
i want when any body access anypage inside my admin folder then it auto redirect to login page of admin folder until they login ...
2
votes
1answer
460 views
Visual Studio 2010 hangs on loading web.config
I have a weird situation: Visual Studio 2010 will hang up indefinitely on me when opening certain websites. It prompts me for my credentials and loads up much of the project tree, and then just hangs ...
62
votes
5answers
15k views
Use Visual Studio web.config transform for debugging [duplicate]
Possible Duplicate:
How can I use Web.debug.config in the built-in visual studio debugger server?
I want to use the web.config transformation that works fine for publish also for debugging.
...
15
votes
9answers
3k views
developer specific app.config/web.config files in Visual Studio [closed]
we have several .net projects where we store certain settings in config files.
Now each developer will have their own config files that differ a little (different connection strings to connect to ...
1
vote
1answer
203 views
web.config changes in installer and based on targeted environment
Need some assistance with my Visual Studio projects and in particular with release process. To release my web application, I use a web deployment project to deploy my web application.
I have split my ...
1
vote
2answers
580 views
What do these Visual Studio warnings mean?
My Web.Config Transformations are not getting published - and I think the error has to do with these warning(s) I'm getting.
Using Visual Studio 2010, I'm playing around with my Web.Config / ...
