> I am still facing following problem. > when I try to compile the httpclient code. I keep getting error > --------------------------> > org\apache\nutch\protocol\httpclient\Http.java:24: cannot access > org.apache.nutch.db.Page > bad class file: E:\nutch_latest\nutch-nightly\nutch-nightly.jar > (org/apache/nutch/db/Page.class) > class file has wrong version 49.0, should be 48.0 > Please remove or make sure it appears in the correct subdirectory of the > classpath. > import org.apache.nutch.db.Page;
"Class file wrong version..." is typical of compiling some sources with jdk-1.4 while some jars your code depends on were compiled with jdk-1.5. Compiling with jdk-1.5 should solve your problem. But, what is the "official" jdk for Nutch trunk? jdk-1.4, no? Jerome
