Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7614045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T02:18:11+00:00 2026-05-31T02:18:11+00:00

in my GWT web application, i am to retrieve XML data from the SOAP

  • 0

in my GWT web application, i am to retrieve XML data from the SOAP server. i haven’t encountered any difficulties parsing this xml data in the client until i have this xml structure to parse:

<?xml version="1.0" encoding="UTF-8"?>
<root>
  <data>
    <list row="0">
      <product_name>A</product_name>
      <desc>product A</desc>
      <promo>
         &lt;?xml version="1.0" encoding="UTF-8"?&gt;
         &lt;root&gt;
           &lt;data/&gt;
         &lt;/root&gt;
      </promo>
    </list>
    <list row="1">
      <product_name>B</product_name>
      <desc>product B</desc>
      <promo>
         &lt;?xml version="1.0" encoding="UTF-8"?&gt;
         &lt;root&gt;
           &lt;data&gt;
              &lt;list row="0"&gt;
                 &lt;pname&gt;Test&lt;/pname&gt;
                 &lt;pdesc&gt;Test promo only&lt;/pdesc&gt;
              &lt;/list&gt;
           &lt;/data&gt;
         &lt;/root&gt;
      </promo>
    </list>    
  </data>
  <return_code>0</return_code>
</root>

having this xml, i have retrieved the product_name and desc of every list with NodeList and Element. but i also have to retrieve the promo of each product.

i have tried getting the promo by:

Document d = XMLParser.parse( xml ); // xml - xml data retrieved from server
Element element = d.getDocumentElement();
NodeList nlist = element.getElementsByTagName( "list" );
final int count = nlist.getLength();

for( int i = 0; i < count; ++i ) {
    final Element list = ( Element ) nlist.item( i );
    String product_name = ( (Text)list.getElementsByTagName( "fproductid" )
         .item(0).getFirstChild()).getData()
    ...

    // get promo
    String promo = d.getElementsByTagName( "promo" ).item(0).
         getFirstChild().getNodeValue();
    Document dpromo = XMLParser.parse( promo );
    ...
}

when i check what’s the value of each promo, i have the same output:

<?xml version="1.0" encoding="UTF-8"?>
<root>
  <data/>
</root>

any idea how to get the fields/element inside the promo node (i.e. pname, pdesc)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T02:18:12+00:00Added an answer on May 31, 2026 at 2:18 am

    String promo = d.getElementsByTagName("promo").item(0).getFirstChild().getNodeValue();

    You are looking at the same promo element in each iteration of the loop.

    Replace d with list:

    String promo = list.getElementsByTagName("promo").item(0).getFirstChild().getNodeValue();

    and you will get the full text for each promo element.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Doing a code review I've stumbled over GWM in Java-Spring-GWT web-application. As this product
When I try to terminate my GWT based web application from within Eclipse ,
I have a web-application with gwt. I have a textare with this css: .progress60{
I'm trying to adapt my GWT web application from my home-grown MVC to GWT
I have a GAE/GWT server web application using OAuth 2.0 . Locally (GWT development
I am using GWT RPC & Hibernate to insert and retrieve data from MySql
I am getting this error from the web application I'm working right now: Initial
Hey guys, I'm using GWT for a data-driven web application, and I'm having issues
I am designing a web application using GWT currently, which is also the first
I can't start my GWT application in hosted mode (Debug as -> web application)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.