Hi,

for Proximity support please use the Support Forum here:
http://forum.abstracthorizon.org/index.php?c=9

Please, do not pollute the Maven Users list with something that does
not belong there!

Thanx in advance!
~t~

On 10/19/06, Dave Hoffer <[EMAIL PROTECTED]> wrote:
I understand that wagon's ftp protocol does not support directory
copying; it seems this is the cause of my site goal failures.  Since my
clients and server are on Windows it seems my next best option is to use
WebDAV protocol.  My understanding is that this supports file and
directory copying in maven.

Can anyone explain to me what it takes to enable WebDAV on my Tomcat
server?  I have tried everything I can think of and I cannot connect and
copy files from the client.

I am using Tomcat 5.x where TeamCity is running as the root application
on port 80.  I also have Proximity running as a webapp on this server.
I copied over the Tomcat webdev into the webapps folder.  I then edited
its web.xml file to be:

<servlet>
    <servlet-name>webdav</servlet-name>

<servlet-class>org.apache.catalina.servlets.WebdavServlet</servlet-class
>
    <init-param>
      <param-name>debug</param-name>
      <param-value>1</param-value>
    </init-param>
    <init-param>
      <param-name>listings</param-name>
      <param-value>true</param-value>
    </init-param>
    <init-param>
      <param-name>readonly</param-name>
      <param-value>false</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>

My goal is to allow maven to use webDAV to publish to both the maven
repository at c:\proximity\ and to publish the site goal generated files
such that they can be served by this Tomcat instance.

How can I configure this?

-dh



---------------------------------------------------------------------
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]

Reply via email to