| From | Sent On | Attachments |
|---|---|---|
| glas...@javadesktop.org | Jun 30, 2008 12:02 pm | |
| Wolfram Rittmeyer | Jun 30, 2008 1:54 pm | |
| glas...@javadesktop.org | Jun 30, 2008 2:24 pm | |
| glas...@javadesktop.org | Jul 1, 2008 12:38 am | |
| glas...@javadesktop.org | Jul 1, 2008 1:51 am | |
| Wolfram Rittmeyer | Jul 2, 2008 2:37 pm | |
| glas...@javadesktop.org | Jul 4, 2008 3:27 am | |
| Wolfram Rittmeyer | Jul 4, 2008 2:41 pm | |
| glas...@javadesktop.org | Jul 4, 2008 3:06 pm | |
| glas...@javadesktop.org | Jul 7, 2008 1:29 am | |
| Scott Oaks | Jul 7, 2008 6:58 am | |
| glas...@javadesktop.org | Jul 7, 2008 10:00 am | |
| glas...@javadesktop.org | Jul 7, 2008 1:48 pm | |
| glas...@javadesktop.org | Jul 8, 2008 2:13 am | |
| glas...@javadesktop.org | Jul 8, 2008 2:28 am | |
| glas...@javadesktop.org | Jul 8, 2008 3:53 am | |
| Jan....@Sun.COM | Jul 8, 2008 6:42 pm | |
| glas...@javadesktop.org | Jul 9, 2008 12:54 am | |
| glas...@javadesktop.org | Jul 10, 2008 3:48 am | |
| glas...@javadesktop.org | Jul 12, 2008 5:35 am | |
| glas...@javadesktop.org | Jul 13, 2008 11:22 am | |
| glas...@javadesktop.org | Jul 14, 2008 8:12 am | |
| Wolfram Rittmeyer | Jul 14, 2008 12:22 pm | |
| Wolfram Rittmeyer | Jul 14, 2008 12:33 pm |
| Subject: | Re: Problems with listeners, hosts and multihoming | |
|---|---|---|
| From: | Wolfram Rittmeyer (w.ri...@jsptutorial.org) | |
| Date: | Jul 4, 2008 2:41:09 pm | |
| List: | net.java.dev.glassfish.users | |
glas...@javadesktop.org wrote: (...)
Back to what you have asked for. This are the domain.xml entries:
<web-module availability-enabled="false" context-root="/V31"
directory-deployed="true" enabled="true"
location="/home/aperez/NetBeansProjects/V31/build/web" name="V31"
object-type="user"/>
<web-module availability-enabled="false" context-root="/V32"
directory-deployed="true" enabled="true"
location="/home/aperez/NetBeansProjects/V32/build/web" name="V32"
object-type="user"/>
<web-module availability-enabled="false" context-root="/V33"
directory-deployed="true" enabled="true"
location="/home/aperez/NetBeansProjects/V33/build/web" name="V33"
object-type="user"/>
<application-ref disable-timeout-in-minutes="30" enabled="true"
lb-enabled="false" ref="V31"/>
<application-ref disable-timeout-in-minutes="30" enabled="true"
lb-enabled="false" ref="V32"/>
<application-ref disable-timeout-in-minutes="30" enabled="true"
lb-enabled="false" ref="V33"/>
This exactly is the problem. The last three lines should be
<application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="V31" virtual-servers="S31"/> <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="V32" virtual-servers="S32"/> <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="V33" virtual-servers="S33"/>
You should also use >>context-root="/"<< for your web-modules so that the respective apps get served when entering http://lvos1.ips etc.
As you have written your current configuration is the reason for your web-apps being deployed to all virtual-servers and not being served when entering any URL without a context-path.
Please let us know whether this solved your problem.
-- Wolfram Rittmeyer





