I'm new to Java Servlet programming and have a question about how to handle POST response from other servers (not user's POST request) using Servlet programming.
Suppose my application needs to consult another server in order to process user's request. I need to
- send an asynchronous
POSTrequest (i.e. specify aredirect_uriin thePOSTrequest body) to the other server; - handle the
POSTresponse from the other server; - present some result to the user.
I think I need one Servlet to handle user's request and send a POST request to the other server, and I need another Servlet (since the POST request is asynchronous) to handle the POST response from the other server. My specific questions are:
What's the best way to send a
POSTrequest in this case? For example, usingHttpUrlConnection?How to handle a
POSTresponse in a Servlet? It confused me because a servlet is supposed to handle "request" not "response" but in this case the incoming message is indeed aPOSTresponse from the other server. In particular, if you can point me the relevant API/method that would be really helpful. For example, indoPost()? How to get thePOSTresponse body? (I assume we can get it fromHttpServletRequestobject).
Thanks very much!
Yue