Snippets tagged “http-request”
3 snippets use this tag.
- @RequestParam vs @PathVariableJava
In Spring MVC, the @RequestParam annotation is used to bind a request parameter to a method parameter.
- How to call a SOAP web service on AndroidJava
To call a SOAP web service on Android, you can use the HttpURLConnection class to send an HTTP request to the web service and receive the response.
- laravel - get parameters from http requestPHP
In Laravel, you can use the $request object to access parameters from an HTTP request.