You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by "Samuel V. Green III" <ma...@cox.net> on 2004/06/25 02:40:21 UTC

Tomcat and mod_webapp?

I'm still trying to understand integrating tomcat with apache2.

I came across this site looking for answers : 
http://developer.apple.com/internet/java/tomcat1.html

It make reference to the following:

	Using Tomcat with Apache via mod_webapp

If you’d like Tomcat to run in conjunction with your Apache web server, 
you’ll need to install a new Apache module, called mod_webapp. It’s 
available from the Jakarta Project’s site as a pre-compiled binary file 
for Mac OS X. At the time of this writing, this was the latest binary. 
To install the module, simply download it to your machine (a standard 
location would be /usr/local/src/), and copy the mod_webapp library 
file into your Apache module folder.

When I goto the Jakarta Project's site I can't seem to locate anything 
that is titled "mod-webapp"?

Where exactly is this module available?  Link?

Thanks,

Samuel.


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: Tomcat and mod_webapp?

Posted by Bill Barker <wb...@wilshire.com>.
mod_webapp has been dead for a very long time now.  Use mod_jk(2).

"Samuel V. Green III" <ma...@cox.net> wrote in message
news:3D636DCC-C640-11D8-B34A-000A95DB7132@cox.net...

I'm still trying to understand integrating tomcat with apache2.

I came across this site looking for answers :
http://developer.apple.com/internet/java/tomcat1.html

It make reference to the following:

Using Tomcat with Apache via mod_webapp

If you�d like Tomcat to run in conjunction with your Apache web server,
you�ll need to install a new Apache module, called mod_webapp. It�s
available from the Jakarta Project�s site as a pre-compiled binary file
for Mac OS X. At the time of this writing, this was the latest binary.
To install the module, simply download it to your machine (a standard
location would be /usr/local/src/), and copy the mod_webapp library
file into your Apache module folder.

When I goto the Jakarta Project's site I can't seem to locate anything
that is titled "mod-webapp"?

Where exactly is this module available?  Link?

Thanks,

Samuel.




---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


OT : Convert Korean Access mdb to MySQL

Posted by Eric Noel <er...@mylife.ph>.
im trying to convert an access file to mysql db
so i decided to use jdbc/odbc to access mdb then insert them to mysql 
and display first to see if my jsp (see code below) can really fetch 
korean characters. but it seems it doesnt, how come it display ????|??? 
instead of the korean characters? do i need to install korean access 
driver? but i take a look at the mdb using access ide, ican see those 
korean chars? Thanks for anyone help


----snppied code---

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

<sql:setDataSource var="mdb"
     driver="sun.jdbc.odbc.JdbcOdbcDriver"
     url="jdbc:odbc:convert_db"
     user="Admin" password="" />

<sql:query var="rs" dataSource="${mdb}">
     SELECT * from koreanTbl
</sql:query>

<c:if test="${rs.rowCount > 0}">
    <c:forEach var="row" items="${rs.rows}" varStatus="lineInfo">
	<%-- show records fetched --%>
	*
         <c:out value="${row.fld1}" escapeXml="false"/>|
         <c:out value="${row.fld1}" escapeXml="true"/>|
         <c:out value="${row.fld1}" />|
         <c:out value="${fn:escapeXml(row.fld1)}" /><br />*	
    </c:forEach>
</c:if>

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org