Re: [Rabbit-proxy-users] name lookups and dnsjava
Brought to you by:
ernimril
|
From: Robert O. <ro...@kh...> - 2004-04-23 13:25:11
|
Samuel Hill wrote: >I got the following errors on compile... > >src/rabbit/proxy/Proxy.java:16: package org.xbill.DNS does not exist >import org.xbill.DNS.*; > > So you have not managed to put the dnsjava-1.6.2.jar in the classpath. Did you update the classpath file to point out the jar? You can also do it manually like this: robo@ghoul:~/src/RabbIT2$ javac -d . -classpath /tmp/dnsjava-1.6.2.jar src/rabbit/*/*.java (depending on where you have put dnsjava-1.6.2.jar of course). Starting it, there may again be issues with the classpath since you seem to have trouble using the jr command (and I do not think that your fix to it was correct), I suggest you start it manually like this: robo@ghoul:~/src/RabbIT2$ java -classpath .:/tmp/dnsjava-1.6.2.jar rabbit.proxy.Proxy If I choose to use dnsjava I will of course make it easier, but for now it is still in testing mode. /robo |