-
I've noticed a few checks in CodeStyleTest that look for the current year in the license file, Version class, and source header comments. This is a little problematic, because it means that it is impossible to rebuild from a tag once you've passed into a new year, and makes it difficult for third-parties to fork from a particular tag.
Our workaround is to disable the test in our fork, but...
2010-01-06 19:52:56 UTC by timothy_m_moore
-
This is has been resolved by other bugs.
2010-01-05 23:47:43 UTC by franklin99
-
I actually just ran into this same bug while fixing another bug, so I'll assign it to myself. The "correct" fix for this, based on the current design is to have the open() method return a WindowProxy instance instead of a Window; the problem is that WindowProxy currently has issues with function execution (Rhino checks if it's "instanceof Window", and it's not). WindowProxy is essentially a...
2010-01-05 16:57:20 UTC by sdanig
-
Hi,
I got the lasted jar file. Here are my codes:
WebClient client = new WebClient();
HtmlPage page = client.getPage("http://telefonino.net/confronta.asp");
But errors:
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at sun.reflect.GeneratedConstructorAccessor86.newInstance(Unknown Source)
at...
2010-01-05 16:03:52 UTC by dungdung123
-
I was hoping someone might take a look at this at some point, shouldn't be too complicated as I have provided a JUnit test case, and possible solution patches... Anybody??
Cheers,
James.
2010-01-05 11:46:24 UTC by jp7621
-
Dear,
I have a db contains 100.00 urls, my program is go into each url anable javascript to retrieve swf file. I get the lasted jar file but it can process 5000 urls and OutOfMemoryError.
Here are my codes:
private WebClient client = new WebClient(BrowserVersion.FIREFOX_3);
.....
client.setUseInsecureSSL(true);
client.setRefreshHandler(new WaitingRefreshHandler(1));...
2010-01-05 08:32:03 UTC by dungdung123
-
Hi Frank, I'm having trouble finding the relevant JS amongst all of the GWT boilerplate; can you reduce this to a couple of lines of HTML/JS without all of the GWT cruft? Thanks!
2010-01-05 02:58:01 UTC by sdanig
-
Making BrowserVersion immutable would be a nice change. I recently got burnt because setting the user agent on one WebClient object had the side effect of changing it for all objects.
e.g.
public void testUA() {
WebClient client1 = new WebClient(BrowserVersion.INTERNET_EXPLORER_6);
WebClient client2 = new WebClient(BrowserVersion.INTERNET_EXPLORER_6);
String client1UA =...
2010-01-05 00:32:16 UTC by amitkhanna84
-
No, I'm not part of IBM; this is part of a business intelligence project for my employer, a retail chain in the UK. I just import the HtmlUnit files into a Domino project in the same way as I would into an Eclipse Java project. We're heavily into Notes here . . . :)
2010-01-04 17:34:28 UTC by simonsez1808
-
Fast answer, seems that you're in Europe too ;-)
Will this screen scraping app be part of Lotus Domino's distribution?.
2010-01-04 12:11:03 UTC by mguillem