Hi Morten! > When i try to run JMeter in nongui mode i get the following error ? It > looks like some gui-stuff but this should not be touched in the nongui mode > ? Yes, you have right, it should not be touched :-) There is one very useful class in jMeter, which finds all classes extending given class. (With this class you don't have to register jMeters component - it's enough if it's in the classpath). But this class does forName method for classes it finds, which causes this class to load and execute static code and static parameter initialization. In your case it is
public static JFileChooser jfc = new JFileChooser(); in class FileDialoger. Perhaps developers of jMeter can tell you more, but I suggest you that you install Xserver and appropriate libs on you machine... You have no need to run it, but I'm afraid it has to be present... I think there are some posts on this mailing list concerning this topic, perhaps you can find some more info about this... best regards Michal Kostrzewa -- To unsubscribe, e-mail: <mailto:jmeter-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:jmeter-user-help@;jakarta.apache.org>

