|
From: <pe...@us...> - 2003-11-22 00:23:50
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/verifier
In directory sc8-pr-cvs1:/tmp/cvs-serv17112/src/java/org/neuclear/id/verifier
Modified Files:
VerifyingReader.java
Log Message:
All unit tests in commons, id and xmlsec now work.
AssetController now successfully processes payments in the unit test.
Payment Web App has working form that creates a TransferRequest presents it to the signer
and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust.
Index: VerifyingReader.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/verifier/VerifyingReader.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** VerifyingReader.java 21 Nov 2003 04:45:12 -0000 1.13
--- VerifyingReader.java 22 Nov 2003 00:23:46 -0000 1.14
***************
*** 32,35 ****
--- 32,41 ----
$Id$
$Log$
+ Revision 1.14 2003/11/22 00:23:46 pelle
+ All unit tests in commons, id and xmlsec now work.
+ AssetController now successfully processes payments in the unit test.
+ Payment Web App has working form that creates a TransferRequest presents it to the signer
+ and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust.
+
Revision 1.13 2003/11/21 04:45:12 pelle
EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
***************
*** 118,121 ****
--- 124,128 ----
readers = new HashMap();
readers.put("Identity", new Identity.Reader());
+ readers.put("Asset", new Identity.Reader());
readers.put(AuthenticationTicket.TAG_NAME, new AuthenticationTicket.Reader());
readers.put(SignatureRequest.SIGREQUEST_TAG, new SignatureRequest.Reader());
***************
*** 154,158 ****
public final void registerReader(final String name, final NamedObjectReader reader) {
! System.out.println("Registering: "+name);
readers.put(name, reader);
}
--- 161,165 ----
public final void registerReader(final String name, final NamedObjectReader reader) {
! System.out.println("Registering: " + name);
readers.put(name, reader);
}
|