Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anybody able to use build-in web services (JAX-WS) support in IntelliJ IDEA under Linux? Most of features don't work under Gentoo (Calculate actually). Ex, when I launch command "Tools -> Web Services -> Generate Wsdl form Java code..." from menu it says: Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/tools/internal/ws/WsGen

I know wsgen is included with sun-jdk-1.6, I have also tried to install packages "jax-ws" and "jax-ws-tools" from Gentoo repository. It doesn't help.

I know the features work with IDEA under Windows XP. What's wrong with Linux? Any specific setup is required?

share|improve this question
What JDK are you using? – Dave Newton Oct 24 '11 at 3:06
dev-java/sun-jdk-1.6.0.26 – xtreye Oct 24 '11 at 3:53

2 Answers

This class is located in the tools.jar that is not added to the JSDK classpath by default, try to open JSDK settings dialog, classpath tab and add tools.jar explicitly to the list of the JDK jars.

share|improve this answer
I have found one the file here: /etc/java-config-2/current-system-vm/lib/tools.jar. It's not under /etc/java-config-2/current-system-vm/jre/lib (used by default JSDK configuration), so it's not surprising that the file isn't included by default. – xtreye Oct 24 '11 at 12:30
It doesn't work anyway :( – xtreye Oct 24 '11 at 12:38
NoClassDefFoundError may be caused by some other dependency missing, so you need to check that you have the same set of jars in the classpath that worked for you on Windows XP. – CrazyCoder Oct 24 '11 at 14:29
I was able to see the command IDEA launches. Nothing included into classpath at all. Unfortunately, installation under Windows XP doesn't show command console at all, since no error is raised. Probably I can find the commande templaye somewhere... at least I'll try. – xtreye Oct 25 '11 at 0:50
Nothing. Any other ideas please? – xtreye Oct 25 '11 at 9:35
show 1 more comment
up vote 0 down vote accepted

(It's being a while before I was able to return to the topic) The bug is now fixed in newer versions of IDEA, at least in 12.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.