- Timestamp:
- Jan 24, 2012 4:55:15 PM (13 years ago)
- Branches:
- compt_changes, master
- Children:
- 6a50b78
- Parents:
- 94a6661
- Location:
- axis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
axis/Create.java
r94a6661 re8979e2 94 94 String certFile = "./emulab.pem"; 95 95 String urlString = "https://users.isi.deterlab.net:23235"; 96 String project = null; 97 String masterTB = "deter"; 96 98 97 99 if (args.length > 0) exptName = args[0]; … … 99 101 if (args.length > 2) certFile = args[2]; 100 102 if (args.length > 3) urlString = args[3]; 103 if (args.length > 4) project = args[4]; 104 if (args.length > 5) masterTB = args[5]; 101 105 102 106 /* … … 156 160 new ExperimentLabels(newResp.getExperimentID()); 157 161 162 CreateServiceInfoType[] createService = null; 163 if (project != null) { 164 // If a project is requested, make a create service request to get 165 // that project. 166 createService = new CreateServiceInfoType[] { 167 new CreateServiceInfoType(null, "project_export", 168 new String[] { masterTB }, null, true, 169 new FedAttrType[] { 170 new FedAttrType("project", project) }) 171 }; 172 } 173 158 174 CreateRequestType createReq = new CreateRequestType(null, 159 175 new ExperimentDescriptionType(nsContents, topo), 160 null,176 createService, 161 177 new IDType(null, null, null, newLabels.getLocalname(), null), 162 178 null); -
axis/build.xml
r94a6661 re8979e2 33 33 <property name="experiment.name" value="${user.name}-test"/> 34 34 <property name="fedd.url" value="https://users.isi.deterlab.net:23235"/> 35 <property name="fedd.project" value="DeterTest"/> 35 36 36 37 <path id="compile.classpath"> … … 243 244 <arg file="${fedid.pem}"/> 244 245 <arg value="${fedd.url}"/> 246 <arg value="${fedd.project}"/> 245 247 </java> 246 248 </target>
Note: See TracChangeset
for help on using the changeset viewer.