All Questions
Tagged with http-request or httprequest
8,170 questions
Tooling
0 votes
2 replies
47 views
How to write tests which analyze HTTP requests made on NextJS server side?
I work on a NextJS project with Pages Router. We are using Jest for unit tests and Playwright for E2E. The application we are making is a funnel with several steps. Each step is a form with several ...
1 vote
1 answer
98 views
HTTP Request to a Specific Website Fails with "Connection Timed Out" in Code, but Works in Browser
I'm encountering a consistent Connection timed out error when my application, running on a local development server, tries to make HTTP requests to a specific external website. The site loads ...
1 vote
1 answer
124 views
Is keep alive set to true by default for outgoing calls from nestjs application
I am using NestJS version "@nestjs/core": "^9.0.9" and it has axios version as "axios": "1.8.2" and nestjs/axios version as "@nestjs/axios": "^3....
1 vote
1 answer
52 views
Reading the request body of HttpRequest only retrieves 4,019 characters
I have a .NET Core web application that reads information that is posted from other computer. The transmitted information is more than 4,019 characters. I created this extension method in my ...
0 votes
1 answer
411 views
Business Central Server-Driven Paging @odata.nextLink in c#
I'm trying to get some example code to transform this logic into one where it requests while there is @odata.nextLink. There seems to be 10k records in my http response, limiting by request.Headers....
0 votes
0 answers
90 views
Allow response 404 and serving compressed files without triggering the captive portal
ESP32, Arduino Framework, using these libraries: lib_deps= ESP32Async/AsyncTCP ESP32Async/ESPAsyncWebServer https://github.com/guestisp/ESP32AsyncDNSServer.git here the relevant code: #...
0 votes
0 answers
175 views
How to print the request content of a Flurl Post call?
I am currently doing a "POST" http call using Flurl and want to be able to print the request content to see if it is correct or not, like this: var response = await _flurlClient.Request(url)....
0 votes
0 answers
97 views
Custom OncePerRequestFilter reads empty request body – why is the body already consumed?
I'm developing a Spring Boot application (with Spring Security) and need to add default headers (specifically, Content-Type and Content-Length) to requests targeting the endpoint /api/v1/mpos/set-...
0 votes
2 answers
105 views
Angular HttpRequest Interceptor Adding Header Not Working
Using Angular 14 on Win10. I've built a browser app (running non-SSL via ng serve) for LAN use only, that sends a POST request to a web server running on the same LAN. The web server is a Siemens LOGO ...
1 vote
1 answer
37 views
Compare emitted values from the same Request
In my angular component I fetch a list of objects via http-Request and render that data in a List and set some additional configdata based on that list. In the end I have a "proceed" button ...
1 vote
1 answer
27 views
Angular: data not rendering correctly
people. I have a Angular application which I am integrating with a node.js server. It works like this: A service is injected in the component The component calls the getAccountData() function from ...
1 vote
0 answers
48 views
Object lifecycle changes between .net 4.7 and 4.8 versions of System.Net.Http
I'm working on upgrading a very large legacy solution from .net 4.7 to .net 4.8. It's not been a problem on the whole but now all the projects are upgraded, I've got one failing unit test which is ...
2 votes
1 answer
885 views
Using IntelliJ's HTTP client, how can I run an imported request and pass it variables to be used in the request and response-handler?
I am trying to create a base request in getToken.http that I can import and run in my main.http file. The base request needs three variables, two of which are loaded from the http-client.env.json file,...
0 votes
1 answer
98 views
Convert ANSI to UTF in T-SQL, replacing German Umlaut 'ß' results in replacement of 'ss' as well
I'm trying to convert ANSI strings to UTF for the use in JSON format for HTTP requests. There is a specialty in German with the Umlaut 'ß'. When special keys are not allowed, 'ß' is written 'ss'. T-...
-1 votes
1 answer
95 views
HTTP Get request does not work when ESP32 is in WIFI_AP_STA Mode
I am trying to get an ESP32 (sender) to send a http get Request to a second esp32(receiver) via WiFi. For that i want the sender to be in WIFI_AP_STA mode and connect to the receiver (AP-Mode) and ...