The following excerpt is the root of your problem: > Caused by: java.io.IOException: subject key, Unknown key spec: Invalid RSA > modulus size. > at sun.security.x509.X509Key.parse(X509Key.java:155)
Based on your Oracle version, 10g, I believe this is an error we're familiar with. In our experience applications are limited to 1024-bit keys on Oracle. We run into this error with Java stored procedures running inside the Oracle database server using their "lightweight" JVM. I can imagine a similar problem in Oracle Application Server. Your best bet is to try to install the "unlimited strength" JCE policy files in hopes that works. Alternatively, you could try to install the BouncyCastle crypto provider and configure it as the default SSL engine. We have done both in the past to work around similar issues, and both solutions have strengths and weaknesses. In general it's probably easier to update your JCE policy files. (Disclaimer: I know next to nothing about OAS. I sincerely hope to keep it that way.) M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
