About 1,240,000 results
Open links in new tab
  1. rest - RESTful call in Java - Stack Overflow

    I am going to make a RESTful call in Java. However, I don't know how to make the call. Do I need to use the URLConnection or others?

  2. html - How to send HTTP request in Java? - Stack Overflow

    Aug 31, 2009 · In Java, How to compose an HTTP request message and send it to an HTTP web server?

  3. Simplest way to call REST API and parse JSON data with Java

    Aug 2, 2019 · I'm trying to do something that is trivial in JavaScript, but seems complicated with Java. I'm hoping someone can point out how to do it simply in Java as well. I want to call a …

  4. Sending HTTP POST Request In Java - Stack Overflow

    Jul 24, 2010 · Sending a POST request is easy in vanilla Java. Starting with a URL, we need t convert it to a URLConnection using url.openConnection();. After that, we need to cast it to a …

  5. How do I do a HTTP GET in Java? - Stack Overflow

    Dec 28, 2015 · How do I do a HTTP GET in Java?One of the advantages of cletus's answer (using Apache HttpClient) is that HttpClient can automatically handle redirects and proxy …

  6. Java HTTPS client certificate authentication - Stack Overflow

    This PKCS#12 file will be used by the Java client to present the client certificate to the server when the server has explicitly requested the client to authenticate. See the Wikipedia article on …

  7. How to make HTTPS GET call with certificate in Rest-Assured java

    Apr 1, 2016 · How can I make a GET call using Rest-Assured in java to a endpoint which requires certificate. I have certificate as .pem format. In PEM file there is certificate and private key.

  8. How to do a SOAP Web Service call from Java class?

    Apr 11, 2013 · SOAP with Attachments API for Java (SAAJ) is mainly used for dealing directly with SOAP Request/Response messages which happens behind the scenes in any Web …

  9. java - Spring Boot REST API - request timeout? - Stack Overflow

    I have a Spring Boot REST service that sometimes call third party services as a part of a request. I would like to set a timeout on all my resources (let's say 5 seconds), so that if any request ha...

  10. rest - Java: How to make API call with data? - Stack Overflow

    Sep 15, 2017 · Java: How to make API call with data? Asked 8 years, 3 months ago Modified 6 years ago Viewed 26k times