Subversion Repositories XServices

Rev

Rev 159 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 159 Rev 166
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
2
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
3
	xmlns:xi="http://www.w3.org/2001/XInclude"
3
	xmlns:xi="http://www.w3.org/2001/XInclude"
4
	xmlns:xlink="http://www.w3.org/1999/xlink">
4
	xmlns:xlink="http://www.w3.org/1999/xlink">
5
 
5
 
6
	<section>
6
 
7
		<title>Installation</title>
7
		<title>Installation</title>
8
		<para>As of February 2013, XServices require Java 7. Older builds run against Java 5.</para>
8
		<para>As of February 2013, XServices require Java 7. Older builds run against Java 5.</para>
9
		<para>Apache Tomcat 7</para>
9
		<para>Apache Tomcat 7</para>
10
		<para>tbd.</para>
10
		<para>tbd.</para>
11
		<para>In short: Deploy .WAR file to Apache Tomcat</para>
11
		<para>In short: Deploy .WAR file to Apache Tomcat</para>
12
		<section>
12
		<section>
13
			<title>Securing with Basic Authentication</title>
13
			<title>Securing with Basic Authentication</title>
14
			<para>There is a quick guide explaining Basic Authentication for Tomcat here: <link
14
			<para>There is a quick guide explaining Basic Authentication for Tomcat here: <link
15
					xlink:href="http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1">
15
					xlink:href="http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1">
16
					http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1</link>
16
					http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1</link>
17
					</para>
17
					</para>
18
			<para>
18
			<para>
19
				
19
				
20
			</para>
20
			</para>
21
		</section>
21
		</section>
22
		<section>
22
		<section>
23
			<title>Limit access to</title>
23
			<title>Limit access by IP address</title>
24
			<para>Sometimes you&apos;ll only want to restrict access to to
24
			<para>Sometimes you&apos;ll only want to restrict access to to
25
				only
25
				only
26
				specified host names or IP addresses. This way, only
26
				specified host names or IP addresses. This way, only
27
				clients at
27
				clients at
28
				those specified addresses can use the web services.
28
				those specified addresses can use the web services.
29
				Tomcat provides
29
				Tomcat provides
30
				two configuration values for that:
30
				two configuration values for that:
31
				RemoteHostValve and
31
				RemoteHostValve and
32
				RemoteAddrValve.</para>
32
				RemoteAddrValve.</para>
33
			<para>These Valves allow you to filter requests by host name or
33
			<para>These Valves allow you to filter requests by host name or
34
				by IP
34
				by IP
35
				address, and to allow or deny hosts that match. The
35
				address, and to allow or deny hosts that match. The
36
				example below
36
				example below
37
				restricts access to the ArchiveService from any
37
				restricts access to the ArchiveService from any
38
				machine that is not
38
				machine that is not
39
				the local host.</para>
39
				the local host.</para>
40
			<programlisting language="xml">&lt;Context
40
			<programlisting language="xml">&lt;Context
41
				path=&quot;/XService/ArchiveService&quot;
41
				path=&quot;/XService/ArchiveService&quot;
42
				...&gt; &lt;Valve
42
				...&gt; &lt;Valve
43
				className=&quot;org.apache.catalina.valves.RemoteAddrValve&quot;
43
				className=&quot;org.apache.catalina.valves.RemoteAddrValve&quot;
44
				allow=&quot;127.0.0.1&quot; deny=&quot;&quot;/&gt; &lt;/Context&gt;
44
				allow=&quot;127.0.0.1&quot; deny=&quot;&quot;/&gt; &lt;/Context&gt;
45
			</programlisting>
45
			</programlisting>
46
			<para>If no allow pattern is given, then patterns that match
46
			<para>If no allow pattern is given, then patterns that match
47
				the deny
47
				the deny
48
				attribute patterns will be rejected, and all others
48
				attribute patterns will be rejected, and all others
49
				will be allowed.
49
				will be allowed.
50
				Similarly, if no deny pattern is given,
50
				Similarly, if no deny pattern is given,
51
				patterns that match the
51
				patterns that match the
52
				allow attribute will be allowed, and
52
				allow attribute will be allowed, and
53
				all others will be denied.
53
				all others will be denied.
54
				</para>
54
				</para>
55
			<para>The &lt;context&gt; element must be placed into the
55
			<para>The &lt;context&gt; element must be placed into the
56
				server.xml
56
				server.xml
57
				file (into &lt;engine&gt;&lt;host&gt;).</para>
57
				file (into &lt;engine&gt;&lt;host&gt;).</para>
58
		</section>
58
		</section>
59
	</section>
59
 
60
</section>
60
</section>
61
 
61
 
62
Generated by GNU Enscript 1.6.5.90.
62
Generated by GNU Enscript 1.6.5.90.
63
 
63
 
64
 
64