Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: AW: AW: [geclipse-dev] Problem submitting a job to geclipsetutor(triedwith RCP of Mathias)

Hi,

> I am not behind a proxy and this is what I get when I use telnet:
> telnet iwrbdii.fzk.de 2170
> Trying 141.52.170.118...
> Connected to iwrbdii.fzk.de.
> Escape character is '^]'.
>
> seems Ok?

yes, that is fine!

> I get
>
> Creating VO...
> Fetching job submission services...
> Creating project...
> .vos/geclipsetutor/CE @ iwrce.fzk.de:2119/jobmanager-lcgpbs-dgiseq
> .vos/geclipsetutor/CE @ iwrce.fzk.de:2119/jobmanager-lcgpbs-dgipar
> .vos/geclipsetutor/CE @ dgrid-ce.fzk.de:2119/jobmanager-lcgpbs-dgiseq
> .vos/geclipsetutor/CE @ dgrid-ce.fzk.de:2119/jobmanager-lcgpbs-dgipar
(...)

ah, but here you see that the info-service is being queried anyway! (the 
CEs come from the same ldap query which should fetch the JSS, in the 
   vo.getComputing(null);
call instead of 
  vo.getJobSubmissionServices( null );

so... i really cannot understand why this last one returns null for you... 
(there are 2 JSS there)
Currently i can only suggest adding a debug breakpoint in  
eu.geclipse.core.model.impl.AbstractVirtualOrganization.getJobSubmissionServices(IProgressMonitor)
and look there...
Nick, Pawel, any better idea?

> Submitting job to Globus Gatekeeper @
> https://glite-rb3.ct.infn.it:7443/glite_wms_wmproxy_server
> java.lang.ClassCastException: eu.geclipse.jsdl.JSDLJobDescription
>     at
> eu.geclipse.globus.resources.GlobusJobService.submitJob(GlobusJobService
>.java:49) 
...
> I dont know what could be wrong?

oh, i see what went wrong here... it is your piece of code:

        IGridJobService s = new GlobusJobService(new 
URI("https://glite-rb3.ct.infn.it:7443/glite_wms_wmproxy_server";));
       IGridJobService []jss = new IGridJobService[1];
       jss[0] = s;     
       
you are creating a GlobusJobService here 'by hand', and trying to make it 
submit a JSDL job description... that will not work because globus only 
supports RSL.
Please replace 
   new GlobusJobService(URI)
with 
  new GliteJobService(URI)
(or convert all the rest to use RSL if you want, but there you have to 
change other things... as there is no job Submission Service for globus 
jobs etc)

> My certificate is also valid "Your certificate will be valid until Apr
> 17, 2009 and you will be notified in due time for renewal."

ah, fine

Greets, Ariel


Back to the top