39,482 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
35
views
Browser keeps showing Windows Authentication popup after obtaining JWT token in ASP.NET app
I have an ASP.NET application (on .NET 4.5.2) where I want to use combined Windows authentication and JWT token auth.
When the app starts, it calls an endpoint like this:
/api/auth/token
This ...
-3
votes
0
answers
169
views
Self-hosted WCF http stopped working after October 2025 update — any code-level workaround? [closed]
I created a new topic because all the previous ones about this issue were already closed, but mine got closed as well.
After installing the October 2025 cumulative update our WCF service hosted with ...
0
votes
0
answers
49
views
IIS Rewrite Rule - querystring to folders display [closed]
I am struggling with the rewrite rules. Everything I try seems to do nothings or throw a 500 error.
Basically, I need to have a URL like this:
https://test.domain.com/products.php?seriesId=1&...
0
votes
0
answers
67
views
Adding Authorization Middleware to Blazor App causes errors when hosted in IIS
I have a Blazor Server app that requires users to sign in with a Microsoft account (within my company's tenant). I'm trying to further secure it by only allowing users who meet a certain criteria, but ...
0
votes
1
answer
23
views
IIS 10 + URL Rewrite: Proxy to internal OnlyOffice (127.0.0.1:8080) returns 502 error
I have an ASP.NET application running on IIS. Inside this app I use OnlyOffice, which requires the OnlyOffice Document Server (running with Nginx).
My application runs at example:
http://my.company....
-1
votes
1
answer
79
views
Unable to connect to local database using local IIS instance
Firstly there's a similar question on Stack overflow, and I have tried suggestions from the responses, none of which have worked.
I have SQL Server and IIS running on my development machine and have ...
1
vote
0
answers
44
views
Dockerizing ASP.NET MVC application on .NET 4.5.2 - 404 from ManagedPipelineHandler on hitting an action method
I am trying to dockerize an existing ASP.NET MVC application running on .NET 4.5.2. I am using mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019 as the base image (the base ...
-1
votes
0
answers
46
views
Web application is not passing identity to Web API
We have a web application [the site] that normally uses windows authentication to connect to a web service [the api]. The web application is .NET Framework 4.5.1, ASP.NET MVC. Service is .NET ...
0
votes
0
answers
47
views
Why does HttpSendHttpResponse with CachePolicy not cache responses in HTTP.sys?
I am writing an HTTP server in Delphi on top of HTTP.sys.
I want to let the kernel cache certain GET responses so they are served directly without my code seeing the request again.
Here’s the ...
1
vote
0
answers
71
views
PHP signed video URL with HMAC works initially but fails with 500 error after multiple downloads
I have a video streaming site, and I want to add an expire time and HMAC hash to my download/stream URLs.
I’m using the following function to generate signed URLs:
function generate_signed_url($...
3
votes
0
answers
108
views
IIS time-taken shows multi-second latency while ASP.NET webforms → WCF → SQL timings are sub-second (intermittent)
Project flow / tech stack
.NET Framework 4.8
I am using ASP.NET webforms
In the same project, I have an Ajax WCF web service
That web service calls APIs in another .NET Framework WCF project
The WCF ...
0
votes
1
answer
29
views
Azure Pipelines Dynamic Parameter Generation Based on REST API Call
I am attempting to use Azure Pipelines to deploy multiple copies of the same code base with variations in the configuration for each instance. Each one is to be deployed to a separate domain ...
0
votes
1
answer
68
views
HttpWebRequest works in WinForms but fails under IIS
I’m trying to send a simple HttpWebRequest through a proxy configured as the default proxy for my account.
When I run the following code from a WinForms application, the request goes through as ...
0
votes
0
answers
53
views
Use relative paths with URL-rewrite with additional path segments
I have this rewrite rule in web.config in my C# / .NET project:
<rule name="URL Rewrite Test" stopProcessing="true">
<match url="(rewrite|testrewrite)-([0-9]+)/?&...
0
votes
1
answer
36
views
SSO with Shibboleth and Azure on IIS site with 2 bindings
I have a site that hosts some apps on IIS.
It is configured for SSO with shibboleth and azure.
The issue is that i have a new URL now and i want it to work conncurrently with the old one SSO and all
f....