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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:27:44+00:00 2026-06-13T18:27:44+00:00

I call a wcf service like this: XDocument xdoc = null; xdoc = XDocument.Load(http:\\www.mydomain.com\service\helloservice);

  • 0

I call a wcf service like this:

XDocument xdoc = null;
xdoc = XDocument.Load("http:\\www.mydomain.com\service\helloservice");

I receive a xml snippet from WCF like the below:

<ArrayOfstring><string>hello</string><string>world</string><string>!</string></ArrayOfstring>

I am trying to get the content within the elements

my code is like this but I never get anything back:

  var i = (from n in xdoc.Descendants("string")
                 select new { text =  n.Value});

when I do xdoc.DescendantNodes() I get:

[0] "<ArrayOfstring xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <string>HELLO</string>
</ArrayOfstring>"

[1] "<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">HELLO</string>"

[2] "Hello"

I am pretty new to this, I can’t figure out why linq won’t return results…Which Xdocument feature should I use? Some pointer would be appreciated. Thanks.

  • 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-13T18:27:45+00:00Added an answer on June 13, 2026 at 6:27 pm

    UPDATE

    using System;
    using System.Linq;
    using System.Xml.Linq;
    
    namespace ConsoleApplication1
    {
        class Porgram
        {
            static void Main(string[] args)
            {
                string xml = "<ArrayOfstring  xmlns=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\"><string>hello</string><string>world</string><string>!</string></ArrayOfstring>";
                XDocument doc = XDocument.Parse(xml);
    
                XNamespace ns = "http://schemas.microsoft.com/2003/10/Serialization/Arrays";
    
                var text = from str in doc.Root.Elements(ns + "string")
                        select str.Value;
                foreach (string str in text)
                {
                    Console.WriteLine(str);
                }
                Console.ReadKey();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a service exposed as WCF via NServiceBus. Ultimately, I'd like to call
I am writing jquery ajax code to call wcf service. In this case WCf
I'm trying to call a WCF service cross-domain using javascript, over http. I've added
I have a WCF service code like this: [ServiceContract] [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode =
I have a simple resftul wcf service. The .svc file looks like this <%@
Hello I have a simple wcf service like this, with a test method which
I got a usual WCF service set up like this: private ServiceHost serviceHost =
I have created a WCF service and have its operationcontract and implementation like this:
I'm trying to call a WCF service using soap in IE8 and I can't
I am getting the error below when I call my WCF service. What am

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.