Revision: 4214
Author: [email protected]
Date: Thu Sep 8 07:48:01 2011
Log: Created wiki page through web user interface.
http://code.google.com/p/openmeetings/source/detail?r=4214
Added:
/wiki/SignWebStart.wiki
=======================================
--- /dev/null
+++ /wiki/SignWebStart.wiki Thu Sep 8 07:48:01 2011
@@ -0,0 +1,42 @@
+#summary Sign Script
+
+Place it in the folder red5-screenshare and run the command "ant"
+To clear the client-side cache from JavaWebstart:
+Open a console and type: javaws -uninstall
+
+{{{
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE project>
+<project name="openmeetings" basedir="./" default="sign">
+
+
+<target name="sign">
+ <delete file="filetest.keystore" />
+ <genkey alias="filetest"
+ storepass="secret"
+ keystore="filetest.keystore"
+ verbose="true">
+ <dname>
+ <param name="CN" value="Sebastian Wagner"/>
+ <param name="OU" value="technology"/>
+ <param name="O"
value="openmeetings.googlecode.com"/>
+ <param name="C" value="DE"/>
+ </dname>
+ </genkey>
+ <signjar
+ alias="filetest" keystore="filetest.keystore"
+ storepass="secret"
+ lazy="false"
+ >
+ <path>
+ <fileset dir="${basedir}" >
+ <include name="**/*.jar" />
+
+ </fileset>
+ </path>
+ </signjar>
+ </target>
+
+
+</project>
+}}}
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.