vote up 1 vote down star

I'm attempting to compile Java 1.4 code that was created by IBM's WSDL2Java on Java5 without recreating the stubs and saw this error in Eclipse. I'm under the assumption that the stubs created should just compile as long as the runtime jars are available (they are).

Access restriction: The type QName is not accessible due to restriction on required library C:\Program Files\Java\jdk1.5.0_16\jre\lib\rt.jar

The full classname is javax.xml.namespace.QName

What exactly is going on here?

Is this a case where I am trying to refactor a pig from sausage? Am I better off recreating the stubs?

flag

I don't get it, why you not just compile it somewhere else and run it in you targeted (so I guess) 1.4 environment? – Tim Büthe May 13 at 20:31
The eventual target environment is jboss4.2 on jdk5. – sal May 13 at 20:56

2 Answers

vote up 1 vote down check

My guess is that you are trying to replace a standard class which ships with Java 5 with one in a library you have.

This is not allowed under the terms of the license agreement, however AFAIK it wasn't enforced until Java 5.

I have seen this with QName before and I "fixed" it by removing the class from the jar I had.

link|flag
1  
that's it. one of the jars in the path had the QName class in it. find . -name "*.jar" -print -exec unzip -t {} \; |grep "QName" found it. – sal May 14 at 3:14
vote up 1 vote down

I met the same problem.I found the answer in the website:http://www.17ext.com. firt,delete the JRE System Libriaries. Then,import JRE System Libriaries again. I don't konw why.However i fixed my problom,hope it can help you

link|flag
this one worked for me, thanks! – nimcap 6 hours ago

Your Answer

Get an OpenID
or

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