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

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?

share|improve this question
1  
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 '09 at 20:31
The eventual target environment is jboss4.2 on jdk5. – sal May 13 '09 at 20:56
About the "protected" status: In StackOverflow Nothing says "Thanks" or "me too" as an upvote ;) – OscarRyz Aug 9 '10 at 17:30
15  
+1 Googled the error; got this page; one of the answers fixed my problem. – Dan Burton Nov 30 '10 at 21:15
1  
See the big Most-Voted-Answer ... Ignore 96% of the rest of this page. Search: "Nels Beckman", Feb 1 '10 at 4:09 – will Aug 29 '12 at 12:00

8 Answers

up vote 521 down vote accepted

There's another solution that also works. I found it on this forum:

  1. Go to the Build Path settings in the project properties.
  2. Remove the JRE System Library
  3. Add it back; Select "Add Library" and select the JRE System Library. The default worked for me.

This works because you have multiple classes in different jar files. Removing and re-adding the jre lib will make the right classes be first. If you want a fundamental solution make sure you exclude the jar files with the same classes.

for me i have: javax.xml.soap.SOAPPart in 3 different jars: axis-saaj-1.4.jar saaj-api-1.3.jar and the rt.jar

share|improve this answer
5  
+1 Working on a school lab computer (where I don't have permission to modify many things), this worked like a charm. Thank you. – Dan Burton Nov 30 '10 at 21:17
2  
Really interesting solution, worked for me too. Thanks! – Nikola Malešević Dec 1 '10 at 21:15
2  
I just encountered it too. What a weird Eclipse bug... – Stephane Grenier Jul 26 '11 at 19:46
55  
Why isn't this the accepted answer? It seems to fix this problem for almost everyone. – Gravity Jul 29 '11 at 1:13
3  
Worked like a charm! – Jeff Feb 27 '12 at 15:49
show 21 more comments

http://lkamal.blogspot.com/2008/09/eclipse-access-restriction-on-library.html worked best for me.

Windows -> Preferences -> Java -> Compiler -> Errors/Warnings -> Deprecated and trstricted API -> Forbidden reference (access rules): -> change to warning

share|improve this answer
27  
This might work, but it is not a proper solution. You need to understand why the access restriction existed in the first place. It will also hide all future cases of this, which may be more important! – Adrian Mouat Oct 7 '10 at 8:27
@AdrianMouat that is pretty much irrelevant. If I want it to go away, I want it to go away. But surely - one shalln't code against non-public APIs, no. – stolsvik Dec 14 '11 at 14:44
1  
@stolsvik - you've lost me; are you saying the reason why the problem exists is irrelevant? – Adrian Mouat Dec 16 '11 at 9:13
I have this problem on ONE method. I imagine the use of an alternative JDK (like OpenJDK is a better option). That said for one thing it 'might be cool' once. NOT in production code. Not for an on going design effort. I can't tell you how many man-days get lost on this kind of cr-hack. – will Aug 29 '12 at 11:54
@AdrianMouat - makes sense. I'd hate to do something like this in a nuclear reactor - Too much heat in control room ? So, disable all warnings. Make big headlines next day. :P – david blaine May 28 at 7:56

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.

EDIT http://www.manpagez.com/man/1/java/ notes for the option "-Xbootclasspath:"

"Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java 2 Runtime Environment binary code license."

The http://www.idt.mdh.se/rc/sumo/aJile/Uppackat/jre/LICENSE

"Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation."

share|improve this answer
2  
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 '09 at 3:14
1  
Could you provide a reference about not being allowed to replace classes which ship with Java? All I found in the licence agreement was restrictions related to distributing Java itself, not Java programs, but I didn't look for very long. – Adrian Mouat Oct 7 '10 at 8:25

I met the same problem. I found the answer in the website:http://www.17ext.com.
First,delete the JRE System Libraries. Then,import JRE System Libraries again.

I don't know why.However it fixed my problem,hope it can help you.

share|improve this answer
this one worked for me, thanks! – nimcap Dec 3 '09 at 9:04
worked for me as well, thanks! – Ankur Sep 15 '10 at 4:31
This one fixed my problem as well. – Sbodd Sep 16 '10 at 14:32
and another happy camper here. Thanks – kostja Jan 11 '11 at 9:05
1  
Huh, apparently you answered this question the same way as I did, several months before. Not sure why I didn't see your answer back then... – Nels Beckman Jan 19 '11 at 21:31

I just had this problem too. Apparently I had set the JRE to 1.5 instead of 1.6 in my build path.

share|improve this answer
2  
This was my issue as well. – John Glassmyer Nov 27 '11 at 14:14
  • Go to the Build Path settings in the project properties. Windows -> Preferences -> Java Compiler
  • Remove the JRE System Library
  • Add another JRE with a "perfect match"
  • clean and build your project again. It worked for me.
share|improve this answer

In the case you are sure that you should be able to access given class, than this can mean you added several jars to your project containing classes with identical names (or paths) but different content and they are overshadowing each other (typically an old custom build jar contains built-in older version of a 3rd party library).

For example when you add a jar implementing:

a.b.c.d1
a.b.c.d2

but also an older version implementing only:

a.b.c.d1
(d2 is missing altogether or has restricted access)

Everything works fine in the code editor but fails during the compilation if the "old" library overshadows the new one - d2 suddenly turns out "missing or inaccessible" even when it is there.

The solution is a to check the order of compile-time libraries and make sure that the one with correct implementation goes first.

share|improve this answer

Sorry for updating an old POST. I got the reported problem and I solved it as said below.

Assuming you are using Eclipse + m2e maven plugin, if you get this access restriction error, right click on the project/module in which you have the error --> Properties --> Build Path --> Library --> Replace JDK/JRE to the one that is used in eclipse workspace.

I followed the above steps and the issue is resolved.

share|improve this answer

protected by balpha Aug 8 '10 at 18:17

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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