RE: TWO LINE PATCH, SPEED UP 2 TIMES

2004-04-17 Thread Scott Cantor
> If you have the time - have a look in
> 
> xml.apache.org/security/1.1
> 
> If you confirm it's OK, I'll do the final publish and release.

Sadly we share similar hours, but I'm not in OZ.

My test ran in 360 ms, down from 910 in the original 1.1 release.

-- Scott



RE: OUT OF MEMORY Exception, is it posible to sing a big XML ????

2004-04-17 Thread Sandeep Kumar
Hi Ed,

I am interested in knowing the hardware that you used.
Pl let me know.

Thanks,
Sandeep Kumar


-Original Message-
From: Kenworthy, Edward (EDS) [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 15, 2004 2:22 AM
To: '[EMAIL PROTECTED]'
Subject: RE: OUT OF MEMORY Exception, is it posible to sing a big XML 


Hi

8megs isn't big! :-)

Try

-Xms256m -Xmx256m

I need to sign large XML documents. Little tiddlers (7k) I can sign in
<1sec, 12meg documents take about 20s, however once I get to the maximum
size I need to sign (around the 25megs mark) it churns away for ages before
finally throwing an out of memory exception. My investigations suggests this
is an inherent limitation of a DOM based solution (which is pretty much
every software-based signer, including Apache). The killer is actually the
c14n transformation- not the hashing or signing.

How did I solve it? By using a device that does XML transformations in
hardware :-) Ask me off list if you want more information.

Edward

-Original Message-
From: Martin Labarthe Dubois [mailto:[EMAIL PROTECTED]
Sent: 14 April 2004 17:38
To: [EMAIL PROTECTED]
Subject: OUT OF MEMORY Exception, is it posible to sing a big XML 


Hello,

I need to sign a bigXML (aprox. 8900 KB), but I receive an OutOfMemory
Exception,

i set the JVM -Xmx to
-Xmx1024m

but I still receive the error, is there a way to avoid this problem???


Thanks,
Martin





Fwd: JSR 105: Proposed Final Draft

2004-04-17 Thread Davanum Srinivas
FYI. 

Note: forwarded message attached.


=
Davanum Srinivas - http://webservices.apache.org/~dims/--- Begin Message ---
The Proposed Final Draft Specification for

JSR-000105 XML Digital Signature APIs

is now available from

http://jcp.org/en/jsr/stage?listBy=proposed

as well as the JSR page:

http://jcp.org/en/jsr/detail?id=105

" This JSR is to define a standard set of APIs for XML digital signatures
services. The XML Digital Signature specification is defined by the W3C. This
proposal is to define and incorporate the high level implementation independent
Java APIs."

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JCP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".and include in the 
body of the message "help".--- End Message ---


Question about iop test of c14n

2004-04-17 Thread [EMAIL PROTECTED]
Hi,
   I'm refacotoring the c14n and i see that i can get some minor 
speed-ups, but I have found something strange. It is this vector correct?
xml-security/data/interop/c14n/Y4/c14n-24.txt

It isn't a valid xml file, I'm missing something?

Perhaps i need to read better the recomendation. But any explanation is 
good.




Re: Help with XML Encryption

2004-04-17 Thread Daniel
Thanks Berin.  I got all the stuff from CVS, got the config.xml to load 
correctly (whew), and now XMLCipherTester is working for 5 out of 9 tests, 
which is good enough for my purposes for now.

If I am not completely lost, version 1.04 does NOT contain the XMLCipher class 
at all, and so my build from CVS is probably more useful in terms of actually 
getting a working demo of encryption with Xml Security.  Is this correct?

Thank you again for your assistance, without which I'd be lost.





Re: Question about iop test of c14n

2004-04-17 Thread Berin Lautenbach
One of the really cool things about c14n is it doesn't necessarily 
result in valid XML .

C14n takes as an input a node-set, which may not be a complete XML 
document.  That means you can use it to canonicalise only the data in 
the document that you are interested in signing.

As an example - if an XPath expression is used in a transform that 
selects only the attribute nodes of an input document, and that 
resultant node-set is passed to c14n, then the output of the 
canonicaliser will be only the attribute nodes.

Cheers,
Berin
[EMAIL PROTECTED] wrote:
Hi,
   I'm refacotoring the c14n and i see that i can get some minor 
speed-ups, but I have found something strange. It is this vector correct?
xml-security/data/interop/c14n/Y4/c14n-24.txt

It isn't a valid xml file, I'm missing something?

Perhaps i need to read better the recomendation. But any explanation is 
good.






Re: Fwd: JSR 105: Proposed Final Draft

2004-04-17 Thread Berin Lautenbach
Cool!

Davanum Srinivas wrote:

FYI. 

Note: forwarded message attached.

=
Davanum Srinivas - http://webservices.apache.org/~dims/


Subject:
JSR 105: Proposed Final Draft
From:
Harold Ogle <[EMAIL PROTECTED]>
Date:
Fri, 16 Apr 2004 15:57:36 -0700
To:
[EMAIL PROTECTED]
To:
[EMAIL PROTECTED]
The Proposed Final Draft Specification for

JSR-000105 XML Digital Signature APIs

is now available from

http://jcp.org/en/jsr/stage?listBy=proposed

as well as the JSR page:

http://jcp.org/en/jsr/detail?id=105

" This JSR is to define a standard set of APIs for XML digital signatures
services. The XML Digital Signature specification is defined by the W3C. This
proposal is to define and incorporate the high level implementation independent
Java APIs."
===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JCP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".and include in the body of the 
message "help".


Re: TWO LINE PATCH, SPEED UP 2 TIMES

2004-04-17 Thread Berin Lautenbach
Scott Cantor wrote:

Sadly we share similar hours, but I'm not in OZ.
LOL.

My test ran in 360 ms, down from 910 in the original 1.1 release.
Now that is really really cool.  I'm going to print now!

Cheers,
Berin


Re: Help with XML Encryption

2004-04-17 Thread Berin Lautenbach


Daniel wrote:
Thanks Berin.  I got all the stuff from CVS, got the config.xml to load 
correctly (whew), and now XMLCipherTester is working for 5 out of 9 tests, 
which is good enough for my purposes for now.

That sounds like you might be using a 1.3 JCE?

If I am not completely lost, version 1.04 does NOT contain the XMLCipher class 
at all, and so my build from CVS is probably more useful in terms of actually 
getting a working demo of encryption with Xml Security.  Is this correct?
Absolutely correct.  1.04 did not have any of the new XML Encryption 
code - only some alpha code that was (as I understand it) not really 
intended for use.

I've just put 1.1 online, so you might want to download that and have a go.

Cheers,
Berin


1.1 Release

2004-04-17 Thread Berin Lautenbach
Peoples,

I have just made 1.1 "official".  It's on the web, with updated docs.

I'll also try to get an announcement out (for both Java and C++) in the 
next few days.

Cheers,
Berin


Re: 1.1 Release

2004-04-17 Thread Davanum Srinivas
Berin,

I have trouble running "ant -f build-ant1.5.xml" straight from latest cvs...Am getting 
test
failures. see enclosed out.txt.

-- dims



--- Berin Lautenbach <[EMAIL PROTECTED]> wrote:
> Peoples,
> 
> I have just made 1.1 "official".  It's on the web, with updated docs.
> 
> I'll also try to get an announcement out (for both Java and C++) in the 
> next few days.
> 
> Cheers,
>   Berin
> 

=
Davanum Srinivas - http://webservices.apache.org/~dims/C:\APACHE\xml-security>ant -f build-ant1.5.xml test
Buildfile: build-ant1.5.xml
  [taskdef] Could not load definitions from resource clovertasks. It could not be 
found.

init:

 [echo] ---
 [echo] - Apache-XML-Security-J v1.1.0 [2000-2004] ---
 [echo] ---
 [echo] Building with Apache Ant version 1.6.1 compiled on February 12 2004
 [echo] Java 1.4.2_04 located at C:\JDK14\jre
 [echo] ---


do.check.libs.jce:

do.check.libs:

do.build.src:

env.mk.dirs:
[mkdir] Created dir: C:\APACHE\xml-security\build
[mkdir] Created dir: C:\APACHE\xml-security\build\classes
[mkdir] Created dir: C:\APACHE\xml-security\build\docs
[mkdir] Created dir: C:\APACHE\xml-security\build\test
[mkdir] Created dir: C:\APACHE\xml-security\build\libs
[mkdir] Created dir: C:\APACHE\xml-security\build\dist
[mkdir] Created dir: C:\APACHE\xml-security\build\samples

build.src:
[javac] Compiling 145 source files to C:\APACHE\xml-security\build\classes
 [copy] Copying 12 files to C:\APACHE\xml-security\build\classes

build.test:
[javac] Compiling 27 source files to C:\APACHE\xml-security\build\test
 [copy] Copying 1 file to C:\APACHE\xml-security\build\test

test:
[mkdir] Created dir: C:\APACHE\xml-security\build\docs\xml\junit
[mkdir] Created dir: C:\APACHE\xml-security\build\docs\html\junit
[junit] Running org.apache.xml.security.test.c14n.helper.AttrCompareTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
[junit] Testsuite: org.apache.xml.security.test.c14n.helper.AttrCompareTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
[junit] - Standard Output ---
[junit] Attr1: goo:foo="" (foo)
[junit] -  ---

[junit] Testcase: testA1 took 0.011 sec
[junit] Testcase: testA2 took 0.01 sec
[junit] Testcase: testComplete took 0 sec


[junit] Running org.apache.xml.security.test.c14n.helper.C14nHelperTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.02 sec
[junit] Testsuite: org.apache.xml.security.test.c14n.helper.C14nHelperTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.02 sec

[junit] Testcase: testNamespaceIsAbsolute01 took 0.01 sec
[junit] Testcase: testNamespaceIsAbsolute02 took 0 sec
[junit] Testcase: testNamespaceIsAbsolute03 took 0 sec
[junit] Testcase: testNamespaceIsRelative01 took 0 sec
[junit] Testcase: testNamespaceIsRelative02 took 0 sec


[junit] Running org.apache.xml.security.test.c14n.implementations.C14NInteropTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 147.312 sec
[junit] Testsuite: 
org.apache.xml.security.test.c14n.implementations.C14NInteropTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 147.312 sec
[junit] - Standard Error -
[junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
[junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
[junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
[junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
[junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification successful for URI ""
[junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification successful for URI ""
[junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification successful for URI ""
[junit] Apr 17, 2004 10:48:02 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification successful for URI "iaikTests.example1.xml"
[junit] Apr 17, 2004 10:48:02 PM org.apache.xml.security.signature.Reference verify
[junit] INFO: Verification succ

Re: 1.1 Release

2004-04-17 Thread Davanum Srinivas
Here's the junit report - http://nagoya.apache.org/~dims/xmlsec-junit/

-- dims

--- Davanum Srinivas <[EMAIL PROTECTED]> wrote:
> Berin,
> 
> I have trouble running "ant -f build-ant1.5.xml" straight from latest cvs...Am 
> getting test
> failures. see enclosed out.txt.
> 
> -- dims
> 
> 
> 
> --- Berin Lautenbach <[EMAIL PROTECTED]> wrote:
> > Peoples,
> > 
> > I have just made 1.1 "official".  It's on the web, with updated docs.
> > 
> > I'll also try to get an announcement out (for both Java and C++) in the 
> > next few days.
> > 
> > Cheers,
> > Berin
> > 
> 
> =
> Davanum Srinivas - http://webservices.apache.org/~dims/> C:\APACHE\xml-security>ant 
> -f
build-ant1.5.xml test
> Buildfile: build-ant1.5.xml
>   [taskdef] Could not load definitions from resource clovertasks. It could not be 
> found.
> 
> init:
> 
>  [echo] ---
>  [echo] - Apache-XML-Security-J v1.1.0 [2000-2004] ---
>  [echo] ---
>  [echo] Building with Apache Ant version 1.6.1 compiled on February 12 2004
>  [echo] Java 1.4.2_04 located at C:\JDK14\jre
>  [echo] ---
> 
> 
> do.check.libs.jce:
> 
> do.check.libs:
> 
> do.build.src:
> 
> env.mk.dirs:
> [mkdir] Created dir: C:\APACHE\xml-security\build
> [mkdir] Created dir: C:\APACHE\xml-security\build\classes
> [mkdir] Created dir: C:\APACHE\xml-security\build\docs
> [mkdir] Created dir: C:\APACHE\xml-security\build\test
> [mkdir] Created dir: C:\APACHE\xml-security\build\libs
> [mkdir] Created dir: C:\APACHE\xml-security\build\dist
> [mkdir] Created dir: C:\APACHE\xml-security\build\samples
> 
> build.src:
> [javac] Compiling 145 source files to C:\APACHE\xml-security\build\classes
>  [copy] Copying 12 files to C:\APACHE\xml-security\build\classes
> 
> build.test:
> [javac] Compiling 27 source files to C:\APACHE\xml-security\build\test
>  [copy] Copying 1 file to C:\APACHE\xml-security\build\test
> 
> test:
> [mkdir] Created dir: C:\APACHE\xml-security\build\docs\xml\junit
> [mkdir] Created dir: C:\APACHE\xml-security\build\docs\html\junit
> [junit] Running org.apache.xml.security.test.c14n.helper.AttrCompareTest
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
> [junit] Testsuite: org.apache.xml.security.test.c14n.helper.AttrCompareTest
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
> [junit] - Standard Output ---
> [junit] Attr1: goo:foo="" (foo)
> [junit] -  ---
> 
> [junit] Testcase: testA1 took 0.011 sec
> [junit] Testcase: testA2 took 0.01 sec
> [junit] Testcase: testComplete took 0 sec
> 
> 
> [junit] Running org.apache.xml.security.test.c14n.helper.C14nHelperTest
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.02 sec
> [junit] Testsuite: org.apache.xml.security.test.c14n.helper.C14nHelperTest
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.02 sec
> 
> [junit] Testcase: testNamespaceIsAbsolute01 took 0.01 sec
> [junit] Testcase: testNamespaceIsAbsolute02 took 0 sec
> [junit] Testcase: testNamespaceIsAbsolute03 took 0 sec
> [junit] Testcase: testNamespaceIsRelative01 took 0 sec
> [junit] Testcase: testNamespaceIsRelative02 took 0 sec
> 
> 
> [junit] Running org.apache.xml.security.test.c14n.implementations.C14NInteropTest
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 147.312 sec
> [junit] Testsuite: 
> org.apache.xml.security.test.c14n.implementations.C14NInteropTest
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 147.312 sec
> [junit] - Standard Error -
> [junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference 
> verify
> [junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
> [junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference 
> verify
> [junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
> [junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference 
> verify
> [junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
> [junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference 
> verify
> [junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
> [junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.signature.Reference 
> verify
> [junit] INFO: Verification successful for URI ""
> [junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.signature.Reference 
> verify
> [junit] INFO: Verification successful for URI ""
> [junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.

Re: 1.1 Release

2004-04-17 Thread Berin Lautenbach
Dims,

Do you have the strong crypto policy files installed in your JRE?

Cheers,
Berin
Davanum Srinivas wrote:

Here's the junit report - http://nagoya.apache.org/~dims/xmlsec-junit/

-- dims

--- Davanum Srinivas <[EMAIL PROTECTED]> wrote:

Berin,

I have trouble running "ant -f build-ant1.5.xml" straight from latest cvs...Am getting 
test
failures. see enclosed out.txt.
-- dims



--- Berin Lautenbach <[EMAIL PROTECTED]> wrote:

Peoples,

I have just made 1.1 "official".  It's on the web, with updated docs.

I'll also try to get an announcement out (for both Java and C++) in the 
next few days.

Cheers,
Berin
=
Davanum Srinivas - http://webservices.apache.org/~dims/> C:\APACHE\xml-security>ant -f
build-ant1.5.xml test

Buildfile: build-ant1.5.xml
 [taskdef] Could not load definitions from resource clovertasks. It could not be found.
init:

[echo] ---
[echo] - Apache-XML-Security-J v1.1.0 [2000-2004] ---
[echo] ---
[echo] Building with Apache Ant version 1.6.1 compiled on February 12 2004
[echo] Java 1.4.2_04 located at C:\JDK14\jre
[echo] ---
do.check.libs.jce:

do.check.libs:

do.build.src:

env.mk.dirs:
   [mkdir] Created dir: C:\APACHE\xml-security\build
   [mkdir] Created dir: C:\APACHE\xml-security\build\classes
   [mkdir] Created dir: C:\APACHE\xml-security\build\docs
   [mkdir] Created dir: C:\APACHE\xml-security\build\test
   [mkdir] Created dir: C:\APACHE\xml-security\build\libs
   [mkdir] Created dir: C:\APACHE\xml-security\build\dist
   [mkdir] Created dir: C:\APACHE\xml-security\build\samples
build.src:
   [javac] Compiling 145 source files to C:\APACHE\xml-security\build\classes
[copy] Copying 12 files to C:\APACHE\xml-security\build\classes
build.test:
   [javac] Compiling 27 source files to C:\APACHE\xml-security\build\test
[copy] Copying 1 file to C:\APACHE\xml-security\build\test
test:
   [mkdir] Created dir: C:\APACHE\xml-security\build\docs\xml\junit
   [mkdir] Created dir: C:\APACHE\xml-security\build\docs\html\junit
   [junit] Running org.apache.xml.security.test.c14n.helper.AttrCompareTest
   [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
   [junit] Testsuite: org.apache.xml.security.test.c14n.helper.AttrCompareTest
   [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
   [junit] - Standard Output ---
   [junit] Attr1: goo:foo="" (foo)
   [junit] -  ---
   [junit] Testcase: testA1 took 0.011 sec
   [junit] Testcase: testA2 took 0.01 sec
   [junit] Testcase: testComplete took 0 sec
   [junit] Running org.apache.xml.security.test.c14n.helper.C14nHelperTest
   [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.02 sec
   [junit] Testsuite: org.apache.xml.security.test.c14n.helper.C14nHelperTest
   [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.02 sec
   [junit] Testcase: testNamespaceIsAbsolute01 took 0.01 sec
   [junit] Testcase: testNamespaceIsAbsolute02 took 0 sec
   [junit] Testcase: testNamespaceIsAbsolute03 took 0 sec
   [junit] Testcase: testNamespaceIsRelative01 took 0 sec
   [junit] Testcase: testNamespaceIsRelative02 took 0 sec
   [junit] Running 
org.apache.xml.security.test.c14n.implementations.C14NInteropTest
   [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 147.312 sec
   [junit] Testsuite: org.apache.xml.security.test.c14n.implementations.C14NInteropTest
   [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 147.312 sec
   [junit] - Standard Error -
   [junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference verify
   [junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
   [junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference verify
   [junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
   [junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference verify
   [junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
   [junit] Apr 17, 2004 10:48:00 PM org.apache.xml.security.signature.Reference verify
   [junit] INFO: Verification successful for URI "#xpointer(id('to-be-signed'))"
   [junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.signature.Reference verify
   [junit] INFO: Verification successful for URI ""
   [junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.signature.Reference verify
   [junit] INFO: Verification successful for URI ""
   [junit] Apr 17, 2004 10:48:01 PM org.apache.xml.security.signature.Reference verify
   [junit] INFO: Verification successful for URI ""
   [junit] Apr 17, 2004 10:48:02 PM org.apache.xml.security.signature.Reference verify
   [junit] INFO: Verification succes

[EMAIL PROTECTED]: xml-security/xml-security failed

2004-04-17 Thread Sam Ruby
To whom it may engage...

This is an automated request, but not an unsolicited one. For help 
understanding the request please visit 
http://gump.apache.org/nagged.html, 
and/or contact [EMAIL PROTECTED]

Project xml-security has an issue affecting its community integration. This issue 
affects 1 projects, and has been outstanding for 17 runs. The current state is 
'Failed', for reason 'Build Failed'

Full details are available at: 
http://lsd.student.utwente.nl/gump/xml-security/xml-security/index.html, however some 
snippets follow:

-  -  -  -  - -- --  G U M P

Gump provided these annotations:

 - Info - Sole jar [xmlsec.jar] identifier set to project name
 - Info - Dependency on jce exists, no need to add for property lib.jce.
 - Info - Enable "debug" output, due to a sequence of 16 previous errors.
 - Info - Failed with reason build failed


-  -  -  -  - -- --  G U M P
Gump performed this work:

http://lsd.student.utwente.nl/gump/xml-security/xml-security/gump_work/build_xml-security_xml-security.html
Work Name: build_xml-security_xml-security (Type: Build)
State: Failed
Elapsed: 0 hours, 0 minutes, 19 seconds
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/data3/gump/xml-xerces2/java/build/xercesImpl.jar:/data3/gump/xml-xerces2/java/build/xml-apis.jar:/data3/gump/xml-xalan/java/build/xalan-unbundled.jar:/data3/gump/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -debug -Dgump.merge=/data3/gump/gump-install/work/merge.xml 
-Dbuild.sysclasspath=only -Djce.download.sha1=c1f0e975e8c8e0a0105787b249a50615b485d109 
-Dlib.jce=/data3/gump/opt/jce/jce-jdk13-116.jar 
-Djce.download.md5=85c64cd754719a4bc8da7e9aa0e113fd gump 
[Working Directory: /data3/gump/xml-security]
-
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/EncryptionConstants.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/EncryptionElementProxy.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/HelperNodeList.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/utils/HexDump.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/utils/I18n.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/IdResolver.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/IgnoreAllErrorHandler.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/JavaUtils.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/utils/PRNG.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/RFC2253Parser.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/SignatureElementProxy.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/utils/Version.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/X509CertificateValidator.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/XMLUtils.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/XPathFuncHereAPI.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/ResourceResolver.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/ResourceResolverException.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/ResourceResolverSpi.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverAnonymous.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverDirectHTTP.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverFragment.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverLocalFilesystem.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverXPointer.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/Init.java:149: 
m_functions has private access in org.apache.xpath.compiler.FunctionTable
[javac]for (int i = 0; i < FunctionTable.m_functions.length; i++) {
[javac] ^
[javac] /data3/gump/xml-security/src/org/apache/xml/security/Init.java:150: 
m_functions has private access in org.apache.xpath.compiler.FunctionTable
[javac]   FuncLoader loader = FunctionTable.m_functions[i];
[javac]^
[javac] /data3/gump/xml-security/src/org/apache/xml/security/Init.java:156: 
m_functions has private access in org.apache.xpa

[GUMP@lsd]: xml-security/xml-security failed

2004-04-17 Thread Sam Ruby
To whom it may engage...

This is an automated request, but not an unsolicited one. For help 
understanding the request please visit 
http://gump.apache.org/nagged.html, 
and/or contact [EMAIL PROTECTED]

Project xml-security has an issue affecting its community integration. This issue 
affects 1 projects, and has been outstanding for 17 runs. The current state is 
'Failed', for reason 'Build Failed'

Full details are available at: 
http://lsd.student.utwente.nl/gump/xml-security/xml-security/index.html, however some 
snippets follow:

-  -  -  -  - -- --  G U M P

Gump provided these annotations:

 - Info - Sole jar [xmlsec.jar] identifier set to project name
 - Info - Dependency on jce exists, no need to add for property lib.jce.
 - Info - Enable "debug" output, due to a sequence of 16 previous errors.
 - Info - Failed with reason build failed


-  -  -  -  - -- --  G U M P
Gump performed this work:

http://lsd.student.utwente.nl/gump/xml-security/xml-security/gump_work/build_xml-security_xml-security.html
Work Name: build_xml-security_xml-security (Type: Build)
State: Failed
Elapsed: 0 hours, 0 minutes, 19 seconds
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/data3/gump/xml-xerces2/java/build/xercesImpl.jar:/data3/gump/xml-xerces2/java/build/xml-apis.jar:/data3/gump/xml-xalan/java/build/xalan-unbundled.jar:/data3/gump/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -debug -Dgump.merge=/data3/gump/gump-install/work/merge.xml 
-Dbuild.sysclasspath=only -Djce.download.sha1=c1f0e975e8c8e0a0105787b249a50615b485d109 
-Dlib.jce=/data3/gump/opt/jce/jce-jdk13-116.jar 
-Djce.download.md5=85c64cd754719a4bc8da7e9aa0e113fd gump 
[Working Directory: /data3/gump/xml-security]
-
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/EncryptionConstants.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/EncryptionElementProxy.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/HelperNodeList.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/utils/HexDump.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/utils/I18n.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/IdResolver.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/IgnoreAllErrorHandler.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/JavaUtils.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/utils/PRNG.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/RFC2253Parser.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/SignatureElementProxy.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/utils/Version.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/X509CertificateValidator.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/XMLUtils.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/XPathFuncHereAPI.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/ResourceResolver.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/ResourceResolverException.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/ResourceResolverSpi.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverAnonymous.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverDirectHTTP.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverFragment.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverLocalFilesystem.java
[javac] 
/data3/gump/xml-security/src/org/apache/xml/security/utils/resolver/implementations/ResolverXPointer.java
[javac] /data3/gump/xml-security/src/org/apache/xml/security/Init.java:149: 
m_functions has private access in org.apache.xpath.compiler.FunctionTable
[javac]for (int i = 0; i < FunctionTable.m_functions.length; i++) {
[javac] ^
[javac] /data3/gump/xml-security/src/org/apache/xml/security/Init.java:150: 
m_functions has private access in org.apache.xpath.compiler.FunctionTable
[javac]   FuncLoader loader = FunctionTable.m_functions[i];
[javac]^
[javac] /data3/gump/xml-security/src/org/apache/xml/security/Init.java:156: 
m_functions has private access in org.apache.xpa