Re: XmlSignature advice

2010-01-14 Thread Sean Mullan
Mathias Berg wrote: Hi, i need some advice how i should build my xmlSignature document. In our application we can create many orders. And each order shall be xmlSigned. After that, the xmlSigned orders is then added to a new XmlSigned document, so we signed all orders in one document again. N

Re: XMLSignature::getSignatureMethod() broken?

2009-08-04 Thread Thomas Sondergaard
Scott Cantor wrote: Looks like a bug to me. Bugs need to be reported to issues.apache.org/bugzilla. Thanks, -- Scott Fine, I'll report it. Thomas

RE: XMLSignature::getSignatureMethod() broken?

2009-08-03 Thread Scott Cantor
> Looks like a bug to me. Bugs need to be reported to issues.apache.org/bugzilla. Thanks, -- Scott

Re: XMLSignature

2009-07-15 Thread Sean Mullan
ensaje original- De: Julien PASQUIER [mailto:julienpasqu...@free.fr] Enviado el: lunes, 13 de julio de 2009 17:31 Para: security-dev@xml.apache.org Asunto: Re: XMLSignature Hi Sean, Thank you for your response. I would like implement a XAdESSignature class which extends the org.apache.xml.security

Re: XMLSignature

2009-07-15 Thread Julien PASQUIER
17:31 Para: security-dev@xml.apache.org Asunto: Re: XMLSignature Hi Sean, Thank you for your response. I would like implement a XAdESSignature class which extends the org.apache.xml.security.signature.XMLSignature class. Regards, Julien Pasquier Sean Mullan wrote : Julien PASQUIER wrote:

RE: XMLSignature

2009-07-13 Thread Ernesto Arroyo Ron
ginal- De: Julien PASQUIER [mailto:julienpasqu...@free.fr] Enviado el: lunes, 13 de julio de 2009 17:31 Para: security-dev@xml.apache.org Asunto: Re: XMLSignature Hi Sean, Thank you for your response. I would like implement a XAdESSignature class which extends the org.apache.xml.security.signature.XMLSig

Re: XMLSignature

2009-07-13 Thread Julien PASQUIER
Hi Sean, Thank you for your response. I would like implement a XAdESSignature class which extends the org.apache.xml.security.signature.XMLSignature class. Regards, Julien Pasquier Sean Mullan wrote : Julien PASQUIER wrote: Hi all, I would like to create a class which extends the XMLSigna

Re: XMLSignature

2009-07-13 Thread Sean Mullan
Sean Mullan wrote: Julien PASQUIER wrote: Hi all, I would like to create a class which extends the XMLSignature class but it is not possible because XMLSignature class is declared as "final". Is it possible te remove the "final" declaration from the XMLSecurity class in the next release of

Re: XMLSignature

2009-07-13 Thread Sean Mullan
Julien PASQUIER wrote: Hi all, I would like to create a class which extends the XMLSignature class but it is not possible because XMLSignature class is declared as "final". Is it possible te remove the "final" declaration from the XMLSecurity class in the next release of XMLSecurity (v1.4.3)

Re: XMLSignature class - The signer output stream is closed before signing operation

2007-03-14 Thread Julien PASQUIER
/Imposible } - Original Message - From: "Marcin Cinik" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 14, 2007 12:19 PM Subject: RE: XMLSignature class - The signer output stream is closed before signing operation There should rather be: try { so.close

RE: XMLSignature class - The signer output stream is closed befor e signing operation

2007-03-14 Thread Marcin Cinik
There should rather be: try { so.close(); } catch (IOException e) { //Imposible throw new RuntimeException(e); } when the operation is impossible (You never know ;-) ). -Original Message- From: Julien PASQUIER [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 14, 2007 12:12 PM

Re: XMLSignature constructor error : The requested algorithm does not exist

2006-01-25 Thread Sean Mullan
Do you have a test case? --Sean Larchier Christophe wrote: Hi all, I use xml-security-1_3_0. I execute the following code : logger.info("arg2=" + NAMESPACE_URI_DS); logger.info("arg3=" + NAMESPACE_URI_DS + algo); signature = new XMLSignature(envelope, NAMESPA

RE: XMLSignature with RSA_MD5 key

2005-06-15 Thread Milan Tomic
Hi, Why are you using MD5 alg? It is totally broken and compleatly insecure. Can you use SHA1 or SHA2 instead? Best regards, Milan > -Original Message- > From: Rafael José Deitos [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 15, 2005 4:39 PM > To: security-dev@xml.apache.org > Subj

Re: XMLSignature sign - avoid namespaces on every element

2004-11-30 Thread Raul Benito
> > Is there any way to stop the sign method of XMLSignature adding namespace > information to every element? When I use it the argument list in my SOAP > message becomes 7 times larger because namespace information is added to > every element. For long element lists this is causing an OutOfMemory