Questions tagged [asp.net]

Web application framework developed by Microsoft

ASP.NET is a web application framework developed by Microsoft that allows web developers to create dynamic web sites and applications.

First released in January 2002 it is the successor to Microsoft's Active Server Pages (ASP) technology.

ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language such as C# or VB.NET.

1234 questions
3
votes
0 answers

ASP.NET directories blocked from VisualSVN Server behind reverse proxy in IIS 6

I’ve got VisualSVN Server running behind a reverse proxy in IIS 6, Windows Server 2003. This isn’t ideal, but for the main web app on the server I’ve only got one IP address and SSL certificate available. Everything works except for when trying to…
user143344
  • 31
  • 1
3
votes
2 answers

ISA or IIS removing HTTP Authorization header when published

I am developing web api by using Asp.Net WebApi (RC) and passing user credentials via http "Authorization" header. I am getting trouble on receiving "Authorization" http header on server side. I am able to receive it when testing on local machine.…
user1589040
  • 31
  • 1
  • 2
3
votes
2 answers

How can I track down the cause of a 400: Bad Request web service call to localhost?

This is on Windows Server 2003 Running IIS. I have an ASP.NET 2.0 website which is also hosting some web services. When the site makes a webservice call to itself (localhost), I get back a 404: Bad Request. I would like to see the actual request…
MStodd
  • 171
  • 1
  • 8
3
votes
0 answers

Win 2008 web server starts timing out when making web service calls

Our .NET web app makes web service calls to Amazon S3 and to a partner system. Out of nowhere, we've had two recent episodes where our web server starts to intermittently timeout on these calls. Logged error: System.Net.WebException: Unable to…
Dave Clausen
  • 143
  • 6
3
votes
2 answers

Setting Up Login for ASP.NET Application on SQL Server 2008

I have 2 Windows 2008 Servers. One is a web server (IIS7). The other is a database server (SQL Server 2008). The instance of sql server 2008 is configured to use mixed mode authentication. Neither are joined to an active directory domain. How should…
3
votes
2 answers

Where can I report an issue with ASP.NET Browsers File?

While working with an ASP.NET application on Chrome for Android I discovered that Request.Browser.Cookies returns False for that browser (despite the browser supporting cookies). Based on what I've read, this indicates a problem with the database…
Nathan Taylor
  • 240
  • 3
  • 11
3
votes
1 answer

IIS 7 Windows Authentication Wrong User

IIS 7, Integrated App Pool, Identity set to NetworkService We've recently moved an asp.net MVC 3 to our production environment. The application uses windows authentication. The production environment is setup on a web farm on IIS 7, running Win 2008…
B Z
  • 141
  • 1
  • 8
3
votes
2 answers

How to configure IIS 7.5 to allow special chars in Url for ASP.NET 3.5?

I'm trying to configure my IIS 7.5 to allow specials chars in the url for ASP.NET. This is important to support wide-spread legacy url's on a new system. Sample url: http://mydomain.com/FileWith%inTheName.html This would be encoded in the url and…
3
votes
1 answer

What is causing ntoskrnl aka the System process to continue accumulating handles

I have a server which is accumulating handles on the System process aka c:\windows\system32\ntoskrnl.exe. The handles go to 18,000 in one day and keep going forever up at that rate. The server is running Postgresql 9.0.3, asp.net web services which…
Adam Bruss
  • 151
  • 6
3
votes
5 answers

Issues with Classic ASP on IIS7

The project I'm working on is currently using classic ASP running under IIS7. We are considering migrating to ASP.NET for portions of the code, but would still likely have some classic ASPs around still. It is my understanding that our ASP.NET code…
Bert Lamb
  • 153
  • 6
3
votes
1 answer

The package failed to load due to error 0xC0011008 Error Loading from XML

Environment: Windows Server 2008 SP2 Enterprise Edition 64-bit SQL Server 2008 SP3 Standard Edition 64-bit Previously had SQL Server 2005 Developer Edition 32-bit Integration Services. That has now been uninstalled. ASP.NET v4 IIS 7 Our ASP.NET…
Chad Braun-Duin
  • 2,259
  • 3
  • 15
  • 11
3
votes
1 answer

How to add a new website to a fastcgi-mono-server4 process on nginx without having to restart existing websites?

I know this might be related but I have a script that loads fastcgi-mono-server for defined websites on a configuration file and I need to a new website to the pool without having to reload all fastcgi process. Doing nginx -s reload Just reload…
Rui Marques
  • 190
  • 13
3
votes
2 answers

How to see all websites in IIS using appcmd list site

I want to see all the websites in IIS 7.5. I typed appcmd list site It lists only “Default Website”. It is typed from C:Windows\System32\inetsrv. Any idea why it does not list other sites that are under default website? Note: Even when I type it…
LCJ
  • 176
  • 1
  • 10
3
votes
2 answers

sql server licencing (How many cal)

Possible Duplicate: Can you help me with my software licensing question? My asp.net web app is using one sql server account to work. i need to buy sql server standart edition. i wonder to know if only one cal is enough or must buy one cal for…
rdonuk
  • 133
  • 4
3
votes
2 answers

Localhost stop resolving after a few minutes IIS 7.5

I am running IIS 7.5 on my local machine (Windows 7 Home Premium) and localhost works for about three requests and then stops taking requests. The strange thing is when I switch to calling it with 127.0.0.1, I can access the page again but then the…