Questions tagged [http-parameters]

48 questions
-1
votes
1 answer

How to add parameters in service call for @RequestParam backend?

If i have something like @GetMapping(value = "/list") public ResponseEntity findStatusPerEC(@RequestParam final List numbersEC) How do I add numbersEC in my url on the frontend? Is this query parameter? I know this one was for old…
-1
votes
2 answers

Read HTTP Parameters on TCP port using Java ServerSocket

How would I read the HTTP Request parameters if I send an HTTP Request from a Java Servlet and receive it on a TCP port using ServerSocket. Can anyone please help me on this? Following is my design Servlet GET/POST using HttpURLConnection URL…
Hiren
  • 772
  • 9
  • 23
-2
votes
2 answers

Angular HTTP get request returning undefined

I am trying to make an HTTP get request at takes a userId as a parameter and returns a single user profile using Angular, but keep getting undefined data returned. I know the problem isn't with my backend server because the same HTTP get request…
1 2 3
4