Re: How to deploy web application to one port

2008-12-17 Thread Russell E Glaue
g this , the HellowWorld is not available on >>>> either >>>> port when accessed as : >>>> >>>> >>>> >>>> So, how do I deploy a web application so that it is available on one >>>> port, >>>> but >>>> not another port, yet both ports running under one geronimo instance? >>>> >>>> I want to deploy two web applications, each one accessible on a >>>> different >>>> port. >>>> If I do something like: >>>> % deploy.sh deploy HelloWorld_1.war >>>> % deploy.sh deploy HelloWorld_2.war >>>> >>>> I want the results to be like: >>>> 1) http://0.0.0.0:2150/hello_1 - SUCCESS!!! >>>> 2) http://0.0.0.0:2150/hello_2 - Fail >>>> 3) http://0.0.0.0:2151/hello_1 - Fail >>>> 4) http://0.0.0.0:2151/hello_2 - SUCCESS!!! >>>> >>>> >>>> How do I do this? >>>> >>>> -RG >>>> >>>> >>>> >>> -- >>> View this message in context: >>> http://www.nabble.com/How-to-deploy-web-application-to-one-port-tp20843348s134p20848710.html >>> >>> Sent from the Apache Geronimo - Users mailing list archive at Nabble.com. >>> >

Re: How to deploy web application to one port

2008-12-05 Thread Russell E Glaue
t; So, how do I deploy a web application so that it is available on one >>> port, >>> but >>> not another port, yet both ports running under one geronimo instance? >>> >>> I want to deploy two web applications, each one accessible on a >>> different

Re: How to deploy web application to one port

2008-12-04 Thread David Jencks
51/hello_1 - Fail 4) http://0.0.0.0:2151/hello_2 - SUCCESS!!! How do I do this? -RG -- View this message in context: http://www.nabble.com/How-to-deploy-web-application-to-one-port-tp20843348s134p20848710.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

Re: How to deploy web application to one port

2008-12-04 Thread viola.lu
to be like: > 1) http://0.0.0.0:2150/hello_1 - SUCCESS!!! > 2) http://0.0.0.0:2150/hello_2 - Fail > 3) http://0.0.0.0:2151/hello_1 - Fail > 4) http://0.0.0.0:2151/hello_2 - SUCCESS!!! > > > How do I do this? > > -RG > > > -- View this message in context: http://www.nabble.com/How-to-deploy-web-application-to-one-port-tp20843348s134p20848710.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

How to deploy web application to one port

2008-12-04 Thread Russell E Glaue
Using geronimo-jetty 2.1.3 How do I deploy a web application to one and only one single port? Let's say I have configured two Listen Sockets: 1) 0.0.0.0:2150 2) 0.0.0.0:2151 If I simply deploy a web application to Geronimo as in: % deploy.sh deploy HelloWorld.war The sample application HellowWo