-
Notifications
You must be signed in to change notification settings - Fork 59
Running ASP.NET 5 RC1 on Windows Web Server 2008 R2 - 502.3 error #79
Comments
Maybe this report should be moved or created under different category/project like https://github.com/aspnet/Hosting ? |
This is the right place. We're still getting used to HttpPlatformHandler and it's various error cases. Here is one of the better writeups sofar: aspnet/Hosting#364 (comment)
Have you confirmed that dependency? |
Hello, thanks for responding. I saw somewhere else (maybe StackOverflow) mentioning about Visual C++ Redistributable and I've it installed for x64 and x86 with version 11.0.61030.0. I was trying to set app pool to x64 (since by default I'm using 32bit app pools), setting pool user with more permissions (even Administrator), setting it to no managed code too. Every try ended with error: Error Summary Issue is identical on all three Windows Web Server 2008 R2 systems. |
|
Nope. There are only 20 event log Application errors with content:
EDIT: I even tried to do something like that:
Now I was hoping that what ProcMon gathered will contain operations with PID mentioned in this 20 errors like PID number 228020 but I didn't found nothing for this numbers. |
One comment which looks similar to my issue is here: with info:
but I'm not sure where I should specify this option since whole process is being made from VS where I'm importing publishing profile and publish app using WebDeploy directly to IIS server. |
They're referring to the command line steps for publishing. What are your actually publishing steps? Using VS to publish to the file system, with a specific runtime (who's bitness matches your app-pool), and clearing the contents of the output dir. Then copy that output to the web server, set permissions, etc.. |
One way to troubleshoot issues when the application can be start as the current user and won't start with IIS is to try to start application as a different user who does not have all dev settings set. Just publish the app to a folder accessible to everyone (or just use the same folder you published for IIS) and start a cmd using the runas command and try to start the application. |
I am not sure if this is going to help, I was however struggling to find the cause of an exception like that when I published a new version of my vnext app to IIS, w3wp.exe was crashing and event log gave me this: HttpPlatformHandler: "The description for Event ID 1000 from source HttpPlatformHandler cannot be found". This occurred when I changed the web command in my project.json from: |
@niclasebs The lack of WebListener support is a known issue: #8 |
It looks like I will have to update my 2008 systems to 2012 R2. I should done this long time ago anyway. |
That workaround only applies to the latest RC2 packages. For RC1 use the Map workaround instead. #14 (comment) |
@dotcom9 Were you able to make this work in Win 2008? |
Hey folks, can you try this again with the new AspNetCoreModule? #105 |
Closing. Please reopen if new information is available or error occurs again |
Hello,
I'm managing mixed 2008 R2, 2012 and 2012 R2 hosting environment managed by WebsitePanel control panel. I've started interesting in testing and adding possibility to run ASP.NET 5 RC1 and later versions (when they will be released). I've installed the same set of software httpPlatformHandler 1.2 and AspNet5.ENU.RC1_Update1.exe package on every system. On each system I'm publishing the same sample app from Visual Studio 2015 Community Edition (using WebDeploy) and now interesting part: this app worked out of the box on all 2012 and 2012 R2 systems but not on every of my 2008 R2 systems. Does anyone have any idea where to look for solution? I'm struggling with this for maybe a week, I've tried to narrow down issue using Process Monitor but still I don't know what is causing it. I have updated systems with latest Windows Update updates, I've tried multiple times to install httpPlatformHandler by downloading it using Web Platform Installer and directly from IIS website. HttpPlatformHandler version on 2008 R2 and 2012 systems is the same and it is 1.2.1959. I've tried to set stdoutLogEnabled to true but in logs directory is only created empty log file without any content. When website is being opened only w3wp.exe process is being started for it and event log contains event id 1000 entries for HttpPlatformHandler source with identical content:
HttpPlatformHandler module is present in Modules visible in IIS Manager for local IIS server. Does anyone have any idea where to look for solution? Interesting part is that this is not working identical on all of 2008 R2 systems so IMHO this is not one system specific issue. I've tried to look for solution in a lot of places but mostly fix was updating HttpPlatformHandler to latest 1.2 version which will not work since I already use latest version.
Thanks
The text was updated successfully, but these errors were encountered: