My clients used from firefox version 60.
My application type is blazor webassembly .net7 Asp.Net core hosted.
But on firefox version 60 It does not run, is there away to run blazor webassembly .net7 on old browsers?
My clients don't have a way to update their software and I have to find a way.
It gives this error: Firefox can’t establish a connection to the server at wss:://localhost:44359/XXX.Server/.
Related
I have an ASP.NET Core 3.1 MVC application connected to a SQL database and it's
working perfectly when I launch it from Visual Studio with the IIS
Express profile.
I'm trying for more than a week just to publish it on IIS on my dev machine and I keep getting the error
HTTP Error 403.14 - Forbidden
I've done the below troubleshooting and searched for more with no result.
I make sure that my Windows account is a member of the administrators and IIS_users.
Install from Windows feature IIS services as attached picture.
Install SDK and .NET and runtime packages.
Made sure that the .NET Framework version value is v4.0
Note: after publishing to a folder, I deleted the web.config file since it's .NET Core 3.1.
note2: I have added a screenshot of my IIS how it looks after adding the website on it.
Please guide me on how could I fix this and many thanks in advance.
My angular 7 , .net core project is getting error "Cannot GET /" on first running of project.
After server started when i just save any of my angular 7 files in editor, the browser reloads and working fine, but on initial starting its getting error.
There are no Errors found on client side or server side.
Did anyone came across such a problem?
“Cannot GET / ” after initial running of project
I have encounter this issue everytime when I run ASP.Net Core and Angular template. It's because when we run ASP.Net Core server it will run 2 port 1 port for ASP.Net Core server and 1 port for Angular.
The Angular port will have to build and bundle everything so it may take time to bootstrap angular app and sometime we will have time out issue lead to “Cannot GET / ” after initial running of project. So my recommend is you navigate to ClientApp folder run
ng serve
and wait until everything is done build then you can run ASP.Net Core using visual studio by ctrl + f5
I get a 404 Error when I try to run my Web API service on IIS 6. When I run it locally, it works. On IIS, my virtual directory is running .NET 4. The framework that my project is running is 4.0.
I have read many posts on this forum regarding the same issue, but haven't found a solution. Are there any special configuration settings on IIS 6 or code that needs to be written that enables IIS 6 to recognize Web API? Also, do I need to install MVC?
The following error is what I encounter when trying to authenticate with Google on my MVC app after deploying to production with Visual Studio 2017 (see attachment).
Chrome Network inspect
Mention : It works with localhost perfectly.
The server which runs the IIS on behind a netscaler which does the port translation.
The app is set to run on SSL, as the IIS and the netscaler.
Is there a code workaround? Or another "easy" way to implement google authentication without using the MVC build-in OWIN ?
Here is my current setup:
My Local Computer: This is where I created and programmed my ASP.Net WebForms project with Cloudflare Flexible SSL enabled using visual studio 2015 professional on Windows 10. I also have the team explorer enabled meaning my project is synced to Github and all of my files are also stored there in my own repository.
My Server Computer: Running Fedora 24, I've installed the dotnet CLI (a.k.a .Net Core), apache (httpd), nginx, and Mono for ASP.Net. I want to deploy/publish and host my webforms project on this computer in the default web directory (/var/www/html/mysite/)
The problem is, the dotnet cli relies on a project.json and is not compatible with WebForms. .Net Core is basically not an option. When I use mod_mono, I get an Error 500 (see below) if I connect to https://localhost:9000/ while running the server using the command xsp4 --port 9000. I can't use xsp4 --port 80 or xsp4 --port 443 because then it claims Address is already in use even though httpd is the only process listening on those ports. Note that I can sucessfully build the project using the xbuild command.
How can I take my project from github or my local computer and deploy it on to my server computer? Am I missing something? Here is my virtual hosts configuration for reference: httpd.conf. I typically get no errors when starting httpd.service.
EDIT:
I've also used nginx with fastcgi-mono-server4 with this configuration instead with nginx, which I got straight from here, but still no luck. I usually get this Error 500: other times I can get other types of Error 500. If there is a solution that works with either apache or nginx, please let me know.
Your code is Full NET and not even NET Core and trying to deploy it to Mono Framework. This may not work, Convert your project into Mono or NET Core and retry.