Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just upgraded from Java 6 to Java 7 SDK and am now getting the following error in my ant build:

error: package sun.security.pkcs11 does not exist
Provider p = new sun.security.pkcs11.SunPKCS11(is);

I'm running Windows 7 64-bit. I can compile fine if I switch back to Java 6, but that is not an option any longer. I haven't had much luck finding a solution online. Anybody knows how to resolve this issue?

share|improve this question
3  
This is because you depended on an internal (non-API) package of JDK. – reprogrammer Dec 4 '12 at 19:45
1  
possible duplicate stackoverflow.com/questions/12412802/… – schippi Dec 4 '12 at 19:46

3 Answers

You will have to convert your application to use APIs which are not restricted. The compiler will warn you quite strictly when you have done such a thing -- this is the consequence of proceeding in the face of those warnings.

See Why Developers Should Not Write Programs That Call 'sun' Packages

share|improve this answer
A great link that explains EXACTLY why the OP should have never used that package in the first place! – jahroy Dec 5 '12 at 5:26

I have faced the same problem and i solve it by installing the 32-bit JDK insteade of 64-bit and sure it will work .

share|improve this answer

The API has not been released by oracle oracle bug and the answers by tom and yassering are both corect.

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.