Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to write simple mail sending JAX-RS Service using Jersey. Web Service would be target of HTML FORM tag and in a post call, it accept receivers address from <SELECT> list of HTML.

How can we read the data from <SELECT> in WebMethod using @FormParam param.

Is there any way to send this data to List<String> parameter of method?

Samples are below:

@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces(MediaType.TEXT_HTML)
@WebMethod
public String sendEmail(@FormParam("toAddress") String[] toAddress,
                        @FormParam("cc") String cc,
                        @FormParam("bcc") String bcc,
                        @FormParam("from") String from,
                        @FormParam("subject") String subject,
                        @FormParam("msg") String msg,
                        @FormParam("host")String host,
                        @FormParam("contentType")String contentType,
                        @Context HttpServletRequest request) {
  // ......
}

JSP Page:

<form action="http://localhost:8080/CloudMail/rs/CloudMailService" method="POST">
    From : <input type="text" name='from'></input><br>
    To : <select name='toAddress' multiple="true">
        <option value="xyz@gmail.com">XYZ</option>
        <option value="pqr@gmail.in">PQR</option>
        <option value="abc@abc.in">ABC</option>
    </select><br>
</form>
share|improve this question
expecting answer on above, let me know if you want me to give additional information. – RickDavis Jul 27 '12 at 18:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.