I want to make request to a web service which will return an image based on request parameter?
What is the best possible approach for this?
I want to make request to a web service which will return an image
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.
Simply make a Servlet serving image, pass the parameter to it process image based on param and return as a response, This would serve as a rest web service, You could also go for some standard implementation of webservice to achieve this
Also Check