Skip to content

Commit

Permalink
* Updated VC++ project files.
Browse files Browse the repository at this point in the history
* Minor changes to logging in Main.cc.
* Updated autoconf files.
  • Loading branch information
ruven committed Apr 13, 2011
1 parent d6be647 commit ad3d1da
Show file tree
Hide file tree
Showing 19 changed files with 2,013 additions and 292 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
15/04/2009: Version 0.9.9 Released


13/04/2011:
- Updated VC++ project files.
- Minor changes to logging in Main.cc.
- Updated autoconf files.


08/04/2011:
- Change to TileManager.cc to take into account whether a tile is padded
or not when applying a watermark.
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ ACLOCAL_AMFLAGS = -I m4

SUBDIRS = fcgi src

EXTRA_DIST = TODO COPYING.FCGI doc
EXTRA_DIST = TODO COPYING.FCGI doc windows
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ top_srcdir = @top_srcdir@
AUTOMAKE_OPTIONS = dist-bzip2
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = fcgi src
EXTRA_DIST = TODO COPYING.FCGI doc
EXTRA_DIST = TODO COPYING.FCGI doc windows
all: all-recursive

.SUFFIXES:
Expand Down
27 changes: 27 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,33 @@ Manager: NONE
--------------------------------------------------------------------


Java Application Servers (Tomcat, Jetty, JBoss etc)
---------------------------------------------------

IIPImage can also be used with Java Application Servers such as Apache Tomcat, JBoss and Jetty. Simply add
the JFastCGI jar file to your webapp and add the following to your web.xml configuration file in order to
re-route FCGI requests to the IIPImage server on the specified port.

<!-- Gateway Servlet to IIPImage FCGI server -->

<servlet>
<servlet-name>fcgi</servlet-name>
<servlet-class>net.jr.fastcgi.FastCGIServlet</servlet-class>
<init-param>>
<param-name>server-address</param-name>
<param-value>127.0.0.1:6667</param-value>
</init-param>
</servlet>

<servlet-mapping>
<servlet-name>fcgi</servlet-name>
<url-pattern>/cgi-bin/iipsrv.fcgi</url-pattern>
</servlet-mapping>

You then need to start an instance of the server on the requested port (6667 in this example) using
spawn-cgi (see spawn-cgi section above).


Command Line:
-------------

Expand Down
Loading

0 comments on commit ad3d1da

Please sign in to comment.