0
votes
0answers
15 views

What's the difference between configuration/assemblyBinding and the configuration/runtime/assemblyBinding elements

In .NET framework configuration, there are 2 assemblyBinding elements: one can be directly under the configuration element, the other is under configuration/runtime. The documentation for the second ...
0
votes
1answer
44 views

Need expert advice for WCF Service programming

!--- I'm sorry if this post is redundant with some others, but the problem with my project seems to be resulting of my architecture, so I need general help. ---! I'm trying to configure a WCF Service ...
0
votes
1answer
23 views

Split appSettings section in several web.config files

I'm working on a ASP.NET project and I need to add some settings in appSettings section of my web-app. Now these settings are growing up, so I'd like to organize them in different files. I've created ...
0
votes
0answers
6 views

Linking configs in multiple .Net projects

I´m trying to link config files in a solution with no success, I have multiple projects, an MVC and a lot of Class Libraries. Each Class Library has a app.config with key/value settings. I want to ...
-1
votes
1answer
15 views

Different Web.Config Files For each User on TFS

I'am able to configure different web.config files (debug & release) on TFS. Is it possible to configure web.config files for each user separately? my objective is to include personal connection ...
0
votes
1answer
17 views

Dividing entity framework connection string into 2 parts

I'm trying to set up continuous integration for legacy project. In Web.config, there's Entity Framework connection string: <add name="StuffContext" connectionString=" ...
0
votes
0answers
24 views

split 2 web.config to avoid restart an application

I have the next two web.config in two projects, I want to create a external one which references to these two. How can I do it?. I wanted to do this to avoid to restart the application everytime I ...
0
votes
1answer
15 views

UrlRewriting with urlrewritingnet

I want to rewrite url like below http://www.abc.com/ac/ac0008 to http://www.abc.com/temp/urlRewriter.aspx?oldurl=/ac/ac0008 and http://www.abc.com/ac/ac0008?vmid=233 to ...
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
1answer
15 views

Config file transform of Silverlight projects on a CI server

I'm stuck with a transformation of the config files in a Silverlight project (i.e. the ServiceReferences.ClientConfig-file). I have followed some sources (for example this source ) on how to manually ...
0
votes
0answers
14 views

.NET software updater which updates web.config file

I am writing a software updater for a .NET MVC 3 project. The software is installed on the servers of multiple different clients, and I am trying to streamline the update process as much as possible. ...
2
votes
0answers
22 views

Is it possible to include hyperlink in app.config key value?

Is it possible to include hyperlink as a part of text in app.config key value pair (email body text as value)? I want to generate email body from app.config key value. For example: <add ...
-1
votes
0answers
17 views

Encrypting configuration section without access to destination server

I am working on an application that will be deployed to a shared hosting environment (large enterprise, distributed responsibilities). Our team does not have direct access to the server, so we can't ...
0
votes
3answers
61 views

How can I transform web.config values?

I am trying to make different config files for different cases (debug,release, etc.) and I would like to change some settings for different builds. <configuration> <applicationSettings> ...
0
votes
0answers
22 views

web.config redirect rule not re-directing properly, why?

The following doesn't redirect, I get a 404: <rule name="redirStoreLocator" stopProcessing="true"> <match url="/Store_Locator/Default.*$" /> <action type="Redirect" ...
0
votes
0answers
58 views

how to upload LINQ base asp.net application

i have developed web chat application in asp.net with using linq. its working fine when we run on local host server and connect with remote server (Web server). But i got a error when i upload ...
0
votes
0answers
57 views

Getting Timeout expired error in VB.NET on remote server without accessing database

Hi everyone I am getting an error : Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and ...
0
votes
1answer
104 views

Decrypt encryption done with RsaProtectedConfigurationProvider in web.config file outside of ASP.NET

For my .NET Windows service I need to parse the web.config file for my own ASP.NET web app. I use XmlTextReader to do the parsing, which works great, except when I need to decrypt sections of ...
2
votes
6answers
288 views

error occurred while establishing a connection to SQL Server

If I have my connection string in the web.config like this (added line feeds for better readability): <add name="conn" connectionString="Data Source=(localdb)\v11.0; Initial Catalog=MyDB; ...
1
vote
1answer
29 views

Endpoints in other config file

I have a Web Application and I want to setup my endpoints in other config file (not in Web.config). How to do this? I tried set attribute configSource in some tags but it doesn't work. Structure of ...
1
vote
0answers
29 views

.NET Membership deletes properties not on web.config in other apps

I want to make sure that I need to label this as a risk because it is the expected behaviour. I have several applications that access one database with the credentials stored. If I connect a new ...
2
votes
2answers
150 views

Allow roles not working but allow users working in web.config

I implemented asp.net membership for forms authentication. Generally for login it is used username, but i changed this to login with email id. Which is working fine. Now i am trying to restrict access ...
1
vote
2answers
58 views

Missing required whitespace from connection string in Web.config

My connection string looks like the following: <add name="RaiseFantasyLeagueConnectionString" connectionString="Server=ATLAS-SQL-07;Database=Raise;MultipleActiveResultSets="True" User Id=***; ...
0
votes
1answer
44 views

CLR Binds to the Correct Assembly with bindingRedirect, But How?

A little background: we have an app that uses 3 core DLLs that are referenced by different pieces of the application. These three DLLs are in the GAC. In our test environment we have 3 test websites ...
2
votes
2answers
295 views

“The maximum string content length quota (8192) has been exceeded while reading XML data” error while sending XML string to WCF

I am working with a .NET, C# application which intends to send a long XML string to a WCF Service method for further operation. When my application tries to send the XML string to WCF Service in ...
0
votes
0answers
68 views

Using OpenWebConfiguration on a remote server

We're trying to build a tool to help us manage a web app and to do that, I need to remotely update the web app's web.config file. In my code, I have: var config = ...
0
votes
1answer
137 views

Web.config in virtual directory is not overriding parent website's Web.config

I've got a website which has a virtual directory that also includes a website, and when I try to launch a page from the virtual directory, I receive an IIS 7.5 error that the name (from the connection ...
0
votes
1answer
47 views

Programmatically define system.web/compilation tag on WCF Service

I'm trying to define all my WCF service configuration in code, I just finished to do it with the system.servicemodel section and I got it right. But I want to set debug attribute on true from the ...
0
votes
0answers
44 views

WebResource.axd failing to get WebForms.js and WebUIValidation.js

I'm trying to deploy a .NET 2.0.50727 web site to a box running IIS 6.0 and the following 2 GET requests are failing. ...
1
vote
0answers
117 views

How can I get a custom error page to display and rewrite the URL to something friendly?

I've been pounding my head against the wall with what I see as a very simple task. Quick background: I am using URL Rewrite with IIS7 I am using a Rewrite Map to map /ErrorPage.aspx to /Error ...
0
votes
0answers
30 views

Non-Conflicting Separator Token for a one-string List of HTTP Header Values?

I'm usually just the client-side-slob on the other end evaluating the occasional header so I'm not sure what all the possible character conflicts are. Anyway, the plan is to have a .NET appSettings ...
1
vote
1answer
37 views

User is not authenticated

I have 2 Silverlight applications at the same hosting like: http://website.com/APP1 http://website.com/APP2 I can login to each of them. But after this when I try to open any TAB/MENU/POPUP ...
-1
votes
2answers
141 views

Forcing WCF to pay attention to app.config settings in a class library

Let me start out by saying that I'm aware that the way a class library is supposed to get its configuration is from the referencing project's configuration. In my case, the referencing project is an ...
0
votes
2answers
110 views

How to Override a Value in Web.config Programatically

I am developing a web app with a group of people and we all have different connection strings to our database. The connection string is stored in our web.config which is source controlled, and ...
3
votes
1answer
82 views

Custom Error page | Redirect type =301?

I guess this may be a novice question ( Which I am :) ). While redirecting user to custom error page, for e.g. 404, to tell that page wasn't found, the type of this redirect is 302. <error ...
1
vote
1answer
55 views

How to remove nodes having attribute value different from given using XSLT?

In given pretty simple and standard config: <?xml version="1.0" encoding="utf-8" ?> <configuration xmlns:env="urn:schemas-test-env"> <appSettings> <add key="Name" ...
-1
votes
1answer
182 views

web.config transforms - appSettings node does not transform

I have got appSettings that i would like to share between multiple web applications. So at my root level for my solution, i created a folder "Common ConfigSettings". In here i have all the common ...
2
votes
1answer
123 views

How to force replace an element using config transform in Visual Studio?

We know that Visual Studio has this awesome feature to transform Web.config on publish. So we can have something like the following in Web.Release.config to replace the original value in Web.config: ...
2
votes
1answer
129 views

Why can't my web project find my elmah.axd file

In my web.config file I have all the references to elmah that I need in order to have elmah running. Except this part of the code: <location path="elmah.axd"> <system.web> ...
0
votes
1answer
142 views

Cannot browse MVC site hosted on IIS 7.5 from remote connections

I have just deployed my MVC application using web-deploy on IIS 7.5. I am able to browse from the same PC as I deployed it (e.g., http://localhost/mysite/index) however, when I try to access it from ...
0
votes
1answer
153 views

SSRS Report Fails to Load in .net Report Application

We have a custom .net Report Application that is attempting to load a slightly data intensive SSRS report. Strangely, the report runs fine and returns data, albeit a little slow, when it is ran ...
0
votes
0answers
145 views

Multiple OU:s in LDAP connectionstring in web.config for .NET application

Is it possible to have two specific OU:s in your connectionstring? Have seen some examples on google with semicolon, questionmark delimiting different OU:s but couldn't get those to work. Found a ...
1
vote
3answers
97 views

How to hook into Application_Start from Web.config?

I have some logic I would like to execute in the Application_Start, but instead of having to add this to the Application_Start in Global.asax.cs, is there I way I can add an entry into the web.config ...
0
votes
1answer
214 views

ASP .net LocalReport on ReportViewer control not rendering for certian users

I have an issue with an ASP page I'm working on. I have a small site with a web.config for security. I added a new page and put it in a new folder so I can make a different web.config and add a few ...
0
votes
0answers
55 views

Why is System.Web.Routing added in “compilation” section in default MVC3 project web.config?

When I create a new project using "ASP.NET MVC3 Web Application" template in Visual Studio 2010 I get a project with web.config that among other stuff has this in ...
1
vote
0answers
72 views

Web.config - Custom configuration to hold a collection inside a collection

I am setting up a custom configuration in web.config using <configSections></configSections>. The structure of tags which I want and created in web.config is: ...
1
vote
3answers
110 views

Web.config error with <authorization> node

When I add <authorization> it displays the page but without the css. Anyone has an idea why?? Here is my web.config <?xml version="1.0"?> <configuration> ...
0
votes
1answer
231 views

iam getting web.config file error and 500 error in godaddy after uploading my web files to the server

<configuration> <system.net> <mailsettings> <smtp deliverymethod="Network" from="gdkpavan@gmail.com"> <network defaultcredentials="true" host="smtp.gmail.com" ...
0
votes
2answers
238 views

GoDaddy Web.Config URL Rewrite not working

I have the following error that is causing me to pull my hair out, and GoDaddy support is absolutely terrible. Their response is basically "We can't help you". Can anybody see anything wrong with the ...
0
votes
0answers
47 views

How to map relative paths on nested 'defaultDocument' in IIS7.0?

I'm trying to setup a page that is not in the application root as a default document via the defaultDocument configuration setting in the application web.config file, like this: ...

1 2 3 4 5 10