|
From: <pe...@us...> - 2003-12-16 15:04:34
|
Update of /cvsroot/neuclear/neuclear-id-sample/src/webapp/WEB-INF
In directory sc8-pr-cvs1:/tmp/cvs-serv10622/src/webapp/WEB-INF
Modified Files:
web.xml
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: web.xml
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id-sample/src/webapp/WEB-INF/web.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** web.xml 15 Dec 2003 23:31:31 -0000 1.3
--- web.xml 16 Dec 2003 15:04:31 -0000 1.4
***************
*** 10,13 ****
--- 10,14 ----
<context-param>
<param-name>serviceid</param-name>
+ <!-- Change the values below to your own service id -->
<param-value>neu://test</param-value>
<description>NeuClear id of Service</description>
***************
*** 19,26 ****
--- 20,29 ----
<context-param>
<param-name>keystore</param-name>
+ <!-- Change the below to the location of your keystore file or "default" for the users default keystore-->
<param-value>test</param-value>
</context-param>
<context-param>
<param-name>passphraseagent</param-name>
+ <!-- Change the below to the passphraseagent you wish to use. Valid choices are "gui" and "console" -->
<param-value>test</param-value>
</context-param>
***************
*** 38,44 ****
--- 41,56 ----
<load-on-startup>1</load-on-startup>
</servlet>
+ <servlet>
+ <servlet-name>sendmessage</servlet-name>
+ <servlet-class>org.neuclear.id.sample.SendMessageServlet</servlet-class>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
<servlet-mapping>
<servlet-name>authenticator</servlet-name>
<url-pattern>/Authorize</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>sendmessage</servlet-name>
+ <url-pattern>/Send</url-pattern>
</servlet-mapping>
<welcome-file-list>
|