You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

This page describes the process for building the isapi_redirect.dll (mod_jk) for Windows. This is the native plug-in for IIS that provides broadly the same functionality as mod_jk does for httpd.

These instructions assume that you have configured the common build environment.  

Building

The isapi_redirector.dll requires no other external dependencies (it does depend on PCRE but this is included in the source). Obtain the tcnative source from one of:

E.g.: To build the latest 1.2.x development build from trunk

Obtain the source code:

 c:
 cd \
 svn co https://svn.apache.org/repos/asf/tomcat/jk/trunk/ tomcat-jk-1.2.x
 cd tomcat-jk-1.2.x\native\iis

 

Build PCRE

 cd pcre
 c:\cmsc\setenv.bat /x86
nmake -f pcre.x86
c:\cmsc\setenv.bat /x64
 nmake -f pcre.amd64 

 

Build  isapi_redirector.dll:

 cd ..
c:\cmsc\setenv.bat /x86 
nmake -f Makefile.x86    c:\cmsc\setenv.bat /x64  nmake -f Makefile.x64


Tomcat isapi_redirect DLLs may then be found in C:\tomcat-jk-1.2.x\native\iis\Release_[amd64|x86].

Construct the binary distributions    

 set VER=1.2.42
 mkdir tomcat-connectors-%VER%-windows-i386-iis
 copy ..\..\LICENSE tomcat-connectors-%VER%-windows-i386-iis\
 copy ..\..\NOTICE tomcat-connectors-%VER%-windows-i386-iis\
 copy README tomcat-connectors-%VER%-windows-i386-iis\
copy Release_x86\isapi_redirect.dll tomcat-connectors-%VER%-windows-i386-iis\
 mkdir tomcat-connectors-%VER%-windows-x86_64-iis
 
copy ..\..\LICENSE tomcat-connectors-%VER%-windows-x86_64-iis\  copy ..\..\NOTICE tomcat-connectors-%VER%-windows-x86_64-iis\  copy README tomcat-connectors-%VER%-windows-x86_64-iis\
copy Release_amd64\isapi_redirect.dll tomcat-connectors-%VER%-windows-x86_64-iis\

 SET JAVA_HOME=C:\Program Files\Java\jdk1.7.0_71   
 set PATH=%PATH%;%JAVA_HOME%\bin
 cd tomcat-connectors-%VER%-windows-i386-iis
 jar -cMf ..\tomcat-connectors-%VER%-windows-i386-iis.zip *
 cd ..\tomcat-connectors-%VER%-windows-x86_64-iis
 jar -cMf ..\tomcat-connectors-%VER%-windows-x86_64-iis.zip *

 

The Windows binary distributions may then be found in C:\tomcat-jk-1.2.x\native\iis

These need to be signed and hashed before uploading for the release vote.  

  • No labels