With the following environment:...
- Windows2000 Professional
- jwsdp-1.1
- j2sdk1.4.1_01
..while trying to deploy some servlets that make use of the Java Crypthography Extension (JCE);
I encountered 2 problems:
1.- I've got error "Algorithm DES not available". In order to solve that I added the following line:
java.security.Security.addProvider(new com.sun.crypto.provider.SunJCE());
2.- .. after that next message appears:
Class com.sun.crypto.provider.SunJCE not found
Do I need to follow the JCE1.2 installation instructions running under jdk 1.4.1 ??
(I ask that because in http://www.systinet.com/doc/wasp_uddi/uddi/igpreliminary.html
I've read that its not necessary)
could somebody help me??