I want to parse the following xml which is the response from an restful webservice:

<ns2:list xmlns="urn:foo1:foo" xmlns:ns2="foo2:foo">

   <entityData>
      <namedAttributes>...</namedAttributes>
      <dynamicEnums>...</dynamicEnums>
   </entityData>

   <ns2:employees>
      <ns2:user id="test">
          <ns2:name genderTitle="0" firstName="Rock" surName="Solid"></ns2:name>
      </ns2:user >
   </ns2:employees>
</ns2:list>

If I try a xpath-expression I only get [object Object] as alert:

function parse(xml){
   var test= $(this).find('/ns2:list/ns2:employees/ns2:user[85]/ns2:name');
   alert(test);
};

Adding .text()-method like: var test= $(this).find('/ns2:list/ns2:employees/ns2:user[85]/ns2:name').text(); only makes the alert empty...

The xpath expression should not be wrong, I used Firebug to get the expression, maybe in this example some typing error.

Anyone knows whats wrong? Or the other way round: how to alert fields like firstName?

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

you may need to look at .parseXML to parse the xml also here is a good SO answer to parse xml with namespaces jQuery XML parsing with namespaces

here is a good link too Namespace Selectors for jQuery

solution

    xmlDoc = $.parseXML(xml),
    $xml = $(xmlDoc),
    $name = $xml.find( "ns2\\:name" ).attr("surName");

   alert($name);

here id the fiddle http://jsfiddle.net/Jbnev/

link|improve this answer
thanks this is working – zyrex Sep 2 '11 at 7:42
glad that helped – 3nigma Sep 2 '11 at 7:45
feedback

Doesnt /list/employees/user[@id='test']/name/@firstName work?

link|improve this answer
feedback

You probably need to add the namespace in your query for the name.

So you need something like:

/*[local-name()='list' and namespace-uri()='urn:foo1:foo']
link|improve this answer
what do you mean? instead of ns2:...? – zyrex Sep 1 '11 at 13:22
Edited...maybe also googling for xpath and namespaces might help you out even more. – Baszz Sep 1 '11 at 13:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.