Using JSR 105 with JDK 1.4 or 1.5
JSR 105 (XML Digital Signature API) is included with JDK 6, but is also available separately, for example as part of the Apache XML Security Project. This allows you to use the JSR with earlier JDK/JREs such as JDK 1.4 or JDK 5.
If you do this, however, be aware that the JSR 105 service provider implementation is not included by default with JDK 1.4 or JDK 1.5, so you may get some exceptions when instantiating an XMLSignatureFactory:
XMLSignatureFactory fac = XMLSignatureFactory.getInstance("DOM");
javax.xml.crypto.NoSuchMechanismException: Mechanism type DOM not available
at javax.xml.crypto.dsig.XMLDSigSecurity.getEngineClassName(Unknown Source)
at javax.xml.crypto.dsig.XMLDSigSecurity.getImpl(Unknown Source)
at javax.xml.crypto.dsig.XMLDSigSecurity.getImpl(Unknown Source)
at javax.xml.crypto.dsig.XMLSignatureFactory.findInstance
The easiest workaround is to just instantiate and specify the service provider implementation (bundled with Apache XMLSec) as a parameter as follows:
XMLSignatureFactory factory =
XMLSignatureFactory.getInstance
("DOM", new org.jcp.xml.dsig.internal.dom.XMLDSigRI());
Alternatively, you can register the provider in the java.security file, or use the java.security.Provider API. See http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html#ProviderInstalling
"Registering a Provider" for more details.
- Login or register to post comments
- Printer-friendly version
- mullan's blog
- 2598 reads






Comments
by tngu007 - 2008-07-26 02:00
Hi Sean, Please ignore my earlier post. I forgot to remove the throw statements that are no longer needed using your recommended code. Thanks.by tngu007 - 2008-07-26 01:37
Hi Sean, I am getting the compilation error when using this code. XMLSignatureFactory sigFactory = XMLSignatureFactory.getInstance ("DOM", new org.jcp.xml.dsig.internal.dom.XMLDSigRI()); Error: Error(182): exception java.lang.ClassNotFoundException is never thrown in body of corresponding try statement Error(203): exception java.lang.InstantiationException is never thrown in body of corresponding try statement Error(206): exception java.lang.IllegalAccessException is never thrown in body of corresponding try statement However, this code is successfully compiled. String providerName = System.getProperty("jsr105Provider", JSR_105_PROVIDER); XMLSignatureFactory sigFactory = XMLSignatureFactory.getInstance("DOM", (Provider)Class.forName(providerName).newInstance()); Here is what I have done. 1. downloaded the latest XML Security version (1.4.2) 2. copied the xmlsec-1.4.2.jar file to my web app (/WEB-INF/lib folder). 3. renamed the xmlsec-1.4.2.jar file to xmlsec.jar. 4. compiled my source code Do I need to put the xmlsec.jar in the JDK for compilation? Thanks.