[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

10/29/2009 at 05:27AM PDT, ID: 24854284
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

Get xml data

Asked by JJKing in XPath, SOAP, Visual Basic Programming

Tags: VB.Net, XML

Hi

I have the following xml document and I want to retrieve the <env:identity> value. I am using VB.Net and have code to try and extract the data but I cannot seem to get it to work.

Any Ideas ?

<Envelope xmlns="http://www.intentia.com/MBM" xmlns:env="http://www.intentia.com/MBM_Envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.intentia.com/MBM Prototype_Order.xsd">
      <Header>
            <env:delivery>
                  <env:to>
                        <env:address>Movex</env:address>
                  </env:to>
                  <env:from>
                        <env:address>Eprocurement</env:address>
                  </env:from>
                  <env:reliability>
                        <env:sendReceiptTo>
                        </env:sendReceiptTo>
                        <env:receiptRequiredBy>
                        </env:receiptRequiredBy>
                  </env:reliability>
            </env:delivery>
            <env:properties>
                  <env:identity>100QDP
                  </env:identity>
                  <env:sentAt></env:sentAt>
                  <env:expiresAt>
                  </env:expiresAt>
                  <env:topic></env:topic>
            </env:properties>
            <env:manifest>
                  <env:reference uri="#BasdaOrder@1">
                        <env:description></env:description>
                  </env:reference>
            </env:manifest>
            <env:process>
                  <env:type>0</env:type>
                  <env:instance>
                  </env:instance>
                  <env:handle>
                  </env:handle>
            </env:process>
      </Header>
      <Body>
    <Order xmlns="urn:schemas-basda-org:2000:purchaseOrder:xdr:3.01" xmlns:xdr="XDR-compat-v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:schemas-basda-org:2000:purchaseOrder:xdr:3.01 Order-v3.xsd">
</Order>
</Body>
</Envelope>
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
Public Function RetrieveXMLNodeData() As String
        Try
            RetrieveXMLNodeData = Nothing
            Dim doc As New XmlDocument
            doc.Load(MyDocPath)
            Dim root As XmlElement = doc.DocumentElement
            Dim Nmspc = New XmlNamespaceManager(doc.NameTable)
            Nmspc.AddNamespace("A", "env:http://www.intentia.com/MBM_Envelope")
            RetrieveXMLNodeData = root.SelectSingleNode("A:properties/A:identity",  nmspc).InnerText
Catch ex As Exception
            Throw ex
        End Try
    End Function
[+][-]10/29/09 06:18 AM, ID: 25693277

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: XPath, SOAP, Visual Basic Programming
Tags: VB.Net, XML
Sign Up Now!
Solution Provided By: dankangr
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20090824-EE-VQP-74 - Hierarchy / EE_QW_3_20080625