[jboss-user] [JBoss Messaging] - you may wish to fix the build.xml file for examples/http

geeky2 do-not-reply at jboss.com
Thu Aug 9 15:20:11 EDT 2007


hello tim,

you may wish to fix the build.xml file for the /examples/http

the current build.xml has:


  |    <target name="deploy">
  |       <copy file="../../../src/etc/remoting/remoting-http-service.xml"
  |             todir="${jboss.home}/server/${jboss.configuration}/deploy"/>
  |       <copy file="./etc/messaging-http-service.xml"
  |             todir="${jboss.home}/server/${jboss.configuration}/deploy"/>
  |       <antcall target="sleep"><param name="sleep.interval" value="10"/></antcall>
  |    </target>
  | 



but i believe it may need to be:


  |    <target name="deploy">
  |       <copy file="../../src/etc/remoting/remoting-http-service.xml"
  |             todir="${jboss.home}/server/${jboss.configuration}/deploy"/>
  |       <copy file="./etc/messaging-http-service.xml"
  |             todir="${jboss.home}/server/${jboss.configuration}/deploy"/>
  |       <antcall target="sleep"><param name="sleep.interval" value="10"/></antcall>
  |    </target>
  | 

notice that the first copy file has one too many ../ 

this is assuming the following:


  | mark at gecko1:~/jbm/src> find
  | .
  | ./etc
  | ./etc/remoting
  | ./etc/remoting/remoting-http-service.xml
  | ./etc/remoting/remoting-bisocket-service.xml
  | ./etc/remoting/remoting-sslbisocket-service.xml
  | 

and the JBM distro examples are installed at:




  | $JBM/examples/http/
  | 

thx
mark

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072698#4072698

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072698



More information about the jboss-user mailing list