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 6796851
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:32:15+00:00 2026-05-26T18:32:15+00:00

I am having a problem parsing xml that I receive from Web Service. The

  • 0

I am having a problem parsing xml that I receive from Web Service.

The xml looks very simple:

<Result xsi:schemaLocation="urn:yahoo:developer http://developer.yahooapis.com/TimeService/V1/GetTimeResponse.xsd" type="web"><Timestamp>1320677359</Timestamp></Result>

But when I try to parse it with following code I am getting no return results.

 XDocument doc = XDocument.Load("http://developer.yahooapis.com/TimeService/V1/getTime?appid=StackSolution");           

            var datestamp = from ds in doc.Descendants("Result")
                            select new { currentstamp = ds.Element("Timestamp").Value };

Is there a solution or way to parse it?

Thanks you in advance

  • 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-26T18:32:15+00:00Added an answer on May 26, 2026 at 6:32 pm

    You have a couple issues: First, the Result node isn’t a descendant. It’s the root. Second, you ran into the most common issue when using LINQ to XML – you forgot the namespace. The following should give you what you need:

    XElement doc = XElement.Load("http://developer.yahooapis.com/TimeService/V1/getTime?appid=StackSolution");            
    XNamespace ns = "urn:yahoo:developer";
    var datestamp = from ds in doc.DescendantsAndSelf(ns + "Result") 
                    select new { currentstamp = ds.Element(ns + "Timestamp").Value };
    

    Note, this produces an IEnumerable. If you only want the datestamp, consider using FirstOrDefault instead. You may be able to make this simpler by just doing the following:

    XElement doc = XElement.Load("http://developer.yahooapis.com/TimeService/V1/getTime?appid=StackSolution");            
    XNamespace ns = "urn:yahoo:developer";
    var datestamp = doc.Element(ns + "Timestamp").Value;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My problem is specifically about some trouble I'm having parsing an Inkscape (XML) file,
I'm having a problem with setting up a WCF web service integration with a
I am having a problem while parsing XML file,i used newsRSS parser as a
I am having a little trouble with parsing XML from a google checkout response.
I am having some problems parsing this piece of XML using SimpleXML. There is
I'm having a problem parsing a JSON file in AS3. Im trying to parse
Additional questions regarding SilentGhost's initial answer to a problem I'm having parsing Twitter RSS
I'm having a problem passing strings that exceed 80 characters in JSON. When I
I am getting an XML format data from server and parsing it in an
I am using SAX to parse an XML file I'm pulling from the web.

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.