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

2005-09-21 Thread Julien TAUPIN
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 : Provider[] providers = Security.getProviders(); for(int i=0; imailto:[EMAIL PROTECTED] Envoyé : mardi 20 septembre 2005 22:34 À : security-dev@xml.apach

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

2005-09-21 Thread Julien TAUPIN
I have found how to select my provider : JCEMapper.setProviderId(myprovider.getName()); -Message d'origine- De : Julien TAUPIN [mailto:[EMAIL PROTECTED] Envoyé : mercredi 21 septembre 2005 09:05 À : security-dev@xml.apache.org Objet : RE: Using XMLSecurity with a JCA provider other th

circumventBug2650 - Memory footprint

2005-09-21 Thread John Lanier
Hi, The circumventBug2650 function in XMLUtils takes up a significant amount of memory in adding Attributes to each node. Is there any effort underway to rewrite this in a more memory-friendly way? I am unable to sign XML documents larger than about 10MB using the current (1.2.x) code base. (Pe

DSIGReference and ID attribute

2005-09-21 Thread andrzej . matejko
Hi, Is it possible to add ID attribute to DSIGReference node(as defined in http://www.w3.org/TR/xmldsig-core/#sec-Reference)? best regards, andrzeJ

Re: circumventBug2650 - Memory footprint

2005-09-21 Thread Raul Benito
Don't use any xpath transformation. Select what you want to sign with: .. .. In this way , the circumventBug2650 is not called(and other several optimizations hit). And you can sign bigger documents. Using xpath transformation is always one order the magnitude slower. You can see some speed co