Re: is it possible more than 1 tomcat in single system?

2008-07-14 Thread Vinay Chilakamarri
I guess you are trying to host different resources on different ports. Running multiple Tomcat instances will just occupy unnecessary resources. You could configure Virtual Hosts( http://wiki.apache.org/tomcat/CreateVirtualHosts) and accomplish the same thing that you are doing right now. When you

Re: Tomcat and SOAP

2008-07-10 Thread Vinay Chilakamarri
Hi, SOAP is just a protocol. I am assuming that you needed webservices on Tomcat. Your bets would be on Apache Axis, Active MQ. You can get tons of tutorials on how to deploy them on Tomcat. Once you get Axis, all you need to do is put the axis directory in webapps. Thats all you need to do On Th

Mapping a file to a URL pattern on Tomcat?

2008-06-20 Thread Vinay Chilakamarri
Hi, > > I want to send a response(which is basically a file on the disk) to a > specific URL pattern. While I know that we could do this using directives in > Apache HTTPD, I am not sure how to do this on Tomcat. I could see that we > can map Servlets to a URL pattern. Is there a way that we can ma

Re: Questions related to configuring a REST API on Apache

2008-06-19 Thread Vinay Chilakamarri
]> wrote: > > From: Vinay Chilakamarri [mailto:[EMAIL PROTECTED] > > Subject: Re: Questions related to configuring a REST API on Apache > > > > Do you see any drawbacks in this approach? > > How will a client know which port to choose? > > > if I go the virtu

Re: Questions related to configuring a REST API on Apache

2008-06-19 Thread Vinay Chilakamarri
om with in the local machine, since I will be sending this configured package around for testing their applications) Thanks On Thu, Jun 19, 2008 at 10:13 AM, Caldarale, Charles R < [EMAIL PROTECTED]> wrote: > > From: Vinay Chilakamarri [mailto:[EMAIL PROTECTED] > > Subje

Re: Questions related to configuring a REST API on Apache

2008-06-19 Thread Vinay Chilakamarri
Is there a way to setup virtual hosts on Tomcat alone with out having to connect to Apache Httpd for that?<http://mail-archives.apache.org/mod_mbox/tomcat-dev/200103.mbox/[EMAIL PROTECTED]> On Wed, Jun 18, 2008 at 2:32 PM, Vinay Chilakamarri < [EMAIL PROTECTED]> wrote: > I am us

Re: Questions related to configuring a REST API on Apache

2008-06-18 Thread Vinay Chilakamarri
dealt with deploying web services using Axis on Tomcat in the past. On Wed, Jun 18, 2008 at 2:17 PM, Christopher Schultz < [EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Vinay, > > Vinay Chilakamarri wrote: > | I mixed up the stuff a little

Re: Questions related to configuring a REST API on Apache

2008-06-18 Thread Vinay Chilakamarri
hultz < [EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Vinay, > > Vinay Chilakamarri wrote: > | While I got this to working, I now want to configure each of these > | hosts to serve a REST API. > > How does your REST API differ from your

Questions related to configuring a REST API on Apache

2008-06-18 Thread Vinay Chilakamarri
Hi, I am trying to simulate 20 servers (our applications) which offer a web API to communicate with a Global application. To do this, I thought of running 20 virtual hosts on Apache and somehow configure it to process the GET, PUT, POSTS requests that the Global application sends.I am running each