Subversion Repositories XServices

Rev

Rev 159 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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