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

  • SEARCH
  • Home
  • 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 7859385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T21:53:55+00:00 2026-06-02T21:53:55+00:00

I have a web service built on .NET which returns XmlDocument. I’m reading it

  • 0

I have a web service built on .NET which returns XmlDocument.

I’m reading it on a JSP file using a servlet like this:

CuteServlet servlet = new CuteServlet();
result = servlet.searchProperties(market_type, location, bedroom, price);

searchProperties method from CuteServlet:

public SearchPropertiesResult searchProperties(String propertyMarketType,
     String location, String noOfBedroom, String price) 
{
  wsClient.Property service = new wsClient.Property();
  wsClient.PropertySoap port = service.getPropertySoap();
  return port.searchProperties(propertyMarketType, location, noOfBedroom, price);
}

The return type of searchProperties() is SearchPropertiesResult.
How can I read it?

  • 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-06-02T21:53:58+00:00Added an answer on June 2, 2026 at 9:53 pm

    To solve this, I read XmlDocument (returned from C#) as result and put value into List<Object>, then casted each Object into Element to read the details like following:

       <% 
       ...
       wsClient.SearchPropertiesResponse.SearchPropertiesResult result 
                 = servlet.searchProperties(market_type, location, bedroom, price);
       List<Object> objects = result.getContent();
    
       Element rootElement = (Element)objects.get(0);
       //out.println(element.getElementsByTagName("property").getLength());
       NodeList propertyList = rootElement.getElementsByTagName("property");
       out.println("<table>");
       int propertiesLength = propertyList.getLength();
       for(int i=0; i<propertiesLength; i++)
       {
       Element aProperty = (Element)propertyList.item(i);
       NodeList childNodeList = aProperty.getChildNodes();
    
        Element property_idElement = (Element)childNodeList.item(0);
        String property_id = property_idElement.getTextContent();
    
        Element street_nameElement = (Element)childNodeList.item(2);
        String street_name = (street_nameElement.getTextContent());
    
        ...
        String tr = "<tr><td>";
        int l = i+1;//"+l+"
        tr += "<b> </b>"+door_no+" "+street_name+", "+post+"<br/>";
        tr += description+"<br/>";
        tr += "Bedroom: "+no_of_bed+"<br/>";
        tr += "Bathroom: "+no_of_bath+"<br/>";
        ...
        tr += "Area: "+area+"<br/><br/><br/><br/>";
        tr += "</td></tr>";
        out.println(tr);
       }
       out.println("</table>");
       %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web application built on ASP.NET MVC framework which requires a service
I have a .NET assembly which references a web service. The web reference is
I'm building a traditional ASP.NET Web Service -- the style built using asmx. It's
We have build several web service based on .net. Now we want to create
I have a web service built for SharePoint 2007 that I am trying to
I have no experience with web services. Historically I've built client-server systems using proprietary
I have web service, which use integrated security in IIS. Now, I want to
When I call, the service's method, I have Web Service Exception happening which I
I am trying to use a web service built on asp.net wcf from iPhone
I have a PHP web service built with the NuSOAP library. I've adapted the

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.