GSS_S_PROMPTING_NEEDED is a bit
[cyrus-sasl.git] / java / README
1 4-Nov-2000
2
3 after a "make install"
4 class files are installed in
5
6 $(prefix)/lib/java/classes/sasl
7
8 to compile programs using it, do:
9
10 javac -classpath /usr/java/lib/classes.zip:/usr/local/lib/java/classes/sasl <file>.java
11
12 (make sure to substitute your JDK for /usr/java/lib/classes.zip)
13
14 to run, do
15
16 java -classpath <same path as above> <YourProgram>
17
18 ----------------------------
19 This is a java version of the SASL libraries. It supports all the
20 mechanisms in the C version and conforms to the internet draft in the
21 doc/ directory. JNI is used.
22
23 Sample applications exist in the Test/ directory.
24
25 They generally can be run with something like:
26
27 java -debug -classpath
28 ../:/usr/java/lib/classes.zip:/usr/obj/sasl/java/:. jimtest -p 2143 -m
29 KERBEROS_V4 cyrus-dev
30
31 and
32
33 java -debug -classpath
34 ../:/usr/java/lib/classes.zip:/usr/obj/sasl/java/:. testserver
35
36
37 Any feedback is welcome.