I have no idea, how to send some text using HTTPCLIENT (java // apache) library. I need to send parameters by text to server.
Any idea?
I have no idea, how to send some text using HTTPCLIENT (java // apache)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assume you have
some-remote-serveras your remote server address andsome-servletas your remote servlet which acceptsparam1,param2etc.. with its respective values on request. If the remote servlet accept GET call you can use below to send the request;And then recieve the response return from the remote servlet like this;