The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
29 views

asp.net development server port not same as web application port

When i run my asp.net web application on VS2008 SP1, it starts ASP.NET development server with port 1257 but web application is trying to be browsed on localhost:1559. So my web application can not be ...
0
votes
0answers
31 views

ASP.NET development server: possible misconfiguration?

I'm facing a weird issue. I'm developing a website using C# and .NET 4, and I want to add routing service. After following several tutorials (unsuccessfully), I finally put myself in using an example ...
0
votes
0answers
92 views

Handler “websocket” has a bad module “ManagedPipelineHandler” in its module list

I've got a Web Socket server and a client in WinRT app. When I deploy my server on localhost it works. But when I deploy on my Windows Server 2012 I got the following error: "Handler "websocket" has a ...
1
vote
1answer
866 views

Type is not resolved for member “Microsoft.IdentityModel.Claims.ClaimsPrincipal,Microsoft.IdentityModel”

Any thoughts about how to resolve this error? I'm stuck at the moment and having a hard time finding reading on this. Any help would be greatly appreciated: Server Error in '/www' Application. Type ...
1
vote
0answers
83 views

Unable to load xml file in javascript running site under Development Server

I am unable to load an xml file in javascript (using the same code as here) when running the site under the VS Development Server. It works when running under IIS. I know that IIS displays static ...
0
votes
1answer
111 views

xap loading error on asp.net development server

Recently I started to get a strange error, While loading xap file it stops! In %95 in %4 very random . There is an error in browser's developer console Uncaught Error: Unhandled Error in ...
0
votes
0answers
86 views

IE8 error while asp run: cant display webpage. Firefox works

I'm developing a .Net application that works in VS2010 IDE environment and Firefox browser but not on IE8. After many seconds of working, IE sends a generic message - Can't display the webpage, while ...
1
vote
0answers
34 views

Visual Studio Development Server 2010 renders partial pages

I'm working on an ASP.Net web application. Over the last week the development team has noticed the pages are only partially rendering. That is when you click on a link, or a button or anything to ...
2
votes
1answer
480 views

ASP.NET URL-rewriting works in Development Server but not in local IIS

I'm programming ASP.NET using visual studio 2010 and IIS 7.5 I have URL-rewriting in Global.asax (RouteTable.Routes.MapPageRoute). It works in Development Server but not in IIS. Is there a ...
1
vote
1answer
506 views

Visual studio: disable web development server for some web projects

I'm working on a web platform which uses ASP.NET MVC and supports plugins. In this platform, each plugin is a folder under /Plugins folder. For example, plugin A's virtual path is /Plugins/PluginA. ...