|
From: <pe...@us...> - 2003-12-16 15:05:04
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/auth
In directory sc8-pr-cvs1:/tmp/cvs-serv10766/src/java/org/neuclear/auth
Modified Files:
AuthenticationServlet.java
Log Message:
Added SignedMessage contract for signing simple textual contracts.
Added NeuSender, updated SmtpSender and Sender to take plain email addresses (without the mailto:)
Added AbstractObjectCreationTest to make it quicker to write unit tests to verify
NamedObjectBuilder/SignedNamedObject Pairs.
Sample application has been expanded with a basic email application.
Updated docs for sample web app.
Added missing LGPL LICENSE.txt files to signer and sample app
Index: AuthenticationServlet.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/auth/AuthenticationServlet.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** AuthenticationServlet.java 15 Dec 2003 23:33:04 -0000 1.10
--- AuthenticationServlet.java 16 Dec 2003 15:04:59 -0000 1.11
***************
*** 45,48 ****
--- 45,57 ----
$Id$
$Log$
+ Revision 1.11 2003/12/16 15:04:59 pelle
+ Added SignedMessage contract for signing simple textual contracts.
+ Added NeuSender, updated SmtpSender and Sender to take plain email addresses (without the mailto:)
+ Added AbstractObjectCreationTest to make it quicker to write unit tests to verify
+ NamedObjectBuilder/SignedNamedObject Pairs.
+ Sample application has been expanded with a basic email application.
+ Updated docs for sample web app.
+ Added missing LGPL LICENSE.txt files to signer and sample app
+
Revision 1.10 2003/12/15 23:33:04 pelle
added ServletTools.getInitParam() which first tries the ServletConfig, then the context config.
***************
*** 160,164 ****
out.print(NSResolver.resolveIdentity(userns).getSigner());
out.write("\" method=\"POST\">\n ");
! out.write("<input name=\"base64xml\" value=\"");
out.print(XMLSecTools.encodeElementBase64(sigreq));
out.write("\" type=\"hidden\">\n ");
--- 169,173 ----
out.print(NSResolver.resolveIdentity(userns).getSigner());
out.write("\" method=\"POST\">\n ");
! out.write("<input name=\"neuclear-request\" value=\"");
out.print(XMLSecTools.encodeElementBase64(sigreq));
out.write("\" type=\"hidden\">\n ");
|