Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [higgins-dev] config.xml in RelyingPartyDemoApp2

Paula,

 

I have xalan in my classpath. The error that I was seeing was the JCE algorithm difference between Sun and IBM implementation.

 

IBM Java uses:

 

<Algorithm URI="http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p"

           Description="Key Transport RSA-OAEP"

           AlgorithmClass="KeyTransport"

           RequirementLevel="REQUIRED"

           RequiredKey="RSA"

           JCEName="RSA/ /OAEPPaddingSHA-1"/>

 

But Sun Java needs:

 

<Algorithm URI="http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p"

           Description="Key Transport RSA-OAEP"

           AlgorithmClass="KeyTransport"

           RequirementLevel="REQUIRED"

           RequiredKey="RSA"

           JCEName="RSA/ECB/OAEPWithSHA1AndMGF1Padding"/>

 

Thanks,

Jeesmon

 

From: higgins-dev-bounces@xxxxxxxxxxx [mailto:higgins-dev-bounces@xxxxxxxxxxx] On Behalf Of Paula K Austel
Sent: Wednesday, January 02, 2008 9:00 PM
To: Higgins (Trust Framework) Project developer discussions
Subject: Re: [higgins-dev] config.xml in RelyingPartyDemoApp2

 


Hi,

I sent a reply to this note a few days ago but I don't see it showing up on the list.

The config.xml file works for both ibm and sun java. I discovered that I needed to add an extra jar file when running with the sun jvm. If you add the file xalan-2.6.0.jar from the redistributable project to the J2EE Module Dependencies for RelyingPartyDemoApp2 then it should work. I will work with Michael McIntosh to check in the change but for now you should be able to add this in your workspace.

Paula


----------------------------------------------------------
Paula K. Austel
Web Services Security
IBM T.J. Watson Research Center
(914)784-5025
Tieline 863-5025


From:

Jeesmon Jacob <JJacob@xxxxxxxxxxxxx>

To:

"Higgins (Trust Framework) Project developer discussions" <higgins-dev@xxxxxxxxxxx>

Date:

12/28/2007 11:18 AM

Subject:

[higgins-dev] config.xml in RelyingPartyDemoApp2

 





Hi Paula,

config.xml file checked into RelyingPartyDemoApp2 (also in RelyingPartyDemoApp) works for IBM Java but not for Sun Java. It would be nice if you can check-in the sun version of the config.xml similar to what we have in org.eclipse.higgins.sts.binding.axis1x.service  project (sun.config.xml  and ibm.config.xml  at
http://dev.eclipse.org/viewsvn/index.cgi/org.eclipse.higgins/trunk/plugins/org.eclipse.higgins.sts.binding.axis1x.service/WebContent/ConfigurationFiles/?root=Technology_SVN).

Thanks,
Jeesmon
_______________________________________________
higgins-dev mailing list
higgins-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/higgins-dev


Back to the top