RE: failure notice

2004-02-05 Thread Tim Diez
Yep, I'm seeing these too:

Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]

> -Original Message-
> From: Kannan Sundararajan [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, February 05, 2004 8:34 AM
> To: 'Tomcat Users List'
> Subject: RE: failure notice
> 
> 
> I am getting lot of messages like this. Any one experiencing 
> the same? 
> 
> -Original Message-
> From: 
> [EMAIL PROTECTED]
> .apache.or
> g 
> [mailto:tomcat-user-return-91926-ksundararajan=marketaxess.com
@jakarta.a
pache.org]
Sent: None
Subject: failure notice


X-Auto: [EMAIL PROTECTED]
X-Loop-Detect: 1
To: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N



Hi. This is the qmail-send program at mail18b.gatewayhost.net.

I'm afraid I wasn't able to deliver your message to the addresses.

This is a permanent error; I've given up. Sorry it didn't work out.



 does not like recipient.

Remote host said: ... inactive user

Giving up.



This is not a monitored account and replies to

this account will not be received.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: mod_jk and virtual folders?

2004-02-05 Thread Tim Diez
> On Wed, February 4, 2004 1at 2:02 pm, Tim Diez wrote:
> >
> > I'd like to use apache and mod_jk to dynamically re-route all 
> > subfolders of my httpd web server to a single Tomcat webapp.
> >
> > http://www.myserver.com/ http://www.myserver.com:8080/mywebapp
> >
> > The tricky part for me has been setting this up to be dynamically 
> > routed.  What I'd like to do is have 
> myserver.com/ route to 
> > myserver:8080/mywebapp, so I don't have to create a virtual 
> host for 
> > every potential subfolder on myserver.com:80/
> >
> > So, I need http://www.myserver.com/*/hello.do?param=nada to map to 
> > http://www.myserver.com:8080/mywebapp/hello.do?param=nada
> >
> > I need the url to always keep the original host/folder.  I tried 
> > mod_rewrite, but it changes the URL after the redirection.  
> If I use 
> > mod_jk any folders off of the default port 80 server have 
> to co-exist 
> > as a webapp under tomcat(as far as I know).
> 
> You'll have to use mod_rewrite for this, and you'll have to 
> make sure that you're using internal redirects (or forwards) 
> instead of exernal redirects.  This will require that you 
> have mod_proxy installed as well.
> 
> So something like this may work:
> 
> RewriteEngine on
> RewriteRule ^/(.*)/(.*)$  http://www.myserver.com:8080/$2 [P,L]
> 
> What rewrite config did you try before?
 

I've got mod_proxy and mod_rewrite installed.  I used pretty much the
exact syntax as the above.. In fact, it IS the same syntax ;)  It's
still changing the url for me though, like it's doing a simple forward
instead of a proxy.

That's the big part I'm missing, the ability to keep the URL in the
browser the same. 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



mod_jk and virtual folders?

2004-02-04 Thread Tim Diez
Hello all, 

I've been searching high and low but I can't seem to find out how to do
the following.  I'm a newbie here so please bear with me.

I'd like to use apache and mod_jk to dynamically re-route all subfolders
of my httpd web server to a single Tomcat webapp.

I've got Apache running on port 80 with mod_jk configured to use tomcat
on the same box.  Tomcat is running on port 8080

http://www.myserver.com/
http://www.myserver.com:8080/mywebapp

Folders /foo and /bar don't exist, and I need them to point to
myserver.com:8080/mywebapp.

The tricky part for me has been setting this up to be dynamically
routed.  What I'd like to do is have myserver.com/ route to
myserver:8080/mywebapp, so I don't have to create a virtual host for
every potential subfolder on myserver.com:80/

So, I need http://www.myserver.com/*/hello.do?param=nada to map to
http://www.myserver.com:8080/mywebapp/hello.do?param=nada

I need the url to always keep the original host/folder.  I tried
mod_rewrite, but it changes the URL after the redirection.  If I use
mod_jk any folders off of the default port 80 server have to co-exist as
a webapp under tomcat(as far as I know). 

Can anyone help me out on this? 

Thanks!

T-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]