+ Reply to Thread
Results 1 to 1 of 1

XML SelectNodes Problem

Hybrid View

  1. #1
    Registered User
    Join Date
    07-19-2013
    Location
    Pune
    MS-Off Ver
    Excel 2013
    Posts
    1

    XML SelectNodes Problem

    Hi All,
    I have to select all the nodes which passes the xPath
    //result/vicinity.
    There wil be multiple nodes which will come as a result in the following URL.

    I have created below function.
    When I am using Single Node, it is working but when I am using SelectNodes it is resulting as 0.
    Please assist me.
    What I am doing wrong.
    I have Googled a lot and found out that there is something as NameSpacemanager which I have to use, But I am new to VBA and have no idea how to use that.

    Please assist me.

    Function UserPlaces(Origin As String) As String
    Dim himRequest As XMLHTTP60
    Dim himDomDoc As DOMDocument60
    Dim First As IXMLDOMNode
     
    UserPlaces = 0
    
    On Error GoTo exitRoute
    
    
    Origin = Replace(Origin, " ", "%20")
    
    Set himRequest = New XMLHTTP60
    himRequest.Open "GET", "https://maps.googleapis.com/maps/api/place/nearbysearch/xml?location=" _
    & Origin & "&radius=5000&types=food&sensor=false&key=YOUR KEY HERE", False
    himRequest.send
    Set himDomDoc = New DOMDocument60
    himDomDoc.LoadXML himRequest.responseText
    
    Set First = himDomDoc.SelectSingleNode("//result/vicinity")
    Set nodeList = himDomDoc.SelectSingleNode("//result/vicinity")
    
    If Not nodeList Is Nothing Then UserPlaces = nodeList.Text
    'If Not First Is Nothing Then UserPlaces = First.Text
     
    exitRoute:
    Set nodeList = Nothing
    Set First = Nothing
    Set Second = Nothing
    Set himDomDoc = Nothing
    Set himRequest = Nothing
    
    End Function
    Last edited by arlu1201; 07-19-2013 at 09:31 AM. Reason: Use code tags in future.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 6
    Last Post: 05-28-2013, 05:08 PM
  2. Problem Using Solver with an optimization stock problem
    By Jagrubski in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-24-2013, 03:41 AM
  3. Replies: 2
    Last Post: 01-22-2013, 07:09 AM
  4. Problem using formulas within macro + problem with defined name.
    By rain4u in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-11-2011, 04:39 AM
  5. Started out as an Access problem. Now an Excel problem
    By RobertM in forum Excel General
    Replies: 2
    Last Post: 04-26-2006, 02:35 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1