iis-express

Asp.Net CPU issue working with Kendo UI treeview after Visual Studio 2013 Update 2

拟墨画扇 提交于 2019-12-06 04:09:27
I'm developing Asp.Net MVC website using Kendo UI. Installed Visual Studio 2013 Update 2 RTM and got CPU issue on IIS (CPU >= 30%). http://c2n.me/i7juKB.png After an hour of searching issue, found that the problem is in Kendo UI Treeview with hierarchical data. Kendo Treeview Asp.Net MVC wrapper code: @(Html.Kendo().TreeView().HtmlAttributes(new { style = "height:150px;" }) .Name("treeview-library-country") .Events(events => events.Select("common.onTreeViewSelect").Collapse("common.onTreeViewCollapse").Expand("common.onTreeViewExpand")) .Checkboxes(checkboxes => checkboxes.Name(

Why async await doesn't working on IIS, but it's working on IIS Express

若如初见. 提交于 2019-12-06 03:51:44
I don't understand, why async/await doesn't resolve problem with IIS threads. I see that we have limit on IIS threads equals 10, when I use IIS and no limits for IIS express. I add 2 methods in HomeController for repeat this problem. One of them (method) use Thread.Sleep and other use async/await. Of course I use logger (NLog) for describe this problem in more details. I use apache-jmeter-3.0 with 100 parallel request for one url as stress test. I was very surprised when the test execution time was approximately the same for IIS and not same for IIS express. Some code from HomeController

IIS Express with Website Project, how to use inside virtual directory?

佐手、 提交于 2019-12-05 23:19:50
My production environment have a root, and my virtual directory will be at /brazil folder inside the root. When I convert my website project(not web application), that works correctly with Cassini at /brazil since my website folder is brazil, IIS Express put the site at root, how can I change this? I'm seeing similar problems with IIS Express with web applications. From what I'm seeing, IIS Express actually allows you to define a folder in the 'Project Url' field, but then when launching it generates 2 websites, one with the folder and another for the root application. Problem with this is

Visual Studio keeps adding IIS Express back into my launchsettings.json

↘锁芯ラ 提交于 2019-12-05 14:51:54
问题 I am trying to remove the IIS Express profile from my .NET Core launch settings but every time i repoen the solution, Visual Studio adds it back in again. For example, in a new project my launch settings looks like this { "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { "applicationUrl": "http://localhost:55735/", "sslPort": 0 } }, "profiles": { "IIS Express": { "commandName": "IISExpress", "launchBrowser": true, "environmentVariables": {

How can I stop IISExpress from dumping every detail of every request into the Visual Studio Output window?

时光总嘲笑我的痴心妄想 提交于 2019-12-05 12:25:12
问题 My VS 2013 output window is full of this: iisexpress.exe Information: 0 : Request, Method=GET, Url=http://localhost:51741/api/Clients/?$filter=UniqueName eq '6269', Message='http://localhost:51741/api/Clients/?$filter=UniqueName eq '6269'' iisexpress.exe Information: 0 : Message='Clients', Operation=DefaultHttpControllerSelector.SelectController iisexpress.exe Information: 0 : Message='MyProj.Controllers.ClientsController', Operation=DefaultHttpControllerActivator.Create iisexpress.exe

iis express path for global theme directory

谁说我不能喝 提交于 2019-12-05 12:21:23
I'm using Visual Studio 2010 SP1, ASP.NET Webforms, Framework .NET 3.5 and IIS Express (also called WebMatrix). I get the following compilation error in Visual Studio with my WebSite : Theme 'MySweetyTheme' cannot be found in the application or global theme directories. Do you know where the global theme directories is located with IIS Express ? (My favorite search engine seems unfriendly this time). For information : With IIS 5.0/6.0 the global theme path is : C:\Inetpub\wwwroot\aspnet_client\system_web\2_0_50727\Themes With Cassini (ASP.NET Development Server) the global theme path is : C:

Why does the Windows command shell tell me to use a different command and then say that command does not exist?

随声附和 提交于 2019-12-05 12:04:09
In connection with my handheld > server app using Web API RESTful methods problem discussed here ( Does an ASP.NET Web API app need to be installed into the "real" IIS before a handheld device can access its RESTful methods? ), I tried to verify I wasn't having a firewall problem by using the shell command delineated here: http://www.hanselman.com/blog/WorkingWithSSLAtDevelopmentTimeIsEasierWithIISExpress.aspx , explicitly: netsh firewall add portopening TCP 80 IISExpressWeb enable ALL I also did it using port 777, as that is the one I've got set up in applicationhost.config: <bindings>

Cannot launch asp.net core web app in IIS Express

随声附和 提交于 2019-12-05 11:53:55
问题 [Edit] The problem is BitDefender anti virus. I followed the instructions on how to install asp.net 5 beta 8. I was able to install all the necessary files without any problem. However every time I selected the web template and attempted to run it using IIS Express it would load for a couple of minutes before displaying an error: HTTP Error 502.3 - Bad Gateway... I tried all the troubleshooting steps in this guide but was unsuccessful. I checked my event log and noticed the following two

IIS Express Enable External Request - 503

﹥>﹥吖頭↗ 提交于 2019-12-05 10:58:44
I have attempted to get IIS Express working so that external users can view my MVC ASP.NET development website. I followed instructions on this SO answer but am now getting a 503 error when accessing the website using my external IP address, localhost still works fine. My configuration file seems ok <site name="ManagerUI" id="5"> <application path="/" applicationPool="Clr4IntegratedAppPool"> <virtualDirectory path="/" physicalPath="D:\Application Development\Manager\MAIN-Branch\ManagerUI\ManagerUI" /> </application> <bindings> <binding protocol="http" bindingInformation="*:1904:" /> </bindings

Testing SignalR App in IIS Express

那年仲夏 提交于 2019-12-05 08:10:11
Hello everyone I am using visual Studio 2012 and Developed a simple application for vetting purposes only However I am stuck because when I try to preview the application, I get the Following Error Message [PlatformNotSupportedException: This operation requires IIS integrated pipeline mode.] System.Web.HttpResponse.get_Headers() +9681446 System.Web.HttpResponseWrapper.get_Headers() +9 Microsoft.Owin.Host.SystemWeb.OwinCallContext.CreateEnvironment() +309 Microsoft.Owin.Host.SystemWeb.IntegratedPipeline.IntegratedPipelineContext.GetInitialEnvironment(HttpApplication application) +246 Microsoft