Publishing to a hosting site breaks the login #5337
-
I downloaded the source code. I created the pages I wanted and configured the site the way I wanted. At the moment to publish this to my hosting it fails when I try to login. Adding code to figure out the error it is giving me this exception: An invalid request URI was provided. Either the request URI must be an absolute URI or BaseAddress must be set. at System.Net.Http.HttpClient.PrepareRequestMessage(HttpRequestMessage request) at System.Net.Http.HttpClient.SendAsync(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) at Oqtane.Services.ServiceBase.PostJsonAsync[TValue,TResult](String uri, TValue value) at Oqtane.Services.ServiceBase.PostJsonAsync[T](String uri, T value) in D:\Projects\BlazorStore\trunk\bitkulki\oqtane.framework-dev-6.1.3\Oqtane.Client\Services\ServiceBase.cs:line 215 at Oqtane.Services.LogService.Log(Alias alias, Nullable Does anyone know why? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@davidcanar Official Releases: For example, to install the latest official release (v6.1.2), download the following ZIP package: Oqtane 6.1.2 Install Package: Please note that publishing the application directly from Visual Studio won't include everything needed to run Oqtane properly. Instead, Oqtane uses a custom packaging process handled by a batch script, which ensures a complete and functional build: Packaging Script (release.cmd): |
Beta Was this translation helpful? Give feedback.
I finally found the issue. My IIS didn't have installed "WebSocket Protocol".
I had to go to the "Turn Windows Features On/Off"
Enabling this the error message goes away and it now works. Thanks again