I have a problem in returning response to AJAX from JSP page.
i have tried this code:
response.getWriter().print(result);
|
I have a problem in returning response to AJAX from JSP page. i have tried this code:
|
||||
|
|
|
What i uses for returning XML content from JSP to Ajax:
Works like a charm! I have not used other response than XML, but i suppose, if you set the |
|||
|
|
|
If you are trying to return HTML response to your AJAX query then you need to write "regular" JSP that will generate the HTM page when you call it. If you are trying to return non-HTML response then I think it will be better to use Servlet. |
|||
|
|
|
What is the type of result you are trying to return? If it is plain text or html, then set content type before writing it out. response.setContentType("text/html"); If you are trying to return other java objects like list or map, you should convert it to json object and set content type accordingly, response.setContentType("application/json"); response.getWriter().write(json); |
|||
|
|