RE: Using XMLSecurity with a JCA provider other than default one

2005-09-28 Thread Julien TAUPIN
at java.security.AccessController.doPrivileged(Native Method) -END TRACE -Message d'origine- De : Sean Mullan [mailto:[EMAIL PROTECTED] Envoyé : mardi 27 septembre 2005 15:13 À : security-dev@xml.apache.org Objet : Re: Using XMLSecurity with a JCA provider ot

Re: Using XMLSecurity with a JCA provider other than default one

2005-09-27 Thread Sean Mullan
Objet : Re: Using XMLSecurity with a JCA provider other than default one Did you try using the Security.insertProviderAt method? Vishal Julien TAUPIN wrote: I thought that the only way to use my own JCA provider was to place it at the first place of the providers with the following

Re: Using XMLSecurity with a JCA provider other than default one

2005-09-27 Thread Vishal Mahajan
: Re: Using XMLSecurity with a JCA provider other than default one Did you try using the Security.insertProviderAt method? Vishal Julien TAUPIN wrote: I thought that the only way to use my own JCA provider was to place it at the first place of the providers with the following code : Pro

RE: Using XMLSecurity with a JCA provider other than default one

2005-09-27 Thread Julien TAUPIN
d'origine- De : Vishal Mahajan [mailto:[EMAIL PROTECTED] Envoyé : mardi 27 septembre 2005 11:51 À : security-dev@xml.apache.org Objet : Re: Using XMLSecurity with a JCA provider other than default one Did you try using the Security.insertProviderAt method? Vishal Julien TAUPIN wrote: >I

Re: Using XMLSecurity with a JCA provider other than default one

2005-09-27 Thread Vishal Mahajan
Provider myProvider = null; Security.addProvider(myProvider); for(int i=0; iDe : Sean Mullan [mailto:[EMAIL PROTECTED] Envoyé : mardi 20 septembre 2005 22:34 À : security-dev@xml.apache.org Objet : Re: Using XMLSecurity with a JCA provider other than default one Julien TAUPIN

RE: Using XMLSecurity with a JCA provider other than default one

2005-09-21 Thread Julien TAUPIN
:34 À : security-dev@xml.apache.org Objet : Re: Using XMLSecurity with a JCA provider other than default one Julien TAUPIN wrote: > Hi all, > > Is it possible to use the XML Security API with a JCA / JCE provider > which is not the default provider. Yes. > The problem is that I need to use

RE: Using XMLSecurity with a JCA provider other than default one

2005-09-21 Thread Julien TAUPIN
@xml.apache.org Objet : Re: Using XMLSecurity with a JCA provider other than default one Julien TAUPIN wrote: > Hi all, > > Is it possible to use the XML Security API with a JCA / JCE provider > which is not the default provider. Yes. > The problem is that I need to use a specific prov

Re: Using XMLSecurity with a JCA provider other than default one

2005-09-20 Thread Sean Mullan
Julien TAUPIN wrote: Hi all, Is it possible to use the XML Security API with a JCA / JCE provider which is not the default provider. Yes. The problem is that I need to use a specific provider but when I define this one as the default provider the jar verifier causes a stack overflow exceptio

Using XMLSecurity with a JCA provider other than default one

2005-09-20 Thread Julien TAUPIN
Hi all, Is it possible to use the XML Security API with a JCA / JCE provider which is not the default provider. The problem is that I need to use a specific provider but when I define this one as the default provider the jar verifier causes a stack overflow exception.