Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to learn more about HTMLunit and doing some tests at the moment. I am trying to get basic information such as page title and text from this site:

https://....com (removed the full url, important part is that it is https)

The code I use is this, which is working fine on other websites:

 final WebClient webClient = new WebClient();
  final HtmlPage page;
  page = (HtmlPage)webClient.getPage("https://medeczane.sgk.gov.tr/eczane/login.jsp");
  System.out.println(page.getTitleText());
  System.out.println(page.asText());

Why can't I get this basic information ? If it is because of security measures, what are the specifics and can I bypass them ? Thanks.

Edit:Hmm the code stops working after webclient.getpage(); , test2 is not written. So I can not check if page is null or not.

  final WebClient webClient = new WebClient(BrowserVersion.FIREFOX_2);
  final HtmlPage page;
  System.out.println("test1");
    try {
        page = (HtmlPage)webClient.getPage("https://medeczane.sgk.gov.tr/eczane/login.jsp");
      System.out.println("test2");
share|improve this question
What happens when you run it? Is "page" null? – DaveHowes Mar 17 '11 at 8:20
If "test2" is not being written it seems likely that an exception is being thrown by getWebPage - can you see what it is in your catch block? – DaveHowes Mar 17 '11 at 9:11

2 Answers

up vote 5 down vote accepted

I solved this by adding this line of code:

webClient.setUseInsecureSSL(true);
share|improve this answer

I think that this is an authentication problem - If I go tho that page in Firefox I get a login box.

Try

webClient.setAuthentication(realm,username,password);

before the call the getPage()

share|improve this answer
Writing a captcha is needed to login, so i think this will not work. Is there any way to transfer session information from a browser to my htmlunit program ? So that I can login from a browser and get automatically logged in with htmlunit also. – Tunca Ersoy Mar 17 '11 at 8:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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