users@jax-rpc.java.net

Re: xrpcc classpaths

From: Mischa <yawningrascal_at_HOTMAIL.COM>
Date: Mon, 27 May 2002 14:32:37 -0600

Ok, but I want to use xrpcc in an ant task.
So what happens in this special case:

<target name="xrpcc-server" depends="compile-server"
      description="Runs the xrpcc tool for the server">
      <echo message="Running xrpcc for the server:"/>
      <exec executable="${xrpcc}">
         <arg line="-classpath ${shareddir}" />
         <arg line="-server" />
         <arg line="-d ${serverdir}" />
         <arg line="config.xml" />
      </exec>
  </target>

Now I can't use quotes anymore - or is there any ant-quotes-escapesequence ?
Regards, Mischa

On Mon, 27 May 2002 13:11:07 -0700, Doug Kohlert <doug.kohlert_at_SUN.COM> wrote:

>You can include multiple classpaths on Windows by enclosing the
>classpath in "s. For example,
>xrpcc -both -classpath "\path1;path2;jar1.jar" ....
>