Streaming CSV via Apache/ Tomcat  with Mod Proxy

I have Apache hooked up to Tomcat using mod_proxy and attempts to stream a CSV file from a Struts action via tomcat fails.
Using the tomcat port localhost:8080/testappp the streaming works fine but for some reason it does not work via the apache url
Build is Red Hat Enterprise Linux AS release 4 on Apache 2.0.52-25 and Tomcat 5.5
Below are pastes of the apache conf file and tomcat server.xml
Thanks
# httpd.conf
# Based upon the NCSA server configuration files originally by Rob McCool.
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs-2.0/> for detailed information about
# the directives.
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# The configuration directives are grouped into three basic sections:
# 1. Directives that control the operation of the Apache server process as a
# whole (the 'global environment').
# 2. Directives that define the parameters of the 'main' or 'default' server,
# which responds to requests that aren't handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
# 3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do not begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "/etc/httpd" will be interpreted by the
# server as "/etc/httpd/logs/foo.log".
### Section 1: Global Environment
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
# Don't give away too much information about all the subcomponents
# we are running. Comment out this line if you don't mind remote sites
# finding out what major optional modules you are running
ServerTokens OS
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
# NOTE! If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation
# (available at <URL:http://httpd.apache.org/docs-2.0/mod/mpm_common.html#lockfile>);
# you will save yourself a lot of trouble.
# Do NOT add a slash at the end of the directory path.
ServerRoot "/etc/httpd"
# PidFile: The file in which the server should record its process
# identification number when it starts.
PidFile run/httpd.pid
# Timeout: The number of seconds before receives and sends time out.
Timeout 120
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
KeepAlive Off
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
MaxKeepAliveRequests 100
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
KeepAliveTimeout 15
## Server-Pool Size Regulation (MPM specific)
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers 8
MinSpareServers 5
MaxSpareServers 20
ServerLimit 256
MaxClients 256
MaxRequestsPerChild 4000
</IfModule>
# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule worker.c>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#Listen 12.34.56.78:80
Listen 80
# Dynamic Shared Object (DSO) Support
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available before they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
# Example:
# LoadModule foo_module modules/mod_foo.so
LoadModule access_module modules/mod_access.so
LoadModule auth_module modules/mod_auth.so
LoadModule auth_anon_module modules/mod_auth_anon.so
LoadModule auth_dbm_module modules/mod_auth_dbm.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule auth_ldap_module modules/mod_auth_ldap.so
LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule env_module modules/mod_env.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule expires_module modules/mod_expires.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule asis_module modules/mod_asis.so
LoadModule info_module modules/mod_info.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule imap_module modules/mod_imap.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule cache_module modules/mod_cache.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dav_svn_module /usr/lib/httpd/modules/mod_dav_svn.so
LoadModule authz_svn_module /usr/lib/httpd/modules/mod_authz_svn.so
# Load config files from the config directory "/etc/httpd/conf.d".
Include conf.d/*.conf
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#ExtendedStatus On
### Section 2: 'Main' server configuration
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# User/Group: The name (or #number) of the user/group to run httpd as.
# . On SCO (ODT 3) use "User nouser" and "Group nogroup".
# . On HPUX you may not be able to use shared memory as nobody, and the
# suggested workaround is to create a user www and use that user.
# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
# when the value of (unsigned)Group is above 60000;
# don't use Group #-1 on these systems!
User apache
Group apache
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. [email protected]
ServerAdmin [Email]root@localhost[Email]
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
# If this is not set to valid DNS name for your host, server-generated
# redirections will not work. See also the UseCanonicalName directive.
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address anyway, and this will make
# redirections work in a sensible way.
ServerName ext02:80
# UseCanonicalName: Determines how Apache constructs self-referencing
# URLs and the SERVER_NAME and SERVER_PORT variables.
# When set "Off", Apache will use the Hostname and Port supplied
# by the client. When set "On", Apache will use the value of the
# ServerName directive.
UseCanonicalName Off
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot "/var/www/html"
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
# First, we configure the "default" to be a very restrictive set of
# features.
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
# This should be changed to whatever you set DocumentRoot to.
<Directory "/var/www/html">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
# Note that "MultiViews" must be named explicitly --- "Options All"
# doesn't give it to you.
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride None
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
# The path to the end user account 'public_html' directory must be
# accessible to the webserver userid. This usually means that ~userid
# must have permissions of 711, ~userid/public_html must have permissions
# of 755, and documents contained therein must be world-readable.
# Otherwise, the client will only receive a "403 Forbidden" message.
# See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
<IfModule mod_userdir.c>
# UserDir is disabled by default since it can confirm the presence
# of a username on the system (depending on home directory
# permissions).
UserDir disable
# To enable requests to /~user/ to serve the user's public_html
# directory, remove the "UserDir disable" line above, and uncomment
# the following line instead:
#UserDir public_html
</IfModule>
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#<Directory /home/*/public_html>
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
DirectoryIndex index.php index.html index.html.var
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives. See also the AllowOverride
# directive.
AccessFileName .htaccess
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
TypesConfig /etc/mime.types
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
DefaultType text/plain
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
<IfModule mod_mime_magic.c>
# MIMEMagicFile /usr/share/magic.mime
MIMEMagicFile conf/magic
</IfModule>
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
HostnameLookups Off
# EnableMMAP: Control whether memory-mapping is used to deliver
# files (assuming that the underlying OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems. On some systems, turning it off (regardless of
# filesystem) can improve performance; for details, please see
# http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap
#EnableMMAP off
# EnableSendfile: Control whether the sendfile kernel support is
# used to deliver files (assuming that the OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems. Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#enablesendfile
#EnableSendfile off
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you do define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
ErrorLog logs/error_log
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you do
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and not in this file.
#CustomLog logs/access_log common
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#CustomLog logs/referer_log referer
#CustomLog logs/agent_log agent
# For a single logfile with access, agent, and referer information
# (Combined Logfile Format), use the following directive:
CustomLog logs/access_log combined
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (internal error documents, FTP directory
# listings, mod_status and mod_info output etc., but not CGI generated
# documents or custom error documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
ServerSignature On
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
# We include the /icons/ alias for FancyIndexed directory listings. If you
# do not use FancyIndexing, you may comment this out.
Alias /icons/ "/var/www/icons/"
Alias /admin "/home/boss4/web/geoland/admin/"
Alias /bboard "/home/boss4/web/phpBB3/"
<Directory "/var/www/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "/home/boss4/web/geoland/admin">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "/home/boss4/web/phpBB3">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# WebDAV module configuration section.
<IfModule mod_dav_fs.c>
# Location of the WebDAV lock database.
DAVLockDB /var/lib/dav/lockdb
</IfModule>
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/var/www/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Example:
# Redirect permanent /foo http://www.example.com/bar
# Directives controlling the display of server-generated directory listings.
# IndexOptions: Controls the appearance of server-generated directory
# listings.
IndexOptions FancyIndexing VersionSort NameWidth=*
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions. These are only displayed for
# FancyIndexed directories.
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
DefaultIcon /icons/unknown.gif
# AddDescription allows you to place a short description after a file in
# server-generated indexes. These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
# HeaderName is the name of a file which should be prepended to
# directory indexes.
ReadmeName README.html
HeaderName HEADER.html
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing. Shell-style wildcarding is permitted.
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
# DefaultLanguage and AddLanguage allows you to specify the language of
# a document. You can then use content negotiation to give a browser a
# file in a language the user can understand.
# Specify a default language. This means that all data
# going out without a specific language tag (see below) will
# be marked with this one. You probably do NOT want to set
# this unless you are sure it is correct for all cases.
# * It is generally better to not mark a page as
# * being a certain language than marking it with the wrong
# * language!
# DefaultLanguage nl
# Note 1: The suffix does not have to be the same as the language
# keyword --- those with documents in Polish (whose net-standard
# language code is pl) may wish to use "AddLanguage pl .po" to
# avoid the ambiguity with the common suffix for perl scripts.
# Note 2: The example entries below illustrate that in some cases
# the two character 'Language' abbreviation is not identical to
# the two character 'Country' code for its country,
# E.g. 'Danmark/dk' versus 'Danish/da'.
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
# specifier. There is 'work in progress' to fix this and get
# the reference data for rfc1766 cleaned up.
# Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
# English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
# Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
# Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
# Norwegian (no) - Polish (pl) - Portugese (pt)
# Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
# Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
AddLanguage ca .ca
AddLanguage cs .cz .cs
AddLanguage da .dk
AddLanguage de .de
AddLanguage el .el
AddLanguage en .en
AddLanguage eo .eo
AddLanguage es .es
AddLanguage et .et
AddLanguage fr .fr
AddLanguage he .he
AddLanguage hr .hr
AddLanguage it .it
AddLanguage ja .ja
AddLanguage ko .ko
AddLanguage ltz .ltz
AddLanguage nl .nl
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pl .po
AddLanguage pt .pt
AddLanguage pt-BR .pt-br
AddLanguage ru .ru
AddLanguage sv .sv
AddLanguage zh-CN .zh-cn
AddLanguage zh-TW .zh-tw
# LanguagePriority allows you to give precedence to some languages
# in case of a tie during content negotiation.
# Just list the languages in decreasing order of preference. We have
# more or less alphabetized them here. You probably want to change this.
LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
# ForceLanguagePriority allows you to serve a result page rather than
# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
# [in case no accepted languages matched the available variants]
ForceLanguagePriority Prefer Fallback
# Specify a default charset for all pages sent out. This is
# always a good idea and opens the door for future internationalisation
# of your web site, should you ever want it. Specifying it as
# a default does little harm; as the standard dictates that a page
# is in iso-8859-1 (latin1) unless specified otherwise i.e. you
# are merely stating the obvious. There are also some security
# reasons in browsers, related to javascript and URL parsing
# which encourage you to always set a default char set.
AddDefaultCharset UTF-8
# Commonly used filename extensions to character sets. You probably
# want to avoid clashes with the language extensions, unless you
# are good at carefully testing your setup after each change.
# See http://www.iana.org/assignments/character-sets for the
# official list of charset names and their respective RFCs.
AddCharset ISO-8859-1 .iso8859-1 .latin1
AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
AddCharset ISO-8859-3 .iso8859-3 .latin3
AddCharset ISO-8859-4 .iso8859-4 .latin4
AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru
AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb
AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk
AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb
AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk
AddCharset ISO-2022-JP .iso2022-jp .jis
AddCharset ISO-2022-KR .iso2022-kr .kis
AddCharset ISO-2022-CN .iso2022-cn .cis
AddCharset Big5 .Big5 .big5
# For russian, more than one charset is used (depends on client, mostly):
AddCharset WINDOWS-1251 .cp-1251 .win-1251
AddCharset CP866 .cp866
AddCharset KOI8-r .koi8-r .koi8-ru
AddCharset KOI8-ru .koi8-uk .ua
AddCharset ISO-10646-UCS-2 .ucs2
AddCharset ISO-10646-UCS-4 .ucs4
AddCharset UTF-8 .utf8
# The set below does not map to a specific (iso) standard
# but works on a fairly wide range of browsers. Note that
# capitalization actually matters (it should not, but it
# does for some browsers).
# See http://www.iana.org/assignments/character-sets
# for a list of sorts. But browsers support few.
AddCharset GB2312 .gb2312 .gb
AddCharset utf-7 .utf7
AddCharset utf-8 .utf8
AddCharset big5 .big5 .b5
AddCharset EUC-TW .euc-tw
AddCharset EUC-JP .euc-jp
AddCharset EUC-KR .euc-kr
AddCharset shift_jis .sjis
# AddType allows you to add to or override the MIME configuration
# file mime.types for specific file types.
#AddType application/x-tar .tgz
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives have nothing
# to do with the FancyIndexing customization directives above.
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#AddHandler cgi-script .cgi
# For files that include their own HTTP headers:
#AddHandler send-as-is asis
# For server-parsed imagemap files:
AddHandler imap-file map
# For type maps (negotiated resources):
# (This is enabled by default to allow the Apache "It Worked" page
# to be distributed in multiple languages.)
AddHandler type-map var
# Filters allow you to process content before it is sent to the client.
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
# Putting this all together, we can internationalize error responses.
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections. We use
# includes to substitute the appropriate text.
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line:
# Alias /error/include/ "/your/include/path/"

Please note: I AM USING:
JkOptions ForwardKeySize ForwardURICompat -ForwardDirectories
And that's what's supposed to fix this problem in the first place, right??

Similar Messages

  • Cannot stream music via airport express with iOS7

    i just upgrade my ipad and iphone to the iOS7
    i try to stream music with my airport express but when i open the music app in my ipad
    or iphone the icon to send the music does not show.
    any ideas

    Thank you so, so, much - you've made my day!

  • SIGSEGV, JRE : 6.0_22-b04, libc_psr.so.1+0x1040: running Apache Tomcat

    Am encountering the following JVM problem on Solaris running Apache Tomcat with Atlassian Confluence. This problem DOES NOT occur on Windows XP or Windows Vista platforms running the same version of the JDK and same version of Apache Tomcat & Atlassian Confluence.
    Any thoughts on what is causing this?
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xff391040, pid=16575, tid=7
    # JRE version: 6.0_22-b04
    # Java VM: Java HotSpot(TM) Server VM (17.1-b03 mixed mode solaris-sparc )
    # Problematic frame:
    # C [libc_psr.so.1+0x1040] memset+0x140
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x000c6800): JavaThread "CompilerThread0" daemon [_thread_in_native, id=7, stack(0]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x83000000
    Registers:
    O0=0x82c72170 O1=0x00000000 O2=0x7ffffff0 O3=0x00000030
    O4=0x7fc72140 O5=0x83000000 O6=0xab4fdb28 O7=0xfe602bec
    G1=0x00000004 G2=0x000000a0 G3=0x000000a0 G4=0x00e76a68
    G5=0x82c72170 G6=0x00000000 G7=0xfeeb2a00 Y=0x00000000
    PC=0xff391040 nPC=0xff391044
    Top of Stack: (sp=0xab4fdb28)
    0xab4fdb28: 82c72170 00000000 10000000 17fff400
    0xab4fdb38: 00000011 00000000 00000000 80000007
    0xab4fdb48: ab4fef50 00000010 80000000 0c000000
    0xab4fdb58: 0bfff400 42c72170 ab4fdb88 fe4f8128
    0xab4fdb68: 00000002 00000000 00007fff 00000000
    0xab4fdb78: 01cef6a0 0000000c 00915ee8 00000001
    0xab4fdb88: 0000007d 03626a11 fee554b8 00000003
    0xab4fdb98: 42c72170 06c4d421 0c000000 0c000000
    Instructions: (pc=0xff391040)
    0xff391030: 91 a0 00 40 95 a0 00 40 99 a0 00 40 9d a0 00 40
    0xff391040: c1 bb 5e 00 98 a3 20 40 18 4f ff fd 9a 03 60 40
    Stack: [0xab480000,0xab500000], sp=0xab4fdb28, free space=1f6ff391040k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libc_psr.so.1+0x1040] memset+0x140
    V [libjvm.so+0xf8130]
    V [libjvm.so+0xfb60c]
    V [libjvm.so+0x183a44]
    V [libjvm.so+0x1cb89c]
    V [libjvm.so+0x41ba80]
    V [libjvm.so+0x1c5e80]
    V [libjvm.so+0x1c6d0c]
    V [libjvm.so+0x23c5b0]
    V [libjvm.so+0x825c28]
    V [libjvm.so+0x753a08]
    Current CompileTask:
    C2:5692 ! org.apache.velocity.runtime.directive.Foreach.render(Lorg/apache/velocity/context/Inte)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x01875400 JavaThread "http-8080-32" daemon [_thread_blocked, id=80, stack(0xa7380000,0xa7400000)]
    0x0061f400 JavaThread "http-8080-31" daemon [_thread_blocked, id=79, stack(0xa7480000,0xa7500000)]
    0x0061c400 JavaThread "http-8080-30" daemon [_thread_blocked, id=78, stack(0xa7580000,0xa7600000)]
    0x019cf000 JavaThread "http-8080-29" daemon [_thread_blocked, id=77, stack(0xa7680000,0xa7700000)]
    0x0061c000 JavaThread "http-8080-28" daemon [_thread_blocked, id=76, stack(0xa7780000,0xa7800000)]
    0x00683000 JavaThread "http-8080-27" daemon [_thread_blocked, id=75, stack(0xa7880000,0xa7900000)]
    0x01e41000 JavaThread "http-8080-26" daemon [_thread_blocked, id=74, stack(0xa7980000,0xa7a00000)]
    0x019d0400 JavaThread "http-8080-25" daemon [_thread_blocked, id=73, stack(0xa7a80000,0xa7b00000)]
    0x00aec000 JavaThread "http-8080-24" daemon [_thread_blocked, id=72, stack(0xa7b80000,0xa7c00000)]
    0x00727000 JavaThread "http-8080-23" daemon [_thread_blocked, id=71, stack(0xa7c80000,0xa7d00000)]
    0x00756400 JavaThread "http-8080-22" daemon [_thread_blocked, id=70, stack(0xa7d80000,0xa7e00000)]
    0x0129e400 JavaThread "MultiThreadedHttpConnectionManager cleanup" daemon [_thread_blocked, id=69]
    0x002aec00 JavaThread "http-8080-21" daemon [_thread_blocked, id=68, stack(0xa7f80000,0xa8000000)]
    0x017abc00 JavaThread "http-8080-20" daemon [_thread_blocked, id=67, stack(0xa8080000,0xa8100000)]
    0x0146e000 JavaThread "http-8080-19" daemon [_thread_blocked, id=66, stack(0xa8180000,0xa8200000)]
    0x006f1400 JavaThread "http-8080-18" daemon [_thread_blocked, id=65, stack(0xa8280000,0xa8300000)]
    0x006ef400 JavaThread "http-8080-17" daemon [_thread_blocked, id=64, stack(0xa8380000,0xa8400000)]
    0x00a86000 JavaThread "http-8080-16" daemon [_thread_blocked, id=63, stack(0xa8480000,0xa8500000)]
    0x01aaac00 JavaThread "http-8080-15" daemon [_thread_blocked, id=62, stack(0xa8580000,0xa8600000)]
    0x0054b800 JavaThread "DefaultSlideCacheManager:thread-1" [_thread_blocked, id=61, stack(0xa86800]
    0x0009d800 JavaThread "http-8080-14" daemon [_thread_blocked, id=60, stack(0xa8780000,0xa8800000)]
    0x01bc4800 JavaThread "http-8080-13" daemon [_thread_blocked, id=59, stack(0xa8880000,0xa8900000)]
    0x0264f000 JavaThread "http-8080-12" daemon [_thread_blocked, id=58, stack(0xa8980000,0xa8a00000)]
    0x0032b400 JavaThread "http-8080-11" daemon [_thread_blocked, id=57, stack(0xa8a80000,0xa8b00000)]
    0x01aa9400 JavaThread "http-8080-10" daemon [_thread_blocked, id=56, stack(0xa8b80000,0xa8c00000)]
    0x0167b000 JavaThread "http-8080-9" daemon [_thread_blocked, id=55, stack(0xa8c80000,0xa8d00000)]
    0x007aec00 JavaThread "http-8080-8" daemon [_thread_blocked, id=54, stack(0xa8e80000,0xa8f00000)]
    0x01d63400 JavaThread "http-8080-7" daemon [_thread_blocked, id=53, stack(0xa8f80000,0xa9000000)]
    0x007dd400 JavaThread "http-8080-6" daemon [_thread_blocked, id=52, stack(0xa9280000,0xa9300000)]
    0x023b2800 JavaThread "http-8080-5" daemon [_thread_blocked, id=51, stack(0xa9e80000,0xa9f00000)]
    0x0028e800 JavaThread "http-8080-4" daemon [_thread_blocked, id=50, stack(0xa9180000,0xa9200000)]
    0x00e32800 JavaThread "http-8080-3" daemon [_thread_blocked, id=49, stack(0xa9780000,0xa9800000)]
    0x029c0000 JavaThread "http-8080-2" daemon [_thread_blocked, id=48, stack(0xa9080000,0xa9100000)]
    0x0083f800 JavaThread "http-8080-1" daemon [_thread_blocked, id=47, stack(0xa9680000,0xa9700000)]
    0x0143c800 JavaThread "http-8080-Acceptor-0" daemon [_thread_in_native, id=46, stack(0xa9380000,0]
    0x01d86c00 JavaThread "ContainerBackgroundProcessor[StandardEngine[Standalone]]" daemon [_thread_]
    0x01244400 JavaThread "com.google.common.base.internal.Finalizer" daemon [_thread_blocked, id=40,]
    0x01d98400 JavaThread "Timer-2" daemon [_thread_blocked, id=29, stack(0xa9980000,0xa9a00000)]
    0x0019f000 JavaThread "Timer-1" daemon [_thread_blocked, id=28, stack(0xa9a80000,0xa9b00000)]
    0x01762800 JavaThread "FelixPackageAdmin" daemon [_thread_blocked, id=27, stack(0xa9b80000,0xa9c0]
    0x01f2d000 JavaThread "FelixStartLevel" daemon [_thread_blocked, id=26, stack(0xa9c80000,0xa9d000]
    0x01f2d800 JavaThread "FelixDispatchQueue" daemon [_thread_blocked, id=25, stack(0xa9d80000,0xa9e]
    0x01da5800 JavaThread "Timer-0" daemon [_thread_blocked, id=23, stack(0xa9f80000,0xaa000000)]
    0x00ab6c00 JavaThread "DefaultQuartzScheduler_QuartzSchedulerThread" [_thread_blocked, id=22, sta]
    0x01576c00 JavaThread "DefaultQuartzScheduler_Worker-10" [_thread_blocked, id=21, stack(0xaa18000]
    0x01575800 JavaThread "DefaultQuartzScheduler_Worker-9" [_thread_blocked, id=20, stack(0xaa280000]
    0x01a26800 JavaThread "DefaultQuartzScheduler_Worker-8" [_thread_blocked, id=19, stack(0xaa380000]
    0x0042ac00 JavaThread "DefaultQuartzScheduler_Worker-7" [_thread_blocked, id=18, stack(0xaa480000]
    0x00cd3c00 JavaThread "DefaultQuartzScheduler_Worker-6" [_thread_blocked, id=17, stack(0xaa580000]
    0x0030e400 JavaThread "DefaultQuartzScheduler_Worker-5" [_thread_blocked, id=16, stack(0xaa680000]
    0x0096c800 JavaThread "DefaultQuartzScheduler_Worker-4" [_thread_blocked, id=15, stack(0xaa780000]
    0x01d41800 JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_blocked, id=14, stack(0xaa880000]
    0x017e2400 JavaThread "DefaultQuartzScheduler_Worker-2" [_thread_blocked, id=13, stack(0xaa980000]
    0x0139ac00 JavaThread "DefaultQuartzScheduler_Worker-1" [_thread_blocked, id=12, stack(0xaaa80000]
    0x01719400 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=11, stack(0xaab80000,0xaac000]
    0x000d3c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=9, stack(0xab280000,0xab3]
    0x000d1800 JavaThread "CompilerThread1" daemon [_thread_blocked, id=8, stack(0xab380000,0xab40000]
    =>0x000c6800 JavaThread "CompilerThread0" daemon [_thread_in_native, id=7, stack(0xab480000,0xab500]
    0x000c5000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6, stack(0xab580000,0xab600]
    0x000afc00 JavaThread "Finalizer" daemon [_thread_blocked, id=5, stack(0xab680000,0xab700000)]
    0x000ae400 JavaThread "Reference Handler" daemon [_thread_blocked, id=4, stack(0xab780000,0xab800]
    0x00030800 JavaThread "main" [_thread_in_native, id=2, stack(0xfe300000,0xfe380000)]
    Other Threads:
    0x000ab800 VMThread [stack: 0xab880000,0xab900000] [id=3]
    0x000d5c00 WatcherThread [stack: 0xab180000,0xab200000] [id=10]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 314560K, used 250160K [0xabc00000, 0xc1150000, 0xc1150000)
    eden space 279616K, 83% used [0xabc00000, 0xba030b60, 0xbcd10000)
    from space 34944K, 47% used [0xbcd10000, 0xbdd2b760, 0xbef30000)
    to space 34944K, 0% used [0xbef30000, 0xbef30000, 0xc1150000)
    tenured generation total 699072K, used 326662K [0xc1150000, 0xebc00000, 0xebc00000)
    the space 699072K, 46% used [0xc1150000, 0xd5051b68, 0xd5051c00, 0xebc00000)
    compacting perm gen total 95744K, used 95657K [0xebc00000, 0xf1980000, 0xfbc00000)
    the space 95744K, 99% used [0xebc00000, 0xf196a7a8, 0xf196a800, 0xf1980000)
    No shared spaces configured.
    Dynamic libraries:
    0x00010000 /usr/jdk/instances/jdk1.6.0/bin/java
    0xff3a0000 /lib/libthread.so.1
    0xff370000 /usr/jdk/instances/jdk1.6.0/bin/../jre/lib/sparc/jli/libjli.so
    0xff350000 /lib/libdl.so.1
    0xff200000 /lib/libc.so.1
    0xff390000 /platform/SUNW,Sun-Fire-V210/lib/libc_psr.so.1
    0xfe400000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/server/libjvm.so
    0xff1d0000 /lib/libsocket.so.1
    0xff1f0000 /usr/lib/libsched.so.1
    0xff1b0000 /lib/libm.so.1
    0xff180000 /usr/lib/libCrun.so.1
    0xff160000 /lib/libdoor.so.1
    0xff080000 /lib/libnsl.so.1
    0xfef80000 /lib/libm.so.2
    0xff050000 /lib/libscf.so.1
    0xff140000 /lib/libuutil.so.1
    0xff030000 /lib/libgen.so.1
    0xfef50000 /lib/libmd.so.1
    0xfef30000 /platform/SUNW,Sun-Fire-V210/lib/libmd_psr.so.1
    0xfef10000 /lib/libmp.so.2
    0xfe3d0000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libverify.so
    0xfe390000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libjava.so
    0xfe2e0000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/native_threads/libhpi.so
    0xfe290000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libzip.so
    0xfe1e0000 /usr/lib/locale/en_US.ISO8859-1/en_US.ISO8859-1.so.3
    0xfe040000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libmanagement.so
    0xfbfa0000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libnet.so
    0xaaff0000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libj2pkcs11.so
    0xaafb0000 /usr/lib/libpkcs11.so
    0xaaf90000 /usr/lib/libcryptoutil.so.1
    0xaaf30000 /usr/lib/security/pkcs11_softtoken_extra.so
    0xaad80000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libawt.so
    0xaad60000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/headless/libmawt.so
    0xaac80000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libfontmanager.so
    0xaad40000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libnio.so
    0xaad20000 /lib/librt.so.1
    0xaac60000 /lib/libaio.so.1
    0xaac40000 /usr/lib/libsendfile.so.1
    0xa9830000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libjpeg.so
    0xa9740000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libdcpr.so
    0xa9310000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparc/libcmm.so
    VM Arguments:
    jvm_args: -Djava.util.logging.config.file=/apps/atlassian/confluence-3.4-std/conf/logging.propertie
    java_command: org.apache.catalina.startup.Bootstrap start
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/usr/java
    PATH=/apps/oracle/product/11.2.0/bin:/usr/java/bin:/usr/sbin:/usr/local/bin:/usr/bin
    LD_LIBRARY_PATH=/usr/jdk/instances/jdk1.6.0/jre/lib/sparc/server:/usr/jdk/instances/jdk1.6.0/jre/lic
    SHELL=/bin/bash
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x87b414], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x87b414], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x1c4234], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x1c4234], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGXFSZ: [libjvm.so+0x1c4234], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x1c4234], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x75619c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGHUP: [libjvm.so+0x75619c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGTERM: [libjvm.so+0x75619c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x759bc8], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x1c4234], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    --------------- S Y S T E M ---------------
    OS: Oracle Solaris 10 9/10 s10s_u9wos_14a SPARC
    Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
    Assembled 11 August 2010
    uname:SunOS 5.10 Generic_142909-17 sun4u (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 65536, AS infinity
    load average:1.82 1.81 1.30
    CPU:total 1 has_v8, has_v9, has_vis1, has_vis2, is_ultra3
    Memory: 8k page, physical 8388608k(1512208k free)
    vm_info: Java HotSpot(TM) Server VM (17.1-b03) for solaris-sparc JRE (1.6.0_22-b04), built on Sep 18
    time: Mon Nov 15 10:40:11 2010
    elapsed time: 310607 seconds

    If you are using JNI or using a third party library that uses JNi then that would likely be the problem.
    If not then it is a VM bug.

  • Tomcat vs Apache with Tomcat connectors (mod/jk)

    Is there any advantage (security, performance etc.) of running a Java web application on Apache HTTP Server with Tomcat Connectors (mod/jk) rather than directly running it on Tomcat.

    This question is already answered, see here:
    http://tomcat.apache.org/faq/connectors.html
    Also for Tomcat/ Apache related questions, post them to the relevant mailing lists.

  • How to protect an application running on Apache Tomcat app server with OAM 11gR2

    Gurus,
    We have an Apache Tomcat based application named "ABCD" here at client site that we want OAM 11gR2 PS1 to integrate with for SSO purposes. I have successfully configured OHS to reverse proxy requests to Apache Tomcat server whenever somebody tries to access the application URL but still, I am getting the application login page once I have successfully authenticated on OAM SSO login page. The Tomcat based application is authenticating users against a "UserDatabase realm".
    I know in terms of weblogic application, there is an OAM identity asserter provider which then populates the User Principal for the java environment with the authenticated OAM user. But there is no such OAM identity provider for Tomcat.
    So my question is, is there an provider (or Tomcat equivalent) which will entrust authentication to a header, that could be used to populate the Java User Principal from the OAM_REMOTE_USER header? Is the weblogic equivalent of authentication providers present in tomcat as well? Are those called valves?
    Please advise to the earliest.
    Thanks !!

    Aakash,
    I did follow the 4 steps that you mentioned to me. Out of the 4 that you had mentioned, I already had the webgate in place on OHS server and I was already passing the remote_user http header in oam policy as action.
    As part of Step #2: Install mod_jk plugin on OHS server that you mentioned
    1.) I downloaded the tomcat connector - tomcat-connectors-1.2.37-src
    2.) I had to run ./configure,make, make install on my OHS server which runs on RHEL 6. It created the mod_jk.so file. I pasted it in the needed folder.
    3.) I then created the httpd.conf file and workers.properties file as said in the connector docs.
    4.) Restarted OHS.
    As part of Step #3: Configure tomcat's ajp connector that you mentioned and I went through all the links pasted below but didn't find actually what needs to be in place to configure tomcat's ajp connector. I do see in the server.xml of tomcat app server that the ajp 1.3 protocol is supported:
    http://tomcat.apache.org/tomcat-4.0-doc/config/ajp.html
    http://tomcat.apache.org/tomcat-3.3-doc/mod_jk-howto.html#s8
    http://tomcat.apache.org/tomcat-7.0-doc/config/ajp.html
    http://www.mulesoft.com/understanding-tomcat-connectors
    <!-- A "Connector" represents an endpoint by which requests are received
             and responses are returned. Documentation at :
             Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
             Java AJP  Connector: /docs/config/ajp.html
             APR (HTTP/AJP) Connector: /docs/apr.html
             Define a non-SSL HTTP/1.1 Connector on port 8080
        -->
        <Connector port="8080" protocol="HTTP/1.1"
                   connectionTimeout="20000"
                   redirectPort="8443" />
    <!-- Define an AJP 1.3 Connector on port 8009 -->
        <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
    Do we need to disable the HTTP protocol in Tomcat and keep only AJP connector enabled? If yes, how to do that?
    I am trying to connect to the application from OHS server like so I am using the http protocal right? How should I use the ajp protocol to connect to tomcat application? 
    http://ohs-host:ohs-port/abcd
    Thanks !!!!!

  • Help with error (apache tomcat + java )

    hi all ! Im having an issue with my program.
    Im using jasper report to generate some reports from the program... everything seems to work except for this (making the program unstable at some point). When the report is generated and loaded as a pdf I get this error in the log.
    java.lang.IllegalStateException
    at org.apache.coyote.Response.reset(Response.java:296)
    at org.apache.catalina.connector.Response.reset(Response.java:642)
    at org.apache.catalina.connector.Response.reset(Response.java:908)
    at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:355)
    at org.apache.catalina.core.StandardHostValve.throwable(StandardHostValve.java:211)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:134)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:825)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:736)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:526)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:619)
    The code Im using to generate the pdf is this one.
    File file = new File("C:\\Reportes\\", reporte +""+ datNac +".pdf");
    String contentType = getServletContext().getMimeType(reporte+ "" +datNac+ ".pdf");
    System.out.println("antes BufferedOutputStream");
    BufferedOutputStream output = null;
    output = new BufferedOutputStream(response.getOutputStream());
    BufferedInputStream inputFile = null;
    inputFile = new BufferedInputStream(new FileInputStream(file));
    response.reset();
    response.setContentType(contentType);
    response.setContentLength((int) file.length());
    response.setHeader("Content-disposition",
    "attachment; filename=\"" +file.getName()+ "\"");
    System.out.println("BufferedOutputStream");
    byte[] buffer = new byte[10240];
    for (int length; (length = inputFile.read(buffer)) != -1;) {
    output.write(buffer, 0, length);
    inputFile.close();
    output.close();Any help is appreciated.
    Thanks!
    Edited by: juanmanuelsanchez on Aug 4, 2009 11:17 AM
    Edited by: juanmanuelsanchez on Aug 4, 2009 11:18 AM
    Edited by: juanmanuelsanchez on Aug 4, 2009 11:19 AM

    juanmanuelsanchez wrote:
    java.lang.IllegalStateException
    at org.apache.coyote.Response.reset(Response.java:296)The response is already committed and thus cannot be reset anymore.
    output = new BufferedOutputStream(response.getOutputStream());
    response.reset();At least you should obtain the outputstream AFTER the reset. If that doesn't fix, then check everything in the chain before this code.

  • Servlet mapping with Apache + Tomcat

    I'm trying to set up my servlet with apache + Tomcat(3.2.3), and i'm using mod_jk as the Tomcat-Apache plug-in.
    The HelloWorld servlet that comes with the examples app worked fine at: http://localhost/examples/servlet/HelloWorldExample,
    but how do I change the configurations, so that it can be invoked at:
    http://localhost/examples/HelloWorldExample ?
    It appears to me that '/servlet/' is the default prefix for Tomcat's RequestInterceptor, there is no way to get around that.
    Any insights will be greatly appreciated, thanks!
    Elaine

    hi
    Try this:
    add below code in web.xml file in examples/WEB-INF
    F directory
    <servlet-mapping>
    <servlet-name>
    HelloWorldExample
    </servlet-name>
    <url-pattern>
    /HelloWorldExample
    </url-pattern>
    </servlet-mapping>
    Thanks for the reply, the web.xml is already set up this way, in fact, I'm able to invoke the servlet through tomcat(running on port 8080): http://localhost:8080/examples/HelloWorldExample,
    tomcat reads the web.xml without any problems.
    The problem comes from Apache(port 80), http://localhost:80/examples/HelloWorldExample wouldn't work, only http://localhost:80/examples/servlet/HelloWorldExample works.
    It appears to me that when requests are relayed from Apache to tomcat, you need to tell tomcat that you intend to invoke a servlet by prefixing '/servlet/', if you look in the server.xml, it has
    <RequestInterceptor
    className="org.apache.tomcat.request.InvokerInterceptor"
    debug="0" prefix="/servlet/" />
    I've tried to change this to something else, it didn't seem to make any difference.

  • Integrating Tomcat with Apache

    Hi there,
    I'm really stuck here. I'm trying to integrate Apache with Tomcate. Not having much luck. I have a number of things that aren't quite right. For whatever reason the connector (mod_jk2) between Apache and Tomcat isn't doing its thing. First things first however. I'm not so sure about the log from Tomcat:
    17-Jan-2005 3:56:07 PM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 6517 ms
    17-Jan-2005 3:56:08 PM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    17-Jan-2005 3:56:08 PM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.4
    17-Jan-2005 3:56:08 PM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    17-Jan-2005 3:56:14 PM org.apache.catalina.core.ApplicationContext log
    INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]]
    17-Jan-2005 3:56:16 PM org.apache.catalina.core.ApplicationContext log
    INFO: ContextListener: contextInitialized()
    17-Jan-2005 3:56:16 PM org.apache.catalina.core.ApplicationContext log
    INFO: SessionListener: contextInitialized()
    17-Jan-2005 3:56:17 PM org.apache.catalina.core.ApplicationContext log
    INFO: ContextListener: contextInitialized()
    17-Jan-2005 3:56:17 PM org.apache.catalina.core.ApplicationContext log
    INFO: SessionListener: contextInitialized()
    17-Jan-2005 3:56:21 PM org.apache.jk.common.ChannelSocket init
    INFO: JK2: ajp13 listening on /0.0.0.0:8009
    17-Jan-2005 3:56:21 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/632 config=null
    17-Jan-2005 3:56:22 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 14657 ms
    Shouldn't this line: INFO: JK2: ajp13 listening on /0.0.0.0:8009
    read like this: INFO: JK2: ajp13 listening on /127.0.0.1:8009
    or: INFO: JK2: ajp13 listening on /localhost:8009
    If I'm right, then how do I make it listen on the localhost address 127.0.0.1?
    Please help,
    Alan
    My configuration files under tomcat are like so:
    # file://usr/local/tomcat/conf/jk2.properties
    ## THIS FILE MAY BE OVERRIDEN AT RUNTIME. MAKE SURE TOMCAT IS STOPED
    ## WHEN YOU EDIT THE FILE.
    ## COMMENTS WILL BE LOST
    ## DOCUMENTATION OF THE FORMAT IN JkMain javadoc.
    # Set the desired handler list
    # handler.list=apr,request,channelJni
    # Override the default port for the socketChannel
    # channelSocket.port=8019
    # Default:
    # channelUnix.file=${jkHome}/work/jk2.socket
    # Just to check if the the config is working
    # shm.file=${jkHome}/work/jk2.shm
    # In order to enable jni use any channelJni directive
    # channelJni.disabled = 0
    # And one of the following directives:
    # apr.jniModeSo=/opt/apache2/modules/mod_jk2.so
    # If set to inprocess the mod_jk2 will Register natives itself
    # This will enable the starting of the Tomcat from mod_jk2
    # apr.jniModeSo=inprocess
    # Socket Configuration
    channelSocket.port=8009
    channelSocket.address=127.0.0.1
    channelSocket.maxPort=port+10
    # file://usr/local/tomcat/conf/workers.properties
    #------ DEFAULT worket list ------------------------------------------
    # The workers that your plugins should create and work with
    # Add 'inprocess' if you want JNI connector
    worker.list=ajp13
    # , inprocess
    #------ DEFAULT ajp13 WORKER DEFINITION ------------------------------
    # Defining a worker named ajp13 and of type ajp13
    # Note that the name and the type do not have to match.
    worker.ajp13.port=8009
    worker.ajp13.host=127.0.0.1
    worker.ajp13.type=ajp13
    # Specifies the load balance factor when used with
    # a load balancing worker.
    # Note:
    # ----> lbfactor must be > 0
    # ----> Low lbfactor means less work done by the worker.
    worker.ajp13.lbfactor=50
    # Specify the size of the open connection cache.
    worker.ajp13.cachesize=10
    # file://usr/local/tomcat/conf/workers2.properties
    [channel.socket:localhost:8009]
    info=Ajp13 forwarding over socket
    debug=0
    tomcatId=localhost:8009
    ...

    Hi Alan.
    I've discovered the exact same problem.... 0.0.0.0 instead of 127.0.0.1
    You've obviously not had any replys here, but di you end up working it out on your own?

  • Tomcat with Apache

    Hi,
    I have followed the tutorial on this website to configure tomcat to connect with Apache.
    I am on a CENTOS 5 system.
    Apache was already installed and serving three web sites without problems.
    I wanted to add the ability to work with .jsp files and others.
    I loaded Tomcat with incident and it is running.
    I also loaded mod_jk to connect the two as directed by the tutorial.
    However, I cannot access a .jsp file unless I add the port number 8080 in the location bar along with the url.
    Can someone point me to a good guide for getting this up and running? Or maybe provide some insight in what I might be doing wrong.
    Thank You,
    Mike

    On this website? Which tutorial are you talking about? Apache is in no way related to Sun.
    At least you should read the documentation which come along with the Tomcat Connector: [http://tomcat.apache.org/connectors-doc/].

  • BO XI3.1 servicepack 6 with Apache Tomcat 6/7

    We are planning to upgrade BO XI 3.1 sp5 to servicepack 6.
    SAP recommends to upgrade Apache Tomcat 5.5 too (to version 6 or 7)
    Our IT-department wants to know if, when you install SP6, Apache Tomcat 6/7 is also automatically installed (Does AT 6/7 come with SP6) , or is it two separate installations?
    I think it is the last option, am I right?
    Thanks in advance!

    Hi,
    you have to possibilities here:
    1. Install it manual as in SAP Note - 1880756
    2. Install it with the SP06 Update. Here it is only available when using the CLI variant, not the GUI Variant. See SAP Note - 1844998
    If i where you, i would choose the second option.
    Regards
    -Seb.

  • Error : Apache tomcat 5.5 not starting with windows server 2003 32 bits

    I can not start Tomcat 5.5 installed and deployed from the Business Objects BI Edge 3.1.
    BO installs normally, but Tomcat does not start.
    I tried to start tomcat from the control panel -> administrative tools -> services. But also not start.
    You receive the following message: Windows could start in Apache Tomcat 5.5.20 on the local computer.
    The log is:
    06/05/2011 10:22:37 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 10:22:37 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 10:22:37 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 10:28:42 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 10:28:42 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 10:28:42 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 10:30:40 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 10:30:40 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 10:30:40 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 13:43:16 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 13:43:16 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 13:43:16 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 13:43:20 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 13:43:20 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 13:43:20 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 13:53:58 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 13:53:58 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 13:53:58 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 14:00:16 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 14:00:16 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 14:00:16 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 14:00:45 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 14:00:45 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 14:00:45 http://prunsrv.c 1179 error ServiceStart returned 2
    Help me, what should I do?

    hi
    By default the BO install tomcat with:
    Initial memory pool: 0 and
    Maximum memory pool: 1024
    I changed the settings in the Tomcat to:
    Tomcat -> Tomcat configuration -> java>
    Initial memory pool: 128 and
    Maximum memory pool: 256
    Then I accessed services.msc and start the Apache Tomcat.

  • Why integrate Tomcat with Apache?

    What's the reason to integrate Tomcat with Apache? What are the benefits?

    Apache is way faster and more scaleable than Tomcat.
    So if your website provides also static content (pages, pictures) etc this would be the reason.
    Additionally if you have other technology to include, that Tomcat cannot handle (PHP for example) you would do this with Apache, too.

  • Help Apache Tomcat integrate with Active Directory

    Hello ,
    I am trying to authenticate users in Apache Tomcat 5.5 from active
    directory with no such luck.
    The way my users are structured in AD is there's a department root OU
    and then sub OU's for each department . The Groups OU is in its own OU.
    This is the syntax Im using for the server.xml file. I have created
    two groups am and thc and put the neccesary users in the groups.
    <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"
    connectionURL="ldap://dc1:389"
    alternateURL="ldap://fs6:389"
    userRoleName="member"
    userBase="OU=Departments,dc=2krecovery,dc=com"
    userPattern="cn={0},OU=Departments,dc=2krecovery,dc=com"
    UserSubtree="true"
    roleBase="OU=Groups,dc=2krecovery,dc=com"
    roleName="cn"
    roleSearch="(member={0})"
    roleSubtree="false"
    userSubtree="true"
    />
    Could someone tell me if this is right? Running a Windows 2000 native
    domain level with 2 windows 2000 dc's and one windows 2003 dc.
    Here's the web.xml
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Tax Housing Compliance</web-resource-name>
    <url-pattern>/thc/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>thc</role-name>
    </auth-constraint>
    </security-constraint>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Asset Management</web-resource-name>
    <url-pattern>/am/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>am</role-name>
    </auth-constraint>
    </security-constraint>

    Pl do not post duplicates - Use Multi Domain to integrate with Active Directory in R12

  • I am working on Security scan(to avoid cross site forgery) with the CSRF approach of tomcat(apache-tomcat-6.0.32) but I am getting following issue with firefox:

    I am working on Security scan(to avoid cross site forgery) with the CSRF approach of tomcat(apache-tomcat-6.0.32) but I am getting following issue with firefox:
    1. Firefox is not supporting CSRF provided by tomcat in a proper way firefox creating multiple sessions.
    2. Whenever any exception (like JSP exception) comes on page. Firefox redirects it to CSRFPreventionFilter and this filter creates new session.
    3. Sometimes while traversing through application also CSRFPreventionFilter filter creates new session.

    I seem to have fixed it by putting <div  class="clearfloat"></div> after the navigation bar?

  • Need help compiling an EJB with Apache Tomcat 5.5

    Hi everyone, I need some help. I�m writing an EJB that has to run on Apache Tomcat 5.5.
    I�m importing the javax.ejb.* library, but Eclipse can�t find the JAR it needs. Where can I find this JAR? Do I have to download or what?
    Thanks a lot.

    Thanks, I�ve already downloaded the javaee.jar from the Sun webpage. As you can see I�m quite new to EJB developing. I want to create an EJB that will get some information from a database and send it back to a servlet, and then a web page. I've been browsing the JBoss page, and I see there are LOTS of versions. Any suggestion, regarding which version I shoud use for this? Thanks a lot again.

Maybe you are looking for

  • Not using Index when SDO_RELATE in Spatial Query is used in LEFT OUTER JOIN

    I want to know for every City (Point geometry) in which Municipality (Polygon geometry) it is. Some cities will not be covered by any municipality (as there is no data for it), so its municipality name should be blank in the result We have 4942 citie

  • MY BUILT IN CAMERA DOESN'T WORK

    my built in camera doesn't work, any advise?

  • Perl BerkeleyDB + UTF8

    Hi, I'am facing a problem with storing UTF8 keys via Perl's BerkeleyDB. On the command line the code works as expected: $ perl -Mstrict -Mutf8 -MBerkeleyDB -MEncode -MData::Dumper -le '   unlink "xx.db";   tie my %h, "BerkeleyDB::Btree", -Filename=>"

  • Drop down not working.. Module pool

    Hello, a simple one but irritating why it is not working please can any one help me..Drop down or f4 nothing is working.. TYPES : BEGIN OF TY_Tab,         TYP(8) TYPE C,        END OF TY_TRD. *DATA : T_Tab TYPE TABLE OF TY_Tab, *       W_Tab TYPE TY_

  • How to display html document in browser?

    Hi, I want to display an html document in my directory using nescape. How can I do that? I know that AppletContext can display html, but it has to be in URL. How about a document in my directory? Help please.