Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
113 views

We have a .NET 4.8 WCF project that was working just fine and compiles just fine but is now throwing up the following web.config compilation error when I try to access any end point: Compilation ...
Manjhari's user avatar
  • 164
1 vote
0 answers
49 views

In Visual Studio, you have at the top, a top down with Release/Debug options and also in the web.config a setting called Compilation where there is a setting called Debug where the values are true and ...
MiscellaneousUser's user avatar
0 votes
1 answer
110 views

How can I control access to a 2nd website from an ASP.net core website, both running on the same IIS 10 server? My team is implementing a "gateway" or "wrapper" ASP.net core C# app ...
Greg L.'s user avatar
  • 85
0 votes
0 answers
43 views

We have a strange and extreme problem when publishing our latest code from Test/UAT region to a production region. After publishing to a production the authentication stops working, users cannot login ...
James's user avatar
  • 1,345
0 votes
1 answer
189 views

I'm experiencing an issue where Visual Studio 2022 is not hitting breakpoints in a file (an .svc file) of my WCF project, even though the code changes are reflecting correctly and the breakpoints work ...
TheIntrovetCoder's user avatar
0 votes
2 answers
173 views

Here is my rule to set up rewrite rules to serve a React app's index.html file and it is not working for me, here is the url input http://mypage.com/Error/NotFound?aspxerrorpath=xxxxxxx, I am not sure ...
user25088797's user avatar
3 votes
1 answer
1k views

I want to store a secret in Azure Key vault, pull into the application settings in an app service (which is working) and when I run the app I can retrieve the data. Now I want to obtain this value in ...
John's user avatar
  • 3,934
0 votes
0 answers
405 views

I have a website setup in IIS 7 and when I try to access the Application Settings I get the following error. The path to the web.config is correct but it is adding \?\ to the beginning of the path. ...
Brian Kalski's user avatar
0 votes
1 answer
28 views

I'm trying to get the timeout value in the following from web.config: <!-- Majority of xml left out for brevity --> <configuration> <configSections>...</configSections> ...
David Klempfner's user avatar
0 votes
1 answer
317 views

I have a legacy web application in .NET 4.8 (VB). I need to add secret file and read value from it. In web.config and I added the following: <configuration> <configSections> <...
Alexan's user avatar
  • 8,715
0 votes
1 answer
118 views

I have two different rewrite rules. <rule name="Venue" stopProcessing="true"> <match url="Venue/([_0-9a-z-(-)-,-]+)/([_0-9a-z-(-)-,-]+)" /> <action ...
CodingEE's user avatar
  • 323
0 votes
1 answer
577 views

I've got an Angular application where I'm trying to use ng2-file-upload to upload files to my server and I keep getting a 413 error back when the file is large. I expect it's a server-side issue, but ...
Matt James's user avatar
0 votes
0 answers
273 views

My dotNetCore 6 webapi webservice is hosted on an internal IIS webserver. The web.config has two transforms web.Debug.config and web.Release.config. The web.config is: <?xml version="1.0&...
Mych's user avatar
  • 2,583
0 votes
2 answers
43 views

In my web.config file I want to be able to accomplish both redirects below: Redirect the root/domain: oldsite.org to newsite.org/this-is-thenewsite AND page wildcard redirects: oldsite.org/any-all-...
ScottD's user avatar
  • 1
0 votes
1 answer
174 views

I have this in my CSP key in web.config, frame-src 'self' blob: *.xxx.com *.xxx.com; and other things too like default-src , img-src and all but still while retrieving the image or pdf, I am getting ...
Akshitha Jain's user avatar
0 votes
0 answers
32 views

I had a rule Http to Https redirect which was working fine. But now I am adding new rule in the same tag for IIS rewrite rule to add query string to .js references in the entire MVC website pages. ...
Ashutosh's user avatar
-1 votes
1 answer
708 views

I'm trying to deploy a flask app on IIS using wfastcgi the IIS is on my personal Windows 10 PC. I followed all the steps in this documentation it showed me this Error with Code 0x00000067 here is my ...
Marwan Ashraf's user avatar
0 votes
2 answers
822 views

I am currently trying to allow specific websites to render an iframe of my website, but the following Content Security Policy added to my root web.config file doesn't seem to be doing the trick: <...
Nick Friesen's user avatar
0 votes
0 answers
158 views

I have a general static web app (SPA), and inside it, multiple folders representing more static web apps (SPA). The folder structure looks like this basically index.html main.js main.css App1/ ...
omega's user avatar
  • 44.5k
0 votes
1 answer
83 views

How can I change the web rewrite url from (u/username) to (/username) like instagram.com/username My web.config: <rewrite> <rules> <rule name="Rule 1"> <match url=&...
LuckyBunny's user avatar
0 votes
1 answer
419 views

Say I want my website www.example.com redirected like this: https://www.example.com -> https://example.com How would one achieve this? Here is what I tried, but it does not work. I get an ...
Clor ky's user avatar
1 vote
1 answer
2k views

I am new to Windows servers, however, I am a bit experienced on the linux side. I am trying to run some golang servers on windows. They have been on linux for a while. I am using the examples on the ...
Edwinner's user avatar
  • 2,707
1 vote
1 answer
325 views

I have a virtual server from our university for deploying my shiny apps. Before SSL certificate was installed on my server, I was running shiny apps on port 3838 correctly. Recently, I decided to use ...
Mahdi Hadi's user avatar
0 votes
1 answer
42 views

When i set this code in web.config <location path="Pages"> <system.web> <authorization> <deny users="?" /> &...
Mihailo Jovanovic's user avatar
0 votes
1 answer
36 views

I have several sites where I am now required to maintain the same session for everyone, without having to log in every time a site is opened. I have the following configuration on my sites. <...
Josue Barrios's user avatar