0

While i try to execute some of my code in JBoss server, i am getting exception like.

 Error while posting data : java.lang.RuntimeException: Export restriction: SunJSSE only

I tried to run the same in Tomcat and found that its working perfectly. I have all my jars in the class path

jsse.jar
jnet.jar
jcert.jar and
cryptix32.jar

I don't understand why JBoss is throwing error.

user207421
  • 305,947
  • 44
  • 307
  • 483
nagur527
  • 13
  • 3

1 Answers1

1

You should install "Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files 7"

you can get it at http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html

That adds support for Unlimited Strength key support to your JDK.

Tomaz Cerar
  • 5,761
  • 25
  • 32