Ignore:
Timestamp:
01/20/12 12:10:45 (13 years ago)
Author:
mcichenski
Message:

test changes

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  
    2424<charts:ResourceChartModel id="experimentModel" />  
    2525         
    26 <fx:XML id="xml"> 
     26<fx:XML id="xml2"> 
    2727<grmsJob appId="gssim"> 
    2828        <task persistent="true" taskId="gssim"> 
     
    5555</grmsJob> 
    5656</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 
    5777</fx:Declarations> 
    5878 
  • gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/app/gssim/gssimstudio/editor/views/ExperimentEditor.mxml

    r89 r96  
    4343                         
    4444                        [Bindable] 
    45                         public var showDebug : Boolean = false; 
     45                        public var showDebug : Boolean = true; 
    4646                         
    4747                        private var isFileTransfering : Boolean = false; 
     
    9696                                 
    9797                                //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"; 
    100103                                 
    101104                                parentApplication.service.uploadAndSubmitExperiment 
     
    201204                        private function submit() : void 
    202205                        { 
    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"; 
    205210                                parentApplication.service.doSubmitApplication(serviceURL, serviceDN, jobDesc.text); 
    206211                        } 
     
    366371                                        </mx:VBox> 
    367372                                        <mx:TextArea id="propertiesFile" width="400" height="300" y="170" /> 
     373                                        <mx:Button label="submit job" click="submit()"/> 
    368374                                </mx:HBox> 
    369375                        </mx:VBox> 
Note: See TracChangeset for help on using the changeset viewer.