Server Application Unavailable - exception

I am using visual studio 2005. When I debug and reached at exception point. I got following error dialouge.
message screenshot
When I click No, I got following error page.
The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request.
Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur.
I also checked the eventvwr log and it says:
**aspnet_wp.exe (PID: 3584) stopped unexpectedly.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.**
Please help me.

I can't see your image (hotlinking to that site isn't allowed), but I'm guessing that when you hit "No", you're telling ASP.NET that you don't want to debug the exception, so it's letting it bubble up to the browser, which shows you the "Webserver unavailable" that you're seeing. If you debug your error, what do you get?
Also, please fix your image so we can see your dialog box.

Related

Deploy laravel project to InfinityFree

I uploaded my Laravel project to infinityfree.net, but get this error:
This page isn’t working right now sitename.epizy.com can't currently handle this request.
HTTP ERROR 500
How to fix this?
The 500 Internal Server Error is a very general HTTP status code that means something has gone wrong on the web site's server but the server could not be more specific on what the exact problem is.
Retry the web page by clicking the refresh/reload button or trying the URL from the address bar again. Even though the 500 Internal Server Error is reporting a general error on the web site's servers and not your computer, the server error may only be temporary. Trying the page again will often be successful.
Come back later. The 500 Internal Server Error message is one of the most common error message seen when checking out during an online purchase so sales are often disrupted. This is usually a great incentive to resolve the issue very quickly.
3.Try Clearing your cache and browser history. It could be possible that the page you are seeing is a cached version, so after the cache is cleared it will go away.
You can check the error log button in cPanel under the logs section to see what errors are being given if you have cPanel hosting with us. Sometimes 500 errors can be due to syntax errors in a .htaccess file or other things you may be able to quickly fix yourself.
You need to "error mood" on in php config file(you can search it in cpanel).error mood off to error mood on to see error log.after you checked the error and solved it change error mood setting.(error mood on to error mood off).I hope this will help you a little.

Unable to reproduce Web.dev console errors

Web.dev shows that there are console errors from third party tracking software (LuckyOrange):
WebSocket connection failed: Error in connection establishment:
net::ERR_NAME_NOT_RESOLVED.
Tried to reproduce same error with Lighthouse in Chrome DevTools, also with Lighthouse CLI, Headless Chrome. Was unable to do that. There are no errors in browser console too.
Maybe somebody have experienced the same issue?
I have experience with this. I have always ignored these warnings as they are inconsistent. I THINK they are caused by my CDN blocking the automated requests, resulting in console errors. For me it happens every now and then and only after repeated querying.
Note that I have no proof for this theory.

Track sent but not received in application Application Insights

I installed version in 6.0.1 of MarkPieszak/angular-application-insights, imported the module and specified the right instrumentation key from my Application Insights App (type: node.js). A track is sent with status code 200 but I don't see any data shown in Azure.
https://github.com/MarkPieszak/angular-application-insights
Is there something I overlook here?
I was expecting exceptions to show up in the Failure Panel in Azure. Now I found out that in there only server side failures are shown. After looking under Browser in Azure I found the received exceptions I was looking for. My bad.

Server Error in '/' Application. While trying to Access stackoverflow

I am writing this from my mobile, So I keep it short. After installing Avast Free Antivirus, I cannot open the Stackoverflow webpage anymore, I get the Error "Server Error in '/' Application. Runtime Error. Description: an Exception occurred while Processing your request.additonally, another Exception occured while executing the Custom Error Page for First Execution. The request has been Terminated. Help, i am a total web noob :(
I solved this by following this guide:
https://answers.microsoft.com/en-us/msoffice/forum/msoffice_o365admin-mso_other-mso_o365b/server-error-in-application-cleared-my/78b3a5d6-78d4-4c42-8a0f-638fae7c9fb7?auth=1
1.Open your browser (such as Chrome) -> use Ctrl +shift+ delete to clear all browser data again.
2.Go to Control Panel > User Accounts > Credential Manager > Windows Credentials > under Generic Credentials, remove all credentials.
3.Open Chrome and check the result again.
same problem happened!
Just use proxy ultrasurf extension! (Any other proxy also will work) No need to delete any certificates or credentials.
In case you delete any certificates or credentials it might cause some errors in future(some applications may crash).

First-chance exception at <addr> in <myapp>: 0x000006BA: The RPC server is unavailable

What does it mean:
"First-chance exception at in : 0x000006BA: The RPC server is unavailable"
?
this debug message appears in Debug output of visual studio debugger when I using socket connection, but I don't know what operation initiates this message...
"First-chance exception" occurs when the exception is thrown, before anyone catches it. Usually, these are benign, and can be ignored (because someone is going to catch it).
You can get the debugger to break when the exception is thrown, whether or not someone later catches it.
In Visual Studio, this is done by choosing Debug / Exceptions and putting a check in the "Thrown" column for the exceptions you're interested in. Then, when the exception is thrown, the debugger will break at the relevant place.
Note that you might end up in the middle of nowhere (i.e. in disassembly), so make sure that you've got your debugging symbols configured correctly.
Also note that some exceptions aren't in the list by default, so you'll have to click the "Add..." button in that dialog.
This is most likely a bug (see these threads: 1 and 2).
I get this when debugging a C# application that calls into a COM object written in C++ when the COM object calls WNetOpenEnum (which succeeds, by the way). My system is Windows 7 x64 SP1 and fully patched, Visual Studio 2010. It happens regardless if VS is started as elevated process or normally.
The debugger reports you likely have not enabled remote debuggimg.
Check if you have Remote Procedure Call service enabled and running (MMD.exe process). This service is required by remote debugging feature.
You may try to follow How to turn on remote debugging