Asking again: Final questions: Default pages

2005-09-12 Thread David Thielen

Hi;

I have multiple domains on my website (IIS). I would like to do the
following.

When a user goes to http://www.windward.net/cart.jsp or
http://www.windwardreports.com/cart.jsp that it then loads the jsp page in
the root of a specific webapp of mine.

In other words, all requests for a .jsp (or .faces) page is mapped to the
same servlet regardless of the domain. And that the servlet name is not
needed as part of the url.

How can I do this?

Thanks - dave


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



RE: Asking again: Final questions: Default pages

2005-09-12 Thread Allistair Crossley
Hi,

Just don't bother putting the domain in the mapping from IIS to Tomcat, e.g

/*.jsp=ajp13

would capture both domain requests and forward to Tomcat.

Allistair.

 -Original Message-
 From: David Thielen [mailto:[EMAIL PROTECTED]
 Sent: 12 September 2005 17:03
 To: 'Tomcat Users List'
 Subject: Asking again: Final questions: Default pages
 
 
 
 Hi;
 
 I have multiple domains on my website (IIS). I would like to do the
 following.
 
 When a user goes to http://www.windward.net/cart.jsp or
 http://www.windwardreports.com/cart.jsp that it then loads 
 the jsp page in
 the root of a specific webapp of mine.
 
 In other words, all requests for a .jsp (or .faces) page is 
 mapped to the
 same servlet regardless of the domain. And that the servlet 
 name is not
 needed as part of the url.
 
 How can I do this?
 
 Thanks - dave
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE 
---
QAS Ltd.
Registered in England: No 2582055
Registered in Australia: No 082 851 474
---
/FONT FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLACK 
Disclaimer:  The information contained within this e-mail is confidential and 
may be privileged. This email is intended solely for the named recipient only; 
if you are not authorised you must not disclose, copy, distribute, or retain 
this message or any part of it. If you have received this message in error 
please contact the sender at once so that we may take the appropriate action 
and avoid troubling you further.  Any views expressed in this message are those 
of the individual sender.  QAS Limited has the right lawfully to record, 
monitor and inspect messages between its employees and any third party.  Your 
messages shall be subject to such lawful supervision as QAS Limited deems to be 
necessary in order to protect its information, its interests and its 
reputation.  

Whilst all efforts are made to safeguard Inbound and Outbound emails, QAS 
Limited cannot guarantee that attachments are virus free or compatible with 
your systems and does not accept any liability in respect of viruses or 
computer problems experienced.
/FONT


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



RE: Asking again: Final questions: Default pages

2005-09-12 Thread David Thielen
Hi;

What I am trying to do is beable to have a url of www.windward.net/cart.jsp
instead of www.windward.net/stroe/cart.jsp. Is there any way to get the
servlet name out of the url for the default servlet?

Thanks - dave


-Original Message-
From: Allistair Crossley [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 12, 2005 10:07 AM
To: Tomcat Users List
Subject: RE: Asking again: Final questions: Default pages

Hi,

Just don't bother putting the domain in the mapping from IIS to Tomcat, e.g

/*.jsp=ajp13

would capture both domain requests and forward to Tomcat.

Allistair.

 -Original Message-
 From: David Thielen [mailto:[EMAIL PROTECTED]
 Sent: 12 September 2005 17:03
 To: 'Tomcat Users List'
 Subject: Asking again: Final questions: Default pages
 
 
 
 Hi;
 
 I have multiple domains on my website (IIS). I would like to do the
 following.
 
 When a user goes to http://www.windward.net/cart.jsp or
 http://www.windwardreports.com/cart.jsp that it then loads 
 the jsp page in
 the root of a specific webapp of mine.
 
 In other words, all requests for a .jsp (or .faces) page is 
 mapped to the
 same servlet regardless of the domain. And that the servlet 
 name is not
 needed as part of the url.
 
 How can I do this?
 
 Thanks - dave
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE 
---
QAS Ltd.
Registered in England: No 2582055
Registered in Australia: No 082 851 474
---
/FONT FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLACK 
Disclaimer:  The information contained within this e-mail is confidential
and may be privileged. This email is intended solely for the named recipient
only; if you are not authorised you must not disclose, copy, distribute, or
retain this message or any part of it. If you have received this message in
error please contact the sender at once so that we may take the appropriate
action and avoid troubling you further.  Any views expressed in this message
are those of the individual sender.  QAS Limited has the right lawfully to
record, monitor and inspect messages between its employees and any third
party.  Your messages shall be subject to such lawful supervision as QAS
Limited deems to be necessary in order to protect its information, its
interests and its reputation.  

Whilst all efforts are made to safeguard Inbound and Outbound emails, QAS
Limited cannot guarantee that attachments are virus free or compatible with
your systems and does not accept any liability in respect of viruses or
computer problems experienced.
/FONT


-
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: Asking again: Final questions: Default pages

2005-09-12 Thread Allistair Crossley
Hi,

The part you are terming the servlet name is actually the web application name. 
As far as I am aware the only way to do what you need is

- Run the store web application as ROOT
- Implement a URL rewriting system

Allistair.

 -Original Message-
 From: David Thielen [mailto:[EMAIL PROTECTED]
 Sent: 12 September 2005 17:21
 To: 'Tomcat Users List'
 Subject: RE: Asking again: Final questions: Default pages
 
 
 Hi;
 
 What I am trying to do is beable to have a url of 
 www.windward.net/cart.jsp
 instead of www.windward.net/stroe/cart.jsp. Is there any way 
 to get the
 servlet name out of the url for the default servlet?
 
 Thanks - dave
 
 
 -Original Message-
 From: Allistair Crossley [mailto:[EMAIL PROTECTED] 
 Sent: Monday, September 12, 2005 10:07 AM
 To: Tomcat Users List
 Subject: RE: Asking again: Final questions: Default pages
 
 Hi,
 
 Just don't bother putting the domain in the mapping from IIS 
 to Tomcat, e.g
 
 /*.jsp=ajp13
 
 would capture both domain requests and forward to Tomcat.
 
 Allistair.
 
  -Original Message-
  From: David Thielen [mailto:[EMAIL PROTECTED]
  Sent: 12 September 2005 17:03
  To: 'Tomcat Users List'
  Subject: Asking again: Final questions: Default pages
  
  
  
  Hi;
  
  I have multiple domains on my website (IIS). I would like to do the
  following.
  
  When a user goes to http://www.windward.net/cart.jsp or
  http://www.windwardreports.com/cart.jsp that it then loads 
  the jsp page in
  the root of a specific webapp of mine.
  
  In other words, all requests for a .jsp (or .faces) page is 
  mapped to the
  same servlet regardless of the domain. And that the servlet 
  name is not
  needed as part of the url.
  
  How can I do this?
  
  Thanks - dave
  
  
  
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
 FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE 
 ---
 QAS Ltd.
 Registered in England: No 2582055
 Registered in Australia: No 082 851 474
 ---
 /FONT FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLACK 
 Disclaimer:  The information contained within this e-mail is 
 confidential
 and may be privileged. This email is intended solely for the 
 named recipient
 only; if you are not authorised you must not disclose, copy, 
 distribute, or
 retain this message or any part of it. If you have received 
 this message in
 error please contact the sender at once so that we may take 
 the appropriate
 action and avoid troubling you further.  Any views expressed 
 in this message
 are those of the individual sender.  QAS Limited has the 
 right lawfully to
 record, monitor and inspect messages between its employees 
 and any third
 party.  Your messages shall be subject to such lawful 
 supervision as QAS
 Limited deems to be necessary in order to protect its information, its
 interests and its reputation.  
 
 Whilst all efforts are made to safeguard Inbound and Outbound 
 emails, QAS
 Limited cannot guarantee that attachments are virus free or 
 compatible with
 your systems and does not accept any liability in respect of 
 viruses or
 computer problems experienced.
 /FONT
 
 
 -
 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: Final questions: Default pages

2005-09-11 Thread Bill Barker

David Thielen [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 Hi;



 I have multiple domains on my website (IIS). I would like to do the
 following.



 When a user goes to http://www.windward.net/cart.jsp or
 http://www.windwardreports.com/cart.jsp that it then loads the jsp page in
 the root of a specific webapp of mine.



 In other words, all requests for a .jsp (or .faces) page is mapped to the
 same servlet regardless of the domain. And that the servlet name is not
 needed as part of the url.



 How can I do this?


Simplest is to Alias one or the other to your real VHost.  With TC 5.5.10+ 
you can also use useIPVHosts=true on the Connector to use whatever IIS 
sends for SERVER_NAME as the Host name for mapping (really don't know, and 
care even less how this will work :).



 Thanks - dave





 David Thielen

 303-499-2544

 www.windwardreports.com http://www.windwardreports.com/



 




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



RE: Final questions: Default pages

2005-09-11 Thread david
Hello;

I'm sorry but I don't understand your answer.

Thanks - dave


-Original Message-
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker
Sent: Sunday, September 11, 2005 7:48 PM
To: tomcat-user@jakarta.apache.org
Subject: Re: Final questions: Default pages


David Thielen [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 Hi;



 I have multiple domains on my website (IIS). I would like to do the
 following.



 When a user goes to http://www.windward.net/cart.jsp or
 http://www.windwardreports.com/cart.jsp that it then loads the jsp page in
 the root of a specific webapp of mine.



 In other words, all requests for a .jsp (or .faces) page is mapped to the
 same servlet regardless of the domain. And that the servlet name is not
 needed as part of the url.



 How can I do this?


Simplest is to Alias one or the other to your real VHost.  With TC 5.5.10+

you can also use useIPVHosts=true on the Connector to use whatever IIS 
sends for SERVER_NAME as the Host name for mapping (really don't know, and

care even less how this will work :).



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



Final questions: Default pages

2005-09-09 Thread David Thielen
Hi;

 

I have multiple domains on my website (IIS). I would like to do the
following.

 

When a user goes to http://www.windward.net/cart.jsp or
http://www.windwardreports.com/cart.jsp that it then loads the jsp page in
the root of a specific webapp of mine.

 

In other words, all requests for a .jsp (or .faces) page is mapped to the
same servlet regardless of the domain. And that the servlet name is not
needed as part of the url.

 

How can I do this?

 

Thanks - dave

 

 

David Thielen

303-499-2544

www.windwardreports.com http://www.windwardreports.com/