~ubuntu-branches/ubuntu/oneiric/libapache-mod-jk/oneiric

« back to all changes in this revision

Viewing changes to jk/xdocs/config/iis.xml

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2006-08-05 16:30:53 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060805163053-myf66gm6j1a21ps6
Tags: 1:1.2.18-1ubuntu1
Merge from Debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
<!DOCTYPE document [
3
 
  <!ENTITY project SYSTEM "project.xml">
4
 
]>
5
 
<document url="iis.html">
6
 
 
7
 
    &project; 
8
 
 
9
 
    <properties>
10
 
        <author email="mturk@apache.org">Mladen Turk</author>
11
 
        <title>Configuring IIS</title>
12
 
    </properties>
13
 
 
14
 
<body>
15
 
 
16
 
<section name="Requirements">
17
 
<p>
18
 
The Tomcat redirector requires three entities:
19
 
 
20
 
<ul>
21
 
<li>
22
 
<b>isapi_redirect.dll</b> - The IIS server plugin, either obtain a pre-built DLL or build it yourself (see the build section).
23
 
</li>
24
 
<li>
25
 
<b>workers.properties</b> - A file that describes the host(s) and port(s) used by the workers (Tomcat processes). 
26
 
A sample workers.properties can be found under the conf directory.
27
 
</li>
28
 
<li>
29
 
<b>uriworkermap.properties</b> - A file that maps URL-Path patterns to workers. 
30
 
A sample uriworkermap.properties can be found under the conf directory as well.
31
 
</li>
32
 
</ul>
33
 
</p>
34
 
 
35
 
<p>
36
 
The installation includes the following parts:
37
 
 
38
 
<ul>
39
 
<li>
40
 
Configuring the ISAPI redirector with a default /examples context and checking that you can serve servlets with IIS.
41
 
</li>
42
 
<li>
43
 
Adding more contexts to the configuration.
44
 
</li>
45
 
</ul>
46
 
</p>
47
 
</section>
48
 
<section name="Registry settings">
49
 
<p>
50
 
ISAPI redirector reads configuration from the registry, create a new registry key named :
51
 
</p>
52
 
<p>
53
 
<b>"HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Jakarta Isapi Redirector\1.0"</b>
54
 
</p>
55
 
<attributes name="Key Name">
56
 
<attribute name="extension_uri" required="true"><p>
57
 
A string value pointing to the ISAPI extension <b>/jakarta/isapi_redirect.dll</b>
58
 
</p></attribute>
59
 
<attribute name="log_file" required="false"><p>
60
 
A value pointing to location where log file will be created.
61
 
(for example <b>c:\jakarta-tomcat\logs\isapi.log</b>)
62
 
</p></attribute>
63
 
<attribute name="log_level" required="false"><p>
64
 
A string value for log level 
65
 
(can be debug, info, warn, error or trace).
66
 
</p></attribute>
67
 
<attribute name="worker_file" required="true"><p>
68
 
A string value with the full path to workers.properties file
69
 
(for example <b>c:\jakarta-tomcat\conf\workers.properties</b>)
70
 
</p></attribute>
71
 
<attribute name="worker_mount_file" required="true"><p>
72
 
A string value with is the full path to uriworkermap.properties file
73
 
(for example <b>c:\jakarta-tomcat\conf\uriworkermap.properties</b>)
74
 
</p></attribute>
75
 
 
76
 
</attributes>
77
 
</section> 
78
 
 
79
 
</body>
80
 
</document>
 
 
b'\\ No newline at end of file'