Changeset 96 for gssim_ui/branches/vine/gssimstudio/src/web
- Timestamp:
- 01/20/12 12:10:45 (13 years ago)
- Location:
- gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/app/gssim/gssimstudio/editor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/app/gssim/gssimstudio/editor/GSSimStudio.mxml
r67 r96 24 24 <charts:ResourceChartModel id="experimentModel" /> 25 25 26 <fx:XML id="xml ">26 <fx:XML id="xml2"> 27 27 <grmsJob appId="gssim"> 28 28 <task persistent="true" taskId="gssim"> … … 55 55 </grmsJob> 56 56 </fx:XML> 57 58 <fx:XML id="xml"> 59 <qcgJob appId="sleeps_example" commitWait="false"> 60 <task persistent="true" taskId="sleep" crucial="true"> 61 <execution type="single"> 62 <executable> 63 <execFile> 64 <file> 65 <location type="URL">/bin/sleep</location> 66 </file> 67 </execFile> 68 </executable> 69 <arguments> 70 <value>60</value> 71 </arguments> 72 </execution> 73 </task> 74 </qcgJob> 75 </fx:XML> 76 57 77 </fx:Declarations> 58 78 -
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/app/gssim/gssimstudio/editor/views/ExperimentEditor.mxml
r89 r96 43 43 44 44 [Bindable] 45 public var showDebug : Boolean = false;45 public var showDebug : Boolean = true; 46 46 47 47 private var isFileTransfering : Boolean = false; … … 96 96 97 97 //prepare grms addresses 98 var serviceDN : String = "/C=PL/O=GRID/O=PSNC/CN=grms/elder3.man.poznan.pl"; 99 var serviceURL : String = "https://elder3.man.poznan.pl:8443/gridge/services/GrmsJobFactory"; 98 //var serviceDN : String = "/C=PL/O=GRID/O=PSNC/CN=grms/elder3.man.poznan.pl"; 99 //var serviceURL : String = "https://elder3.man.poznan.pl:8443/gridge/services/GrmsJobFactory"; 100 101 var serviceDN : String = "/C=PL/O=GRID/O=PSNC/CN=qcg-broker/qcg-broker.man.poznan.pl"; 102 var serviceURL : String = "https://elder12.man.poznan.pl:8443/qcg/services/JobFactory"; 100 103 101 104 parentApplication.service.uploadAndSubmitExperiment … … 201 204 private function submit() : void 202 205 { 203 var serviceDN : String = "/C=PL/O=GRID/O=PSNC/CN=grms/elder3.man.poznan.pl"; 204 var serviceURL : String = "https://elder3.man.poznan.pl:8443/gridge/services/GrmsJobFactory"; 206 //var serviceDN : String = "/C=PL/O=GRID/O=PSNC/CN=grms/elder3.man.poznan.pl"; 207 //var serviceURL : String = "https://elder3.man.poznan.pl:8443/gridge/services/GrmsJobFactory"; 208 var serviceDN : String = "/C=PL/O=GRID/O=PSNC/CN=qcg-broker/qcg-broker.man.poznan.pl"; 209 var serviceURL : String = "https://elder12.man.poznan.pl:8443/qcg/services/JobFactory"; 205 210 parentApplication.service.doSubmitApplication(serviceURL, serviceDN, jobDesc.text); 206 211 } … … 366 371 </mx:VBox> 367 372 <mx:TextArea id="propertiesFile" width="400" height="300" y="170" /> 373 <mx:Button label="submit job" click="submit()"/> 368 374 </mx:HBox> 369 375 </mx:VBox>
Note: See TracChangeset
for help on using the changeset viewer.