How to insert google page as data (xml)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is there a way to insert a google page into my application and parse it into
xml without using the google api kit?
 
oforia said:
is there a way to insert a google page into my application and parse it into
xml without using the google api kit?

See the "why would anyone want XHTML" thread :o)

Depending on the type of application you are writing, you could either
parse the HTML as text using regexps or load it into IE and navigate the
DOM using this approach:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstec
hart/html/vsgrfWalkthroughAccessingDHTMLDOMFromC.asp

In both cases you will be vulnerable to Google changing the design of
the page; the page is not an API...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top