Re: Non dom based signature?

2004-02-18 Thread Berin Lautenbach
Vincent Finn wrote: Is it possible to sign and verify a document without using the DOM? Not at the moment - in either library. The core library loads its structures from DOM, and relies on DOM for most of the transforms. The reason I ask is because I have a document that is about 13Mb with

Problem with Init.init()

2004-02-18 Thread GANDHIRAJAN,AYYAPPAN (HP-India,ex2)
Hi there, I have been facing a performance problem because of Init.init() method. I am using Apache xml security for validating the client certificate, which is sent by the client along with SOAP envelope. The soap service is running in Apache Axis. After loading this Init.init() method, the

Re: Non dom based signature?

2004-02-18 Thread Vincent Finn
Berin Lautenbach wrote: The reason I ask is because I have a document that is about 13Mb with about 200 or 300 thousand nodes calling parse to get this into a DOM document crashes after the memory hits about 2Gb. I should be able to rewrite my load of this file to use Sax but that means

Re: Non dom based signature?

2004-02-18 Thread Berin Lautenbach
Vincent Finn wrote: That is sort of what I was looking to do but I could see a function in the library that took a byte stream since I can stream the Xml for my document easily so that would do me Can you tell me what function I need to use? Not so much a function. If you create a Reference

RE: Non dom based signature?

2004-02-18 Thread Vincent Finn
From: Berin Lautenbach Not so much a function. If you create a Reference with a URI that points to the file you want to use, that should do the trick. trying this and failing I'm sure I am missing something obvious but I can't see any examples using URI and mine isn't working I created a