mace-opensaml-users - Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?
Subject: OpenSAML user discussion
List archive
Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?
Chronological Thread
- From: "wss4j wei" <>
- To:
- Subject: Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?
- Date: Wed, 5 Sep 2007 15:53:47 -0700
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=gBBeNTGig8ogdpOd3fLbiHfKiomGCF+Oa6xrT5B89tf1TAFOVMfROGPlV9vDDoZOVnoD/25RgqDnezzrmo34seQAq/Kij09oftfSQBnPoTZ7r23AhH6reHN1c11ytrFAgV2lkYm4bDs9U4gxcv/qOoJcrucS9JXeVbAOCzstYZY=
I am not XML expert here and would like to get some idea from you.
any idea abt this jar file - rt.jar ?
SAMLConfig look for xerces that support DOM3 ..
In the SAMLConfig :
private void verifyUsableXmlParser()
{
try
{
(org.w3c.dom.Element.class ).getDeclaredMethod("setIdAttributeNS", new Class[] {
java.lang.String.class, java.lang.String.class, Boolean.TYPE
});
}
catch(NoSuchMethodException nosuchmethodexception)
{
throw new WrongParserException("OpenSAML requires an xml parser that supports DOM3 calls. Xerces 2.5.0 (built with DOM3 support) has been included with this release and is recommended. If you are using Java 1.4, make sure that you have enabled the Endorsed Standards Override Mechanism for this parser.");
}
}
{
try
{
(org.w3c.dom.Element.class ).getDeclaredMethod("setIdAttributeNS", new Class[] {
java.lang.String.class, java.lang.String.class, Boolean.TYPE
});
}
catch(NoSuchMethodException nosuchmethodexception)
{
throw new WrongParserException("OpenSAML requires an xml parser that supports DOM3 calls. Xerces 2.5.0 (built with DOM3 support) has been included with this release and is recommended. If you are using Java 1.4, make sure that you have enabled the Endorsed Standards Override Mechanism for this parser.");
}
}
I have xercesImpl.jar and xml-apis.jar defined in D:\Oracle\10.1.3.1\OAS101310\j2ee\Application\applib.
[Loaded com.peoplesoft.pt.security.wss.processor.PSSAMLTokenProcessor from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/
Application/applications/Application/pc/WEB-INF/classes/]
[Loaded org.opensaml.SAMLException from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application /applications/Application/pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.opensaml.MalformedException from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/ Application/applications/Application/pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.opensaml.SAMLIdentifier from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/ Application/applications/Application/pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded java.text.ParsePosition from D:\Oracle\10.1.3.1\OAS101310\jdk\jre\lib\rt.jar]
[Loaded org.opensaml.XML from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application/applications/Application/pc /WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.opensaml.XML$ParserPool from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application/applications/Application /pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.opensaml.SAMLConfig from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application/applications/Application /pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.apache.xml.utils.WrongParserException from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application /applib/xalan-2.7.0.jar] <=======[throw new WrongParserException]
[Loaded org.opensaml.SAMLException from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application /applications/Application/pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.opensaml.MalformedException from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/ Application/applications/Application/pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.opensaml.SAMLIdentifier from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/ Application/applications/Application/pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded java.text.ParsePosition from D:\Oracle\10.1.3.1\OAS101310\jdk\jre\lib\rt.jar]
[Loaded org.opensaml.XML from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application/applications/Application/pc /WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.opensaml.XML$ParserPool from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application/applications/Application /pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.opensaml.SAMLConfig from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application/applications/Application /pc/WEB-INF/lib/opensaml-1.0.1.jar]
[Loaded org.apache.xml.utils.WrongParserException from file:/D:/Oracle/10.1.3.1/OAS101310/j2ee/Application /applib/xalan-2.7.0.jar] <=======[throw new WrongParserException]
is this the caused by rt.jar ?
- Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?, wss4j wei, 09/05/2007
- Re: Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?, Scott Cantor, 09/05/2007
- Re: Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?, wss4j wei, 09/06/2007
- RE: Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?, Scott Cantor, 09/06/2007
- Re: Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?, wss4j wei, 09/06/2007
- Re: Any why I have this issue in opensaml in Oracle Appserver. Is it because of rt.jar ?, Scott Cantor, 09/05/2007
Archive powered by MHonArc 2.6.16.