Changeset 72176de2


Ignore:
Timestamp:
Apr 13, 2011 10:12:15 AM (13 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master
Children:
31aa1ee
Parents:
a218fe2
Message:

Allow commits with force.

Location:
axis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • axis/Terminate.java

    ra218fe2 r72176de2  
    1515            java.rmi.RemoteException {
    1616
     17        boolean force = args.length > 1;
     18
    1719        // Get the port and construct the (simple) request.
    1820        FeddPortType port = getPort("https://users.isi.deterlab.net:23235");
    1921        TerminateRequestType req = new TerminateRequestType(
    2022                new IDType(null, null, null, args[0], null),
    21                 false);
     23                force);
    2224        TerminateResponseType resp = null;
    2325
  • axis/build.xml

    ra218fe2 r72176de2  
    254254  </target>
    255255
     256  <target name="terminate-force" depends="compile,jar,keys">
     257    <java classname="Terminate" fork="true" >
     258      <classpath>
     259        <path refid="run.classpath"/>
     260        <pathelement path="${classes.dir}"/>
     261      </classpath>
     262      <arg value="${experiment.name}"/>
     263      <arg value="force"/>
     264    </java>
     265  </target>
     266
    256267  <target name="parse" depends="compile,jar,keys">
    257268    <java classname="ParseTopdl" fork="true" >
Note: See TracChangeset for help on using the changeset viewer.