Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-24-2007, 02:13 PM
Member
 
Join Date: Jul 2007
Posts: 3
sabatier is on a distinguished road
Velocity / XML response
Hi everyone, I'd be grateful if someone could help me out here. I use apache velocity to generate an xml request to send to a gateway which processes the request and sends an xml response. At the moment, the response (xmlString) is outputted to the browser as a string (see code below).

I want to separate out the elements in the response and display them in a more readable format on the browser eg.


Name = "xyz"
Address = "xyz"

Here is a snippet of what I have. What is the quickest way to extract the individual elements from the xml response and display them?

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
try {

DiskFileItemFactory factory = new DiskFileItemFactory();
factory.setSizeThreshold(4096);
factory.setRepository(new File( _FOLDER_UPLOAD ));
PrintWriter writer = response.getWriter();
ServletFileUpload upload = new ServletFileUpload(factory);
upload.setSizeMax(60000000);

String xmlResult = executeCheck( upload, request);
manageResponse( writer, xmlResult);

} catch (FileUploadException e) {
e.printStackTrace();
}
}

private void manageResponse(PrintWriter writer, String xmlResult) {
writer.println(xmlResult);
writer.flush();
}

private String executeCheck( ServletFileUpload upload, HttpServletRequest request ) throws FileUploadException, IOException {

List items = upload.parseRequest(request);
Iterator iter = items.iterator();
while( iter.hasNext() ) {
System.out.println(items.toString());
FileItem item = (FileItem)iter.next();
if ( !item.isFormField() && item.getFieldName().equalsIgnoreCase("upload") ) {
InputStream in = item.getInputStream();
VasGatewayClient wsC = new VasGatewayClient( in, _URL );
return wsC.send();
}
}
return null;
}
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
response.sendRedirect(url) mutuah Advanced Java 2 08-07-2007 02:56 PM
help with response.sendRedirect method katie JavaServer Pages (JSP) and JSTL 1 08-07-2007 03:22 AM
response.sendRedirect problem christina JavaServer Pages (JSP) and JSTL 2 08-03-2007 06:23 PM
response.setContentType bbq Java Servlet 1 06-28-2007 07:04 AM
Velocity, cannot find resource sandor Web Frameworks 1 05-17-2007 11:58 PM


All times are GMT +3. The time now is 06:54 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org