raks05
(Rakshita Singh)
September 20, 2024, 11:41am
1
Share the screenshot of the measures tab and also sonardashboard where the project are reflecting blank though it is searching with the project name
Colin
(Colin)
September 23, 2024, 10:03am
2
Hey there.
If you hop into your browser’s DevTools , what API call is failing and with what error?
raks05
(Rakshita Singh)
September 23, 2024, 11:26am
3
This is what I can see in DevTools. Do you have any solution?
Colin
(Colin)
September 25, 2024, 2:44pm
5
Thanks. It doesn’t look like SonarQube is returning that 404 error, but rather something sitting between your SonarQube server and the network. Typically this is something like a reverse proxy (which is also responsible for serving your SonarQube server over HTTPs, I can see from your screenshots that is the case).
What are you using? Nginx/apache/IIS…?
raks05
(Rakshita Singh)
September 26, 2024, 7:56am
6
Hi Colin,
We are using IIS manager for reverse proxy.
Colin
(Colin)
September 26, 2024, 2:47pm
7
This smells like an issue with maxQueryString, although I would have expected a different HTTP code.
I solved this problem by increasing the max querystring length by editing the web.config file in wwwroot to include the following
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<customErrors mode="Off"/>
<httpRuntime maxQueryStringLength = "10000" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxQueryString="10000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
raks05
(Rakshita Singh)
September 27, 2024, 8:55am
8
Thankyou Colin this worked