hi,
i have a little application which uses htmlunit.
but htmlunit is extremly slow so i thought i download the source, change the code in htmlunit where the httpclient is created and use it in my app (i know that the httpclient is much faster sending POST than the htmlunit, but htmlunit has js support, thats the reason why i use htmlunit and not only httpclient)
the httpclient is in a file called HttpWebConnection.java
private AbstractHttpClient httpClient_;
so i thought i change it to public, and access it:
response = conn.httpClient_.execute(httppost);
but now i get an error:
Exception in
thread "Thread-3" java.lang.IllegalAccessError: tried to access field com.gargoylesoftware.htmlunit.HttpWebConnection.httpClient_ from class Groove.Client
at Groove.Client.sendRequest(Client.java:419)
at Groove.Client.getShort(Client.java:454)
at Groove.Client.connect(Client.java:200)
at Groove.Client.getInstance(Client.java:89)
at Groove.browser.GrooveView$6.run(ClientView.java:332)
what does that mean?
i also tried it with a getter method but i get the same error