Maybe I am misunderstanding what you want to do, but, If you just want to
deploy the Hello World example, you should make a new webapp, say testurl.

inside of testurl, put the HelloWorld.html file, and also, a WEB-INF
directory, inside of which you will need a classes folder, where you will
put the class file(s) for HelloWorld.

your directory structure should be something like

/var/tomcat4/webapps/testurl
                                HelloWorld.html
                                WEB-INF    (directory)

/var/tomcat4/webapps/testurl/WEB-INF
                                        classes    (directory)
/var/tomcat4/webapps/testurl/WEB-INF/classes
                                                HelloWorldExample.class


which you should then be able to deploy in apache with 

WebAppDeploy /testurl conn /testurl

You only specify the path to the webapp, as the directory that contains the
WEB-INF directory, and the other parts of your webapp.


(after you deploy it in tomcat of course, with something like
  <Context path="/testurl" docBase="testurl" 
         debug="0" privileged="true"/>
)


You were trying to deploy helloworld as its own webapp, but it isn't one the
way it is currently.  It is a part of the example webapp.  So you cannont
simply put your webapp path as 
WebAppDeploy /test/WEB-INF/HelloWorldExample conn /testurl

and have it work. 

I didn't test any of this, and there may be a typo/mistake or two, but, it
should get you closer to what you want to do.

Dan
 


--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to