Changeset 72176de2
- Timestamp:
- Apr 13, 2011 10:12:15 AM (14 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master
- Children:
- 31aa1ee
- Parents:
- a218fe2
- Location:
- axis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
axis/Terminate.java
ra218fe2 r72176de2 15 15 java.rmi.RemoteException { 16 16 17 boolean force = args.length > 1; 18 17 19 // Get the port and construct the (simple) request. 18 20 FeddPortType port = getPort("https://users.isi.deterlab.net:23235"); 19 21 TerminateRequestType req = new TerminateRequestType( 20 22 new IDType(null, null, null, args[0], null), 21 f alse);23 force); 22 24 TerminateResponseType resp = null; 23 25 -
axis/build.xml
ra218fe2 r72176de2 254 254 </target> 255 255 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 256 267 <target name="parse" depends="compile,jar,keys"> 257 268 <java classname="ParseTopdl" fork="true" >
Note: See TracChangeset
for help on using the changeset viewer.