• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How can I export the contacts from Hotmail using Apache HttpClient?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi everybody
I have a project which need to import the contacts from Hotmail,AOL,Gmail and Yahoo.
I have finished exporting from Gmail and Yahoo by using Apache Commons HttpClient.
but I could not login Hotmail because when I get the Hotmail Login page it show me a non-javascript-supported page.
Without the javascript Hotmail will not allow me to login.
Can I simulate a javascript supported client by Httpclient or is there any other ways to do so ?
please give me any suggest.
best regards.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Instead of HttpClient, you could use HttpUnit (on SourceForge) which supports JavaScript by way of the Rhino engine. Don't be put off by the fact that it's billed as a web testing tool - it works just fine for programmatic web page access.
 
reply
    Bookmark Topic Watch Topic
  • New Topic