Forums » User questions »
Using JSAGA with UNICORE resources
Added by Scardaci Diego about 13 years ago
Dear All,
I'm going to do some test using JSAGA and some UNICORE resources and I'd like to know some information about the UNICORE adaptor for JSAGA. Is there any additional information available?
Moreover, when I create a JobService, I have to provide a service url of the resource manager:
JobService service = JobFactory.createJobService(session, serviceURL);
Which is the SAGA "resource manager" component for UNICORE ? The registry?
registry=https://localhost:8080/XNJS/services/Registry?res=default_registry
Cheers,
Diego
Replies (14)
RE: Using JSAGA with UNICORE resources
-
Added by Schwarz Lionel about 13 years ago
Hi Deago,
The FAQ for this adaptor is at:
http://grid.in2p3.fr/software/jsaga-dev/adaptors/jsaga-adaptor-unicore/faq.html
Your URL should be smething like:
[Edit] the correct URL is:
unicore://localhost:8080/?Target=XNJS
Regards
Lionel
RE: Using JSAGA with UNICORE resources
-
Added by Scardaci Diego about 13 years ago
Hi Lionel,
I'm following the steps listed in the web page to create the jks file:
openssl pkcs12 -export -in usercert.pem -inkey userkey.pem -out usercert.p12
keytool -keystore usercert.jks -import -file certificates/*.0 -noprompt -storepass changeit
but the first command create usercert.p12 file and not "certificates/*.0".
I tried to put as input file usercert.p12 but I got an error:
[diego@emi-tutor .globus]$ keytool -keystore usercert.jks -import -file usercert.p12 -noprompt -storepass powerofliotru
keytool error: java.lang.Exception: Input not an X.509 certificate
Can you help me?
Regards,
Diego
RE: Using JSAGA with UNICORE resources
-
Added by Schwarz Lionel about 13 years ago
Sorry, I just realised that the FAQ for Unicore adaptor is out of date. Please have a look at this one:
http://grid.in2p3.fr/software/jsaga-dev/adaptors/jsaga-adaptor-arc/faq.html
You might adapt the name of the directory where the CA certificates are located ('certificates/') in this example.
Let me know about this.
Regards
Lionel
RE: Using JSAGA with UNICORE resources
-
Added by Scardaci Diego about 13 years ago
Hi Lionel,
I successfully created the JKS file.
Now I'd like to create a security context by java code:
Session session = SessionFactory.createSession(false);
context = ContextFactory.createContext(?);
context.setAttribute(?);
context.setVectorAttribute("JobServiceAttributes", new String[]{"wms.RetryCount="+retryCount});
session.addContext(context);
What is the context type I have to use?
Which attributes I have to set?
Thanks again.
Regards,
Diego
Ps.: do you have some sample code using UNICORE adaptor?
RE: Using JSAGA with UNICORE resources
-
Added by Schwarz Lionel about 13 years ago
- "Keystore" the path of your JKS
- "KeystorePass" the password of your JKS
So your code will be:
Session session = SessionFactory.createSession(false); context = ContextFactory.createContext("JKS"); context.setAttribute("Keystore","/path/to/your/JKS"); context.setAttribute("KeystorePass","your_password"); session.addContext(context);
I do not have any code using the UNICORE adaptor, but I think you don't need it: once you have the appropriate context, you can use the standard SAGA objects and methods.
Lionel
RE: Using JSAGA with UNICORE resources
-
Added by Scardaci Diego about 13 years ago
Hi Lionel,
thanks! I successfully created my session.
Another question about the URL to create the JobService object.
This is the registry I'm using:
registry=https://zam052v01.zam.kfa-juelich.de:8080/EMI-REGISTRY/services/Registry?res=default_registry
and running "ucc list-sites" I got:
EMI-UNICOREX https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=f80f82e7-939c-4a3d-a04b-15a60edbd6c5
Which is the serviceURL I have to use in:
JobService service = JobFactory.createJobService(session, serviceURL);
?
Cheers,
Diego
RE: Using JSAGA with UNICORE resources
-
Added by Schwarz Lionel about 13 years ago
Good!
You normally do not need to worry about the TargetSystemService. This service should be dynamically given by the default TargetSystemFactoryService which is "default_target_system_factory". Have you tried with default adaptor values like:
String serviceURL = "unicore://zam052v01.zam.kfa-juelich.de:8080/?Target=EMI-UNICOREX"; JobService service = JobFactory.createJobService(session, serviceURL);
RE: Using JSAGA with UNICORE resources
-
Added by Scardaci Diego about 13 years ago
the problem is that I'm not authorized in the default TargetSystemFactoryService and I got an error.
Does exist a way to specify a TargetSystemFactoryService as
[diego@emi-tutor ~]$ ucc list-sites
EMI-UNICOREX https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=f80f82e7-939c-4a3d-a04b-15a60edbd6c5
?
Cheers,
Diego
RE: Using JSAGA with UNICORE resources
-
Added by Schwarz Lionel about 13 years ago
No there is no way to specify directly the TargetSystemService.
What is your error? Can you set the debug in log4j, rerun your test and send me output and exception trace please?
log4j.logger.fr.in2p3.jsaga=DEBUG
RE: Using JSAGA with UNICORE resources
-
Added by Scardaci Diego about 13 years ago
This is my error without setting the DEBUG mode (I'm going to re-run my sample in DEBUG mode):
[main] ERROR wsrflite.ReliableProxy - Error making call for GetResourcePropertyDocument on https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[main] ERROR wsrflite.ReliableProxy - The root error was: org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[main] ERROR wsrflite.ReliableProxy - To see the full error stack trace, set log4j.logger.unicore.wsrflite.ReliableProxy=DEBUG
[main] ERROR client.BaseUASClient - Got Error: class org.codehaus.xfire.XFireRuntimeException Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[main] ERROR wsrflite.ReliableProxy - Error making call for GetResourcePropertyDocument on https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[main] ERROR wsrflite.ReliableProxy - The root error was: org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[main] ERROR wsrflite.ReliableProxy - To see the full error stack trace, set log4j.logger.unicore.wsrflite.ReliableProxy=DEBUG
[main] ERROR client.BaseUASClient - Got Error: class org.codehaus.xfire.XFireRuntimeException Could not invoke service.. Nested exception is org.
RE: Using JSAGA with UNICORE resources
-
Added by Scardaci Diego about 13 years ago
log in debug mode.
Cheers,
Diego
[2012-02-07 16:51:43,934] DEBUG httpclient.wire.header : >> "POST /EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110 HTTP/1.1[\r][\n]"
[2012-02-07 16:51:43,935] DEBUG httpclient.wire.header : >> "SOAPAction: "http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest"[\r][\n]"
[2012-02-07 16:51:43,935] DEBUG httpclient.wire.header : >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"
[2012-02-07 16:51:43,935] DEBUG httpclient.wire.header : >> "Connection: close[\r][\n]"
[2012-02-07 16:51:43,935] DEBUG httpclient.wire.header : >> "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; XFire Client +http://xfire.codehaus.org)[\r][\n]"
[2012-02-07 16:51:43,935] DEBUG httpclient.wire.header : >> "Host: zam052v01.zam.kfa-juelich.de:8080[\r][\n]"
[2012-02-07 16:51:43,935] DEBUG httpclient.wire.header : >> "Expect: 100-continue[\r][\n]"
[2012-02-07 16:51:43,935] DEBUG httpclient.wire.header : >> "Content-Length: 1005[\r][\n]"
[2012-02-07 16:51:43,935] DEBUG httpclient.wire.header : >> "[\r][\n]"
[2012-02-07 16:51:44,514] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 16:51:44,515] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 16:51:44,516] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 16:51:44,516] DEBUG httpclient.wire.content : >> "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:E3D883D3-37E2-7E8D-FA70-9853B8ABE4B7</wsa:MessageID><rpns0:ResourceId wsa:IsReferenceParameter="true" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:rpns0="http://www.unicore.eu/unicore6">0de43fc9-5051-4266-9755-f16bbe0aa110</rpns0:ResourceId></soap:Header><soap:Body><rp:GetResourcePropertyDocument xmlns:rp="http://docs.oasis-open.org/wsrf/rp-2" /></soap:Body></soap:Envelope>"
[2012-02-07 16:51:44,605] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 16:51:44,605] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 16:51:44,605] DEBUG httpclient.wire.header : << "Content-Type: text/xml; charset=iso-8859-1[\r][\n]"
[2012-02-07 16:51:44,605] DEBUG httpclient.wire.header : << "Connection: close[\r][\n]"
[2012-02-07 16:51:44,605] DEBUG httpclient.wire.header : << "Server: Jetty(6.1.26)[\r][\n]"
[2012-02-07 16:51:44,605] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 16:51:44,606] DEBUG httpclient.wire.content : << "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">http://www.w3.org/2005/08/addressing/anonymous</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequestAck</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:AC6E79AD-3F9D-DDC1-6063-F965BE4BFF7C</wsa:MessageID><wsa:RelatesTo xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:E3D883D3-37E2-7E8D-FA70-9853B8ABE4B7</wsa:RelatesTo></soap:Header><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]</faultstring></soap:Fault></soap:Body></soap:Envelope>"
[2012-02-07 16:51:44,625] ERROR unicore.wsrflite.ReliableProxy : Error making call for GetResourcePropertyDocument on https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[2012-02-07 16:51:44,631] ERROR unicore.wsrflite.ReliableProxy : The root error was: org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[2012-02-07 16:51:44,633] DEBUG unicore.wsrflite.ReliableProxy : Stack trace
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java:336)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.handleRequest(ReliableProxy.java:121)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.doInvoke(ReliableProxy.java:101)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.invoke(ReliableProxy.java:69)
at $Proxy4.GetResourcePropertyDocument(Unknown Source)
at de.fzj.unicore.wsrflite.xmlbeans.client.BaseWSRFClient.GetResourcePropertyDocument(BaseWSRFClient.java:316)
at de.fzj.unicore.uas.client.TSSClient.getResourcePropertiesDocument(TSSClient.java:121)
at de.fzj.unicore.uas.client.TSSClient.getTargetSystemName(TSSClient.java:235)
at fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor.connect(UnicoreJobControlAdaptor.java:86)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:66)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:61)
at fr.in2p3.jsaga.impl.job.AbstractSyncJobFactoryImpl.doCreateJobServiceSync(AbstractSyncJobFactoryImpl.java:72)
at fr.in2p3.jsaga.impl.job.JobFactoryImpl.doCreateJobService(JobFactoryImpl.java:35)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:202)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:146)
at it.infn.ct.unicore.RunTest.main(RunTest.java:67)
[2012-02-07 16:51:44,649] ERROR unicore.client.BaseUASClient : Got Error: class org.codehaus.xfire.XFireRuntimeException Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[2012-02-07 16:51:44,649] WARN unicore.client.TSSClient : Can't get name from TSS.
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java:336)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.handleRequest(ReliableProxy.java:121)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.doInvoke(ReliableProxy.java:101)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.invoke(ReliableProxy.java:69)
at $Proxy4.GetResourcePropertyDocument(Unknown Source)
at de.fzj.unicore.wsrflite.xmlbeans.client.BaseWSRFClient.GetResourcePropertyDocument(BaseWSRFClient.java:316)
at de.fzj.unicore.uas.client.TSSClient.getResourcePropertiesDocument(TSSClient.java:121)
at de.fzj.unicore.uas.client.TSSClient.getTargetSystemName(TSSClient.java:235)
at fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor.connect(UnicoreJobControlAdaptor.java:86)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:66)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:61)
at fr.in2p3.jsaga.impl.job.AbstractSyncJobFactoryImpl.doCreateJobServiceSync(AbstractSyncJobFactoryImpl.java:72)
at fr.in2p3.jsaga.impl.job.JobFactoryImpl.doCreateJobService(JobFactoryImpl.java:35)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:202)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:146)
at it.infn.ct.unicore.RunTest.main(RunTest.java:67)
[2012-02-07 16:51:44,649] INFO fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor : Target System is null
[2012-02-07 16:51:44,650] DEBUG unicore.wsrflite.BaseWSRFClient : Calling service at wsaTo: https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[2012-02-07 16:51:44,651] DEBUG unicore.wsrflite.ReliableProxy : Method [GetResourcePropertyDocument] [<GetResourcePropertyDocument xmlns="http://docs.oasis-open.org/wsrf/rp-2"/>]
[2012-02-07 16:51:44,660] DEBUG httpclient.wire.header : >> "POST /EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110 HTTP/1.1[\r][\n]"
[2012-02-07 16:51:44,660] DEBUG httpclient.wire.header : >> "SOAPAction: "http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest"[\r][\n]"
[2012-02-07 16:51:44,660] DEBUG httpclient.wire.header : >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"
[2012-02-07 16:51:44,664] DEBUG httpclient.wire.header : >> "Connection: close[\r][\n]"
[2012-02-07 16:51:44,665] DEBUG httpclient.wire.header : >> "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; XFire Client +http://xfire.codehaus.org)[\r][\n]"
[2012-02-07 16:51:44,665] DEBUG httpclient.wire.header : >> "Host: zam052v01.zam.kfa-juelich.de:8080[\r][\n]"
[2012-02-07 16:51:44,665] DEBUG httpclient.wire.header : >> "Expect: 100-continue[\r][\n]"
[2012-02-07 16:51:44,665] DEBUG httpclient.wire.header : >> "Content-Length: 1005[\r][\n]"
[2012-02-07 16:51:44,665] DEBUG httpclient.wire.header : >> "[\r][\n]"
[2012-02-07 16:51:44,913] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 16:51:44,913] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 16:51:44,913] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 16:51:44,914] DEBUG httpclient.wire.content : >> "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:17A74983-25E7-398E-ED88-C29DA4401A98</wsa:MessageID><rpns0:ResourceId wsa:IsReferenceParameter="true" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:rpns0="http://www.unicore.eu/unicore6">0de43fc9-5051-4266-9755-f16bbe0aa110</rpns0:ResourceId></soap:Header><soap:Body><rp:GetResourcePropertyDocument xmlns:rp="http://docs.oasis-open.org/wsrf/rp-2" /></soap:Body></soap:Envelope>"
[2012-02-07 16:51:44,990] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 16:51:44,990] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 16:51:44,990] DEBUG httpclient.wire.header : << "Content-Type: text/xml; charset=iso-8859-1[\r][\n]"
[2012-02-07 16:51:44,990] DEBUG httpclient.wire.header : << "Connection: close[\r][\n]"
[2012-02-07 16:51:44,990] DEBUG httpclient.wire.header : << "Server: Jetty(6.1.26)[\r][\n]"
[2012-02-07 16:51:44,990] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 16:51:44,990] DEBUG httpclient.wire.content : << "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">http://www.w3.org/2005/08/addressing/anonymous</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequestAck</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:E493801B-74B5-D26B-2BCC-AA525FE154D6</wsa:MessageID><wsa:RelatesTo xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:17A74983-25E7-398E-ED88-C29DA4401A98</wsa:RelatesTo></soap:Header><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]</faultstring></soap:Fault></soap:Body></soap:Envelope>"
[2012-02-07 16:51:44,992] ERROR unicore.wsrflite.ReliableProxy : Error making call for GetResourcePropertyDocument on https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[2012-02-07 16:51:44,992] ERROR unicore.wsrflite.ReliableProxy : The root error was: org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[2012-02-07 16:51:44,992] DEBUG unicore.wsrflite.ReliableProxy : Stack trace
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java:336)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.handleRequest(ReliableProxy.java:121)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.doInvoke(ReliableProxy.java:101)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.invoke(ReliableProxy.java:69)
at $Proxy4.GetResourcePropertyDocument(Unknown Source)
at de.fzj.unicore.wsrflite.xmlbeans.client.BaseWSRFClient.GetResourcePropertyDocument(BaseWSRFClient.java:316)
at de.fzj.unicore.uas.client.TSSClient.getResourcePropertiesDocument(TSSClient.java:121)
at de.fzj.unicore.uas.client.TSSClient.getApplications(TSSClient.java:249)
at fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor.connect(UnicoreJobControlAdaptor.java:89)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:66)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:61)
at fr.in2p3.jsaga.impl.job.AbstractSyncJobFactoryImpl.doCreateJobServiceSync(AbstractSyncJobFactoryImpl.java:72)
at fr.in2p3.jsaga.impl.job.JobFactoryImpl.doCreateJobService(JobFactoryImpl.java:35)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:202)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:146)
at it.infn.ct.unicore.RunTest.main(RunTest.java:67)
[2012-02-07 16:51:44,992] ERROR unicore.client.BaseUASClient : Got Error: class org.codehaus.xfire.XFireRuntimeException Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[2012-02-07 16:51:44,994] WARN unicore.client.TSSClient : Can't get applications from TSS.
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java:336)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.handleRequest(ReliableProxy.java:121)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.doInvoke(ReliableProxy.java:101)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.invoke(ReliableProxy.java:69)
at $Proxy4.GetResourcePropertyDocument(Unknown Source)
at de.fzj.unicore.wsrflite.xmlbeans.client.BaseWSRFClient.GetResourcePropertyDocument(BaseWSRFClient.java:316)
at de.fzj.unicore.uas.client.TSSClient.getResourcePropertiesDocument(TSSClient.java:121)
at de.fzj.unicore.uas.client.TSSClient.getApplications(TSSClient.java:249)
at fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor.connect(UnicoreJobControlAdaptor.java:89)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:66)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:61)
at fr.in2p3.jsaga.impl.job.AbstractSyncJobFactoryImpl.doCreateJobServiceSync(AbstractSyncJobFactoryImpl.java:72)
at fr.in2p3.jsaga.impl.job.JobFactoryImpl.doCreateJobService(JobFactoryImpl.java:35)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:202)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:146)
at it.infn.ct.unicore.RunTest.main(RunTest.java:67)
Error in creating jobService...
RE: Using JSAGA with UNICORE resources
-
Added by Scardaci Diego about 13 years ago
A more complete DEBUG log:
[2012-02-07 17:06:37,723] DEBUG unicore.wsrflite.ReliableProxy : Result [<rp:GetResourcePropertyDocumentResponse xmlns:rp="http://docs.oasis-open.org/wsrf/rp-2" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tsf:TargetSystemFactoryProperties xmlns:tsf="http://unigrids.org/2006/04/services/tsf">
<tsf:Name>EMI-UNICOREX</tsf:Name>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110</add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">0de43fc9-5051-4266-9755-f16bbe0aa110</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=zam052v01.zam.kfa-juelich.de, OU=EMI UNICORE unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=2a689790-e624-4d17-89ec-93288b0e87fa</add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">2a689790-e624-4d17-89ec-93288b0e87fa</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=zam052v01.zam.kfa-juelich.de, OU=EMI UNICORE unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=f80f82e7-939c-4a3d-a04b-15a60edbd6c5</add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">f80f82e7-939c-4a3d-a04b-15a60edbd6c5</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=zam052v01.zam.kfa-juelich.de, OU=EMI UNICORE unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:AccessibleTargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=f80f82e7-939c-4a3d-a04b-15a60edbd6c5</add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">f80f82e7-939c-4a3d-a04b-15a60edbd6c5</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=zam052v01.zam.kfa-juelich.de, OU=EMI UNICORE unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:AccessibleTargetSystemReference>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Korn shell</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">(AT&T Research) 93t+ 2010-03-05</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Bash shell</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">4.1.7</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>DEBUG</jsdl:Name>
<jsdl:IncarnatedValue>--debugger</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>VERBOSE</jsdl:Name>
<jsdl:IncarnatedValue>-v</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Perl</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">5.12.1</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>DEBUG</jsdl:Name>
<jsdl:IncarnatedValue>-d</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>PROFILING</jsdl:Name>
<jsdl:IncarnatedValue>-d:DProf</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>VERBOSE</jsdl:Name>
<jsdl:IncarnatedValue>-c</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Java</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">1.6.0_20</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>JARFILE</jsdl:Name>
<jsdl:IncarnatedValue>-jar</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>CLASSPATH</jsdl:Name>
<jsdl:IncarnatedValue>-cp</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>MAINCLASS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">C shell</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">6.17.00</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>DEBUG</jsdl:Name>
<jsdl:IncarnatedValue>-x</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>VERBOSE</jsdl:Name>
<jsdl:IncarnatedValue>-v</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Date</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">1.0</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions"/>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Custom executable</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">1.0</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Python Script</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">2.6.5</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>DEBUG</jsdl:Name>
<jsdl:IncarnatedValue>-d</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>VERBOSE</jsdl:Name>
<jsdl:IncarnatedValue>-v</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Blender</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">2.56</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>UC_PROCESSORS</jsdl:Name>
<jsdl:IncarnatedValue>-t</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue>-b</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SCENE</jsdl:Name>
<jsdl:IncarnatedValue>-S</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>FORMAT</jsdl:Name>
<jsdl:IncarnatedValue>-F</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>FRAME</jsdl:Name>
<jsdl:IncarnatedValue>-f</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>START</jsdl:Name>
<jsdl:IncarnatedValue>-s</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>END</jsdl:Name>
<jsdl:IncarnatedValue>-e</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ANIMATE</jsdl:Name>
<jsdl:IncarnatedValue>-a</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<typ:UpSince xmlns:typ="http://unigrids.org/2006/04/types">2011-11-18T13:44:50.813+01:00</typ:UpSince>
<jsdl:IndividualPhysicalMemory xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>33554432</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>33554432</jsdl:LowerBound>
<jsdl:UpperBound>1048576000</jsdl:UpperBound>
</jsdl:Range>
</jsdl:IndividualPhysicalMemory>
<jsdl:IndividualCPUTime xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>3600</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1</jsdl:LowerBound>
<jsdl:UpperBound>86400</jsdl:UpperBound>
</jsdl:Range>
</jsdl:IndividualCPUTime>
<jsdl:IndividualCPUCount xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>1.0</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1.0</jsdl:LowerBound>
<jsdl:UpperBound>2.0</jsdl:UpperBound>
</jsdl:Range>
</jsdl:IndividualCPUCount>
<jsdl:TotalResourceCount xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>1.0</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1.0</jsdl:LowerBound>
<jsdl:UpperBound>4.0</jsdl:UpperBound>
</jsdl:Range>
</jsdl:TotalResourceCount>
<jsdl:TotalCPUCount xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>4.0</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1.0</jsdl:LowerBound>
<jsdl:UpperBound>8.0</jsdl:UpperBound>
</jsdl:Range>
</jsdl:TotalCPUCount>
<jsdl:OperatingSystem xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:OperatingSystemType>
<jsdl:OperatingSystemName>LINUX</jsdl:OperatingSystemName>
</jsdl:OperatingSystemType>
<jsdl:OperatingSystemVersion>2.6.34.7-0.4-xen</jsdl:OperatingSystemVersion>
<jsdl:Description>openSUSE 11.3 (x86_64)</jsdl:Description>
</jsdl:OperatingSystem>
<typ:Processor xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:CPUArchitecture xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:CPUArchitectureName>x86_64</jsdl:CPUArchitectureName>
</jsdl:CPUArchitecture>
<jsdl:IndividualCPUCount xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>1.0</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1.0</jsdl:LowerBound>
<jsdl:UpperBound>2.0</jsdl:UpperBound>
</jsdl:Range>
</jsdl:IndividualCPUCount>
</typ:Processor>
<typ:AvailableResource xmlns:typ="http://unigrids.org/2006/04/types">
<typ:Name>ExclusiveExecution</typ:Name>
<typ:Description xsi:nil="true"/>
<typ:Type>boolean</typ:Type>
<typ:Default>false</typ:Default>
</typ:AvailableResource>
<jsdl:ExecutionEnvironmentDescription xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Name>OpenMPI</jsdl:Name>
<jsdl:Description>Run an OpenMPI application</jsdl:Description>
<jsdl-u:Argument xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb" xmlns:jsdl-u="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl-u:Name>Processes</jsdl-u:Name>
<jsdl-u:IncarnatedValue>-np</jsdl-u:IncarnatedValue>
<jsdl-u:ArgumentMetadata>
<jsdl-u:Description>The number of processes</jsdl-u:Description>
<jsdl-u:Type>int</jsdl-u:Type>
</jsdl-u:ArgumentMetadata>
</jsdl-u:Argument>
<jsdl-u:Argument xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb" xmlns:jsdl-u="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl-u:Name>Export Environment Variable</jsdl-u:Name>
<jsdl-u:IncarnatedValue>-x</jsdl-u:IncarnatedValue>
<jsdl-u:ArgumentMetadata>
<jsdl-u:Description>Export an environment variable (e.g., "foo=bar" exports the environment variable name "foo" and sets its value to "bar" in the starte\
d processes)</jsdl-u:Description>
<jsdl-u:Type>string</jsdl-u:Type>
</jsdl-u:ArgumentMetadata>
</jsdl-u:Argument>
<jsdl:Option>
<jsdl:Name>Verbose</jsdl:Name>
<jsdl-u:OptionMetadata xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb" xmlns:jsdl-u="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl-u:Description>Be verbose</jsdl-u:Description>
</jsdl-u:OptionMetadata>
</jsdl:Option>
</jsdl:ExecutionEnvironmentDescription>
<tss:SupportsReservation xmlns:tss="http://unigrids.org/2006/04/services/tss">false</tss:SupportsReservation>
<tss:Xlogin xmlns:tss="http://unigrids.org/2006/04/services/tss">emidio</tss:Xlogin>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">shell-init:</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">error</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">retrieving</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">current</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">directory:</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">getcwd:</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">cannot</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">access</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">parent</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">directories:</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">Datei</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">oder</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">Verzeichnis</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">nicht</tss:Xgroup>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">gefunden</tss:Xgroup>
<typ:Version xmlns:typ="http://unigrids.org/2006/04/types">1.4.1</typ:Version>
<bprp2:ResourcePropertyNames xmlns:bprp1="http://docs.oasis-open.org/wsrf/rl-2" xmlns:bprp2="http://schemas.ggf.org/ogsa/2006/05/wsrf-bp" xmlns:bprp3="http://unigrids.org/2006/04/types" xmlns:bprp4="http://unigrids.org/2006/04/services/tsf" xmlns:bprp5="http://unigrids.org/2006/04/services/tss" xmlns:bprp6="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:bprp7="http://www.unicore.eu/unicore/jsdl-extensions">bprp1:CurrentTime bprp2:WSResourceInterfaces bprp3:Processor bprp4:PerformanceData bprp3:Version bprp4:TargetSystemReference bprp5:Xgroup bprp6:IndividualCPUCount bprp2:FinalWSResourceInterface bprp6:TotalResourceCount bprp6:IndividualCPUTime bprp7:ExecutionEnvironmentDescription bprp3:AvailableResource bprp1:TerminationTime bprp3:SiteResource bprp5:ApplicationResource bprp3:UpSince bprp5:Xlogin bprp3:Security bprp5:SupportsReservation bprp6:TotalCPUCount bprp4:AccessibleTargetSystemReference bprp6:IndividualPhysicalMemory bprp4:Name bprp6:OperatingSystem bprp2:ResourcePropertyNames</bprp2:ResourcePropertyNames>
<wsrf:FinalWSResourceInterface xmlns:bprp1="http://unigrids.org/2006/04/services/tsf" xmlns:wsrf="http://schemas.ggf.org/ogsa/2006/05/wsrf-bp">bprp1:TargetSystemFactory</wsrf:FinalWSResourceInterface>
<wsrf:WSResourceInterfaces xmlns:bpri1="http://docs.oasis-open.org/wsrf/rlw-2" xmlns:bpri2="http://docs.oasis-open.org/wsrf/rpw-2" xmlns:bpri3="http://unigrids.org/2006/04/services/tsf" xmlns:wsrf="http://schemas.ggf.org/ogsa/2006/05/wsrf-bp">bpri1:ScheduledResourceTermination bpri2:GetResourceProperty bpri2:GetResourcePropertyDocument bpri1:ImmediateResourceTermination bpri2:QueryResourceProperties bpri3:TargetSystemFactory</wsrf:WSResourceInterfaces>
<rl:CurrentTime xmlns:rl="http://docs.oasis-open.org/wsrf/rl-2">2012-02-07T17:05:44.051+01:00</rl:CurrentTime>
<rl:TerminationTime xmlns:rl="http://docs.oasis-open.org/wsrf/rl-2">2014-11-18T13:44:50.751+01:00</rl:TerminationTime>
<typ:Security xmlns:typ="http://unigrids.org/2006/04/types">
<typ:TrustedCA>CN=Academia Sinica Grid Computing Certification Authority Mercury,O=AS,C=TW</typ:TrustedCA>
<typ:TrustedCA>CN=HellasGrid Root CA 2006,OU=Certification Authorities,O=HellasGrid,C=GR</typ:TrustedCA>
<typ:TrustedCA>CN=MaGrid CA,O=MaGrid,C=MA</typ:TrustedCA>
<typ:TrustedCA>CN=Scientific Data Grid CA,DC=SDG,DC=Grid,DC=CN</typ:TrustedCA>
<typ:TrustedCA>CN=BEgrid CA,O=BELNET,OU=BEGRID,C=BE</typ:TrustedCA>
<typ:TrustedCA>CN=AEGIS-CA,O=AEGIS,C=RS</typ:TrustedCA>
<typ:TrustedCA>CN=DOEGrids CA 1,OU=Certificate Authorities,DC=DOEGrids,DC=org</typ:TrustedCA>
<typ:TrustedCA>CN=MARGI-CA,O=MARGI,C=MK</typ:TrustedCA>
<typ:TrustedCA>CN=Certificate Issuer,OU=Certification Authority,O=AustrianGrid,C=AT</typ:TrustedCA>
<typ:TrustedCA>CN=MD-Grid CA,OU=Certification Authority,O=RENAM,DC=MD-Grid,DC=MD</typ:TrustedCA>
<typ:TrustedCA>CN=NECTEC GOC CA,OU=GOC,O=NECTEC,C=TH</typ:TrustedCA>
<typ:TrustedCA>CN=NorduGrid Certification Authority,O=NorduGrid,O=Grid</typ:TrustedCA>
<typ:TrustedCA>CN=UGRID CA,DC=ugrid,DC=org</typ:TrustedCA>
<typ:TrustedCA>CN=KISTI Grid Certificate Authority,O=GRID,O=KISTI,C=KR</typ:TrustedCA>
<typ:TrustedCA>CN=NCHC CA,DC=NCHC,DC=ORG,DC=TW</typ:TrustedCA>
<typ:TrustedCA>CN=QuoVadis Grid ICA,OU=Issuing Certification Authority,O=QuoVadis Limited,C=BM</typ:TrustedCA>
<typ:TrustedCA>1.2.840.113549.1.9.1=#16126361406d61696c2e697563632e61632e696c,CN=IUCC,O=IUCC,C=IL</typ:TrustedCA>
<typ:TrustedCA>CN=CERN Root CA,DC=cern,DC=ch</typ:TrustedCA>
<typ:TrustedCA>CN=CESNET CA Root,O=CESNET CA,DC=cesnet-ca,DC=cz</typ:TrustedCA>
<typ:TrustedCA>CN=Polish Grid CA,O=GRID,C=PL</typ:TrustedCA>
<typ:TrustedCA>CN=Baltic Grid Certification Authority,DC=balticgrid,DC=org</typ:TrustedCA>
<typ:TrustedCA>CN=PKIGrid,L=CeSPI,OU=UNLP,O=e-Ciencia,C=AR</typ:TrustedCA>
<typ:TrustedCA>CN=GridKa-CA,O=GermanGrid,C=DE</typ:TrustedCA>
<typ:TrustedCA>CN=SiGNET CA,O=SiGNET,C=SI</typ:TrustedCA>
<typ:TrustedCA>CN=CNRS2-Projets,O=CNRS,C=FR</typ:TrustedCA>
<typ:TrustedCA>CN=ULAGrid Certification Authority,OU=CeCalCULA,O=Universidad de Los Andes,O=Grid,C=VE</typ:TrustedCA>
<typ:TrustedCA>CN=GRID2-FR,O=CNRS,C=FR</typ:TrustedCA>
<typ:TrustedCA>CN=TR-Grid CA,O=TRGrid,C=TR</typ:TrustedCA>
<typ:TrustedCA>CN=BG.ACAD CA,DC=acad,DC=bg</typ:TrustedCA>
<typ:TrustedCA>CN=RomanianGRID CA,OU=Certification Authority,O=ROSA,DC=RomanianGRID,DC=RO</typ:TrustedCA>
<typ:TrustedCA>CN=Grid Canada Certificate Authority,O=Grid,C=CA</typ:TrustedCA>
<typ:TrustedCA>CN=DFN-Verein PCA Grid - G01,OU=DFN-PKI,O=DFN-Verein,C=DE</typ:TrustedCA>
<typ:TrustedCA>CN=ArmeSFo CA,O=ArmeSFo,C=AM</typ:TrustedCA>
<typ:TrustedCA>CN=Certificate Authority,OU=GRID,O=AIST,C=JP</typ:TrustedCA>
<typ:TrustedCA>1.2.840.113549.1.9.1=#161263616d616e6167657240767061632e6f7267,CN=APACGrid,OU=CA,O=APACGrid,C=AU</typ:TrustedCA>
<typ:TrustedCA>CN=ESnet Root CA 1,OU=Certificate Authorities,O=ESnet,DC=ES,DC=net</typ:TrustedCA>
<typ:TrustedCA>CN=UFF Brazilian Grid Certification Authority,O=UFF BrGrid CA,O=ICPEDU,C=BR</typ:TrustedCA>
<typ:TrustedCA>CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE</typ:TrustedCA>
<typ:TrustedCA>CN=SWITCHgrid Root CA,O=Switch - Teleinformatikdienste fuer Lehre und Forschung,C=CH</typ:TrustedCA>
<typ:TrustedCA>CN=INFN CA,O=INFN,C=IT</typ:TrustedCA>
<typ:TrustedCA>CN=KEK GRID Certificate Authority,OU=CRC,O=KEK,C=JP</typ:TrustedCA>
<typ:TrustedCA>CN=LIP Certification Authority,O=LIPCA,C=PT</typ:TrustedCA>
<typ:TrustedCA>CN=REUNA Certification Authority,O=REUNACA,C=CL</typ:TrustedCA>
<typ:TrustedCA>CN=NAREGI CA,OU=CGRD,O=National Research Grid Initiative,C=JP</typ:TrustedCA>
<typ:TrustedCA>CN=Russian Data-Intensive Grid CA,O=RDIG,C=RU</typ:TrustedCA>
<typ:TrustedCA>CN=HellasGrid CA 2006,OU=Certification Authorities,O=HellasGrid,C=GR</typ:TrustedCA>
<typ:TrustedCA>CN=Grid-Ireland Certification Authority,O=Grid-Ireland,C=IE</typ:TrustedCA>
<typ:TrustedCA>CN=Root Certificate Authority at CNIC,DC=Grid,DC=CN</typ:TrustedCA>
<typ:TrustedCA>CN=CERN Trusted Certification Authority,DC=cern,DC=ch</typ:TrustedCA>
<typ:TrustedCA>CN=TACC Root CA,O=UT-AUSTIN,DC=TACC,DC=UTEXAS,DC=EDU</typ:TrustedCA>
<typ:TrustedCA>CN=UK e-Science Root,OU=Authority,O=eScienceRoot,C=UK</typ:TrustedCA>
<typ:TrustedCA>CN=NIIF Root CA,OU=Certificate Authorities,O=NIIF,C=HU</typ:TrustedCA>
<typ:TrustedCA>CN=CA,OU=UNAM,O=UNAMgrid,C=MX</typ:TrustedCA>
<typ:TrustedCA>CN=UTN-USERFirst-Hardware,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US</typ:TrustedCA>
<typ:TrustedCA>CN=QuoVadis Root Certification Authority,OU=Root Certification Authority,O=QuoVadis Limited,C=BM</typ:TrustedCA>
<typ:TrustedCA>CN=AddTrust External CA Root,OU=AddTrust External TTP Network,O=AddTrust AB,C=SE</typ:TrustedCA>
<typ:TrustedCA>CN=HKU Grid CA,DC=GRID,DC=HKU,DC=HK</typ:TrustedCA>
<typ:TrustedCA>CN=CNRS2,O=CNRS,C=FR</typ:TrustedCA>
<typ:TrustedCA>CN=UK e-Science CA,OU=Authority,O=eScienceCA,C=UK</typ:TrustedCA>
<typ:TrustedCA>CN=TERENA eScience SSL CA,O=TERENA,C=NL</typ:TrustedCA>
<typ:TrustedCA>CN=UFF Latin American and Caribbean Catch-all Grid CA,O=UFF LACGrid CA,DC=IC,DC=UFF,DC=BR</typ:TrustedCA>
<typ:TrustedCA>CN=MREN-CA,DC=MREN,DC=ac,DC=me</typ:TrustedCA>
<typ:TrustedCA>CN=SlovakGrid CA,O=SlovakGrid,C=SK</typ:TrustedCA>
<typ:TrustedCA>CN=Indian Grid Certification Authority,DC=GARUDAINDIA,DC=IN</typ:TrustedCA>
<typ:TrustedCA>CN=IRISGridCA,DC=irisgrid,DC=es</typ:TrustedCA>
<typ:TrustedCA>CN=PRAGMA-UCSD CA,DC=PRAGMA-GRID,DC=NET</typ:TrustedCA>
<typ:TrustedCA>CN=CESNET CA 3,O=CESNET CA,DC=cesnet-ca,DC=cz</typ:TrustedCA>
<typ:TrustedCA>CN=IRAN-GRID CA,O=IRAN-GRID,O=IPM,C=IR</typ:TrustedCA>
<typ:TrustedCA>CN=Belarusian Grid Certification Authority,O=uiip.bas-net.by,DC=grid,DC=by</typ:TrustedCA>
<typ:TrustedCA>CN=PK-GRID-CA,O=NCP,C=PK</typ:TrustedCA>
<typ:TrustedCA>CN=TACC Classic CA,O=UT-AUSTIN,DC=TACC,DC=UTEXAS,DC=EDU</typ:TrustedCA>
<typ:TrustedCA>CN=SRCE CA,OU=srce,O=edu,C=HR</typ:TrustedCA>
<typ:TrustedCA>CN=SEE-GRID CA,DC=SEE-GRID,DC=ORG</typ:TrustedCA>
<typ:TrustedCA>CN=CyGridCA,O=HPCL,O=CyGrid,C=CY</typ:TrustedCA>
<typ:TrustedCA>1.2.840.113549.1.9.1=#161167726964636140696865702e61632e636e,CN=gridca-cn,O=HEP,C=CN</typ:TrustedCA>
<typ:TrustedCA>CN=Certification Authority for Latvian Grid,DC=latgrid,DC=LV</typ:TrustedCA>
</typ:Security>
<tsf:PerformanceData>
<tsf:MeanTimeQueued>925</tsf:MeanTimeQueued>
<tsf:TSSType>DEFAULT</tsf:TSSType>
</tsf:PerformanceData>
</tsf:TargetSystemFactoryProperties>
</rp:GetResourcePropertyDocumentResponse>]
[2012-02-07 17:06:38,063] DEBUG fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor : Found this TSS: https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[2012-02-07 17:06:38,076] DEBUG unicore.wsrflite.BaseWSRFClient : Calling service at wsaTo: https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[2012-02-07 17:06:38,089] DEBUG unicore.wsrflite.ReliableProxy : Method [GetResourcePropertyDocument] [<GetResourcePropertyDocument xmlns="http://docs.oasis-open.org/wsrf/rp-2"/>]
[2012-02-07 17:06:38,113] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Using alias <1>
[2012-02-07 17:06:38,118] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Certificate chain '1':
[2012-02-07 17:06:38,125] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Certificate 1:
[2012-02-07 17:06:38,125] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Subject DN: CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT
[2012-02-07 17:06:38,125] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Signature Algorithm: SHA1withRSA
[2012-02-07 17:06:38,125] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid from: Tue Mar 01 13:33:56 CET 2011
[2012-02-07 17:06:38,125] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid until: Wed Feb 29 13:33:56 CET 2012
[2012-02-07 17:06:38,125] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Issuer: CN=INFN CA, O=INFN, C=IT
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Trusted certificate 'dfn':
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Subject DN: CN=DFN-Verein PCA Grid - G01, OU=DFN-PKI, O=DFN-Verein, C=DE
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Signature Algorithm: SHA1withRSA
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid from: Thu Jul 07 15:35:15 CEST 2005
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid until: Sat Sep 07 15:35:15 CEST 2013
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Issuer: CN=DFN-Verein PCA Grid - G01, OU=DFN-PKI, O=DFN-Verein, C=DE
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Trusted certificate 'gilda-ca':
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Subject DN: CN=GILDA CA 2011, O=GILDA, C=IT
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Signature Algorithm: SHA1withRSA
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid from: Mon Feb 28 14:52:47 CET 2011
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid until: Sat Feb 27 14:52:47 CET 2016
[2012-02-07 17:06:38,127] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Issuer: CN=GILDA CA 2011, O=GILDA, C=IT
[2012-02-07 17:06:38,130] DEBUG httpclient.wire.header : >> "POST /EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110 HTTP/1.1[\r][\n]"
[2012-02-07 17:06:38,130] DEBUG httpclient.wire.header : >> "SOAPAction: "http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest"[\r][\n]"
[2012-02-07 17:06:38,131] DEBUG httpclient.wire.header : >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"
[2012-02-07 17:06:38,131] DEBUG httpclient.wire.header : >> "Connection: close[\r][\n]"
[2012-02-07 17:06:38,131] DEBUG httpclient.wire.header : >> "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; XFire Client +http://xfire.codehaus.org)[\r][\n]"
[2012-02-07 17:06:38,131] DEBUG httpclient.wire.header : >> "Host: zam052v01.zam.kfa-juelich.de:8080[\r][\n]"
[2012-02-07 17:06:38,131] DEBUG httpclient.wire.header : >> "Expect: 100-continue[\r][\n]"
[2012-02-07 17:06:38,131] DEBUG httpclient.wire.header : >> "Content-Length: 1005[\r][\n]"
[2012-02-07 17:06:38,131] DEBUG httpclient.wire.header : >> "[\r][\n]"
[2012-02-07 17:06:38,609] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 17:06:38,609] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 17:06:38,609] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 17:06:38,609] DEBUG httpclient.wire.content : >> "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:93B3D705-4FC3-AF8A-D244-552780A7ECD6</wsa:MessageID><rpns0:ResourceId wsa:IsReferenceParameter="true" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:rpns0="http://www.unicore.eu/unicore6">0de43fc9-5051-4266-9755-f16bbe0aa110</rpns0:ResourceId></soap:Header><soap:Body><rp:GetResourcePropertyDocument xmlns:rp="http://docs.oasis-open.org/wsrf/rp-2" /></soap:Body></soap:Envelope>"
[2012-02-07 17:06:38,688] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 17:06:38,688] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 17:06:38,688] DEBUG httpclient.wire.header : << "Content-Type: text/xml; charset=iso-8859-1[\r][\n]"
[2012-02-07 17:06:38,688] DEBUG httpclient.wire.header : << "Connection: close[\r][\n]"
[2012-02-07 17:06:38,688] DEBUG httpclient.wire.header : << "Server: Jetty(6.1.26)[\r][\n]"
[2012-02-07 17:06:38,688] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 17:06:38,689] DEBUG httpclient.wire.content : << "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">http://www.w3.org/2005/08/addressing/anonymous</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequestAck</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:2FEBFB76-2833-6FF8-3E31-77E81C2B03D6</wsa:MessageID><wsa:RelatesTo xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:93B3D705-4FC3-AF8A-D244-552780A7ECD6</wsa:RelatesTo></soap:Header><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]</faultstring></soap:Fault></soap:Body></soap:Envelope>"
[2012-02-07 17:06:38,696] ERROR unicore.wsrflite.ReliableProxy : Error making call for GetResourcePropertyDocument on https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[2012-02-07 17:06:38,696] ERROR unicore.wsrflite.ReliableProxy : The root error was: org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[2012-02-07 17:06:38,698] DEBUG unicore.wsrflite.ReliableProxy : Stack trace
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java:336)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.handleRequest(ReliableProxy.java:121)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.doInvoke(ReliableProxy.java:101)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.invoke(ReliableProxy.java:69)
at $Proxy4.GetResourcePropertyDocument(Unknown Source)
at de.fzj.unicore.wsrflite.xmlbeans.client.BaseWSRFClient.GetResourcePropertyDocument(BaseWSRFClient.java:316)
at de.fzj.unicore.uas.client.TSSClient.getResourcePropertiesDocument(TSSClient.java:121)
at de.fzj.unicore.uas.client.TSSClient.getTargetSystemName(TSSClient.java:235)
at fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor.connect(UnicoreJobControlAdaptor.java:86)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:66)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:61)
at fr.in2p3.jsaga.impl.job.AbstractSyncJobFactoryImpl.doCreateJobServiceSync(AbstractSyncJobFactoryImpl.java:72)
at fr.in2p3.jsaga.impl.job.JobFactoryImpl.doCreateJobService(JobFactoryImpl.java:35)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:202)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:146)
at it.infn.ct.unicore.RunTest.main(RunTest.java:69)
[2012-02-07 17:06:38,710] ERROR unicore.client.BaseUASClient : Got Error: class org.codehaus.xfire.XFireRuntimeException Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[2012-02-07 17:06:38,710] WARN unicore.client.TSSClient : Can't get name from TSS.
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java:336)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.handleRequest(ReliableProxy.java:121)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.doInvoke(ReliableProxy.java:101)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.invoke(ReliableProxy.java:69)
at $Proxy4.GetResourcePropertyDocument(Unknown Source)
at de.fzj.unicore.wsrflite.xmlbeans.client.BaseWSRFClient.GetResourcePropertyDocument(BaseWSRFClient.java:316)
at de.fzj.unicore.uas.client.TSSClient.getResourcePropertiesDocument(TSSClient.java:121)
at de.fzj.unicore.uas.client.TSSClient.getTargetSystemName(TSSClient.java:235)
at fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor.connect(UnicoreJobControlAdaptor.java:86)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:66)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:61)
at fr.in2p3.jsaga.impl.job.AbstractSyncJobFactoryImpl.doCreateJobServiceSync(AbstractSyncJobFactoryImpl.java:72)
at fr.in2p3.jsaga.impl.job.JobFactoryImpl.doCreateJobService(JobFactoryImpl.java:35)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:202)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:146)
at it.infn.ct.unicore.RunTest.main(RunTest.java:69)
[2012-02-07 17:06:38,710] INFO fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor : Target System is null
[2012-02-07 17:06:38,712] DEBUG unicore.wsrflite.BaseWSRFClient : Calling service at wsaTo: https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[2012-02-07 17:06:38,712] DEBUG unicore.wsrflite.ReliableProxy : Method [GetResourcePropertyDocument] [<GetResourcePropertyDocument xmlns="http://docs.oasis-open.org/wsrf/rp-2"/>]
[2012-02-07 17:06:38,721] DEBUG httpclient.wire.header : >> "POST /EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110 HTTP/1.1[\r][\n]"
[2012-02-07 17:06:38,721] DEBUG httpclient.wire.header : >> "SOAPAction: "http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest"[\r][\n]"
[2012-02-07 17:06:38,721] DEBUG httpclient.wire.header : >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"
[2012-02-07 17:06:38,724] DEBUG httpclient.wire.header : >> "Connection: close[\r][\n]"
[2012-02-07 17:06:38,725] DEBUG httpclient.wire.header : >> "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; XFire Client +http://xfire.codehaus.org)[\r][\n]"
[2012-02-07 17:06:38,725] DEBUG httpclient.wire.header : >> "Host: zam052v01.zam.kfa-juelich.de:8080[\r][\n]"
[2012-02-07 17:06:38,725] DEBUG httpclient.wire.header : >> "Expect: 100-continue[\r][\n]"
[2012-02-07 17:06:38,725] DEBUG httpclient.wire.header : >> "Content-Length: 1005[\r][\n]"
[2012-02-07 17:06:38,726] DEBUG httpclient.wire.header : >> "[\r][\n]"
[2012-02-07 17:06:38,969] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 17:06:38,969] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 17:06:38,969] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 17:06:38,969] DEBUG httpclient.wire.content : >> "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:58BD0210-D2EE-5D29-C89A-7ED217A218C5</wsa:MessageID><rpns0:ResourceId wsa:IsReferenceParameter="true" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:rpns0="http://www.unicore.eu/unicore6">0de43fc9-5051-4266-9755-f16bbe0aa110</rpns0:ResourceId></soap:Header><soap:Body><rp:GetResourcePropertyDocument xmlns:rp="http://docs.oasis-open.org/wsrf/rp-2" /></soap:Body></soap:Envelope>"
[2012-02-07 17:06:39,053] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 17:06:39,053] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 17:06:39,053] DEBUG httpclient.wire.header : << "Content-Type: text/xml; charset=iso-8859-1[\r][\n]"
[2012-02-07 17:06:39,053] DEBUG httpclient.wire.header : << "Connection: close[\r][\n]"
[2012-02-07 17:06:39,053] DEBUG httpclient.wire.header : << "Server: Jetty(6.1.26)[\r][\n]"
[2012-02-07 17:06:39,053] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 17:06:39,054] DEBUG httpclient.wire.content : << "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">http://www.w3.org/2005/08/addressing/anonymous</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequestAck</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:30D0FF59-7289-F866-7D03-B74BEA53FEB5</wsa:MessageID><wsa:RelatesTo xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:58BD0210-D2EE-5D29-C89A-7ED217A218C5</wsa:RelatesTo></soap:Header><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]</faultstring></soap:Fault></soap:Body></soap:Envelope>"
[2012-02-07 17:06:39,055] ERROR unicore.wsrflite.ReliableProxy : Error making call for GetResourcePropertyDocument on https://zam052v01.zam.kfa-juelich.de:8080/EMI-UNICOREX/services/TargetSystemService?res=0de43fc9-5051-4266-9755-f16bbe0aa110
[2012-02-07 17:06:39,055] ERROR unicore.wsrflite.ReliableProxy : The root error was: org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[2012-02-07 17:06:39,055] DEBUG unicore.wsrflite.ReliableProxy : Stack trace
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java:336)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.handleRequest(ReliableProxy.java:121)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.doInvoke(ReliableProxy.java:101)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.invoke(ReliableProxy.java:69)
at $Proxy4.GetResourcePropertyDocument(Unknown Source)
at de.fzj.unicore.wsrflite.xmlbeans.client.BaseWSRFClient.GetResourcePropertyDocument(BaseWSRFClient.java:316)
at de.fzj.unicore.uas.client.TSSClient.getResourcePropertiesDocument(TSSClient.java:121)
at de.fzj.unicore.uas.client.TSSClient.getApplications(TSSClient.java:249)
at fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor.connect(UnicoreJobControlAdaptor.java:89)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:66)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:61)
at fr.in2p3.jsaga.impl.job.AbstractSyncJobFactoryImpl.doCreateJobServiceSync(AbstractSyncJobFactoryImpl.java:72)
at fr.in2p3.jsaga.impl.job.JobFactoryImpl.doCreateJobService(JobFactoryImpl.java:35)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:202)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:146)
at it.infn.ct.unicore.RunTest.main(RunTest.java:69)
[2012-02-07 17:06:39,071] ERROR unicore.client.BaseUASClient : Got Error: class org.codehaus.xfire.XFireRuntimeException Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
[2012-02-07 17:06:39,075] WARN unicore.client.TSSClient : Can't get applications from TSS.
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for CN=Emidio Giorgio, L=Catania, OU=Personal Certificate, O=INFN, C=IT on resource TargetSystemService[0de43fc9-5051-4266-9755-f16bbe0aa110][owner: CN=UNICORE Nagios Agent,OU=Juelich Supercomputing Centre,O=Forschungszentrum Juelich GmbH,L=Juelich,ST=NRW,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java:336)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.handleRequest(ReliableProxy.java:121)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.doInvoke(ReliableProxy.java:101)
at de.fzj.unicore.wsrflite.xfire.ReliableProxy.invoke(ReliableProxy.java:69)
at $Proxy4.GetResourcePropertyDocument(Unknown Source)
at de.fzj.unicore.wsrflite.xmlbeans.client.BaseWSRFClient.GetResourcePropertyDocument(BaseWSRFClient.java:316)
at de.fzj.unicore.uas.client.TSSClient.getResourcePropertiesDocument(TSSClient.java:121)
at de.fzj.unicore.uas.client.TSSClient.getApplications(TSSClient.java:249)
at fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor.connect(UnicoreJobControlAdaptor.java:89)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:66)
at fr.in2p3.jsaga.engine.factories.JobAdaptorFactory.connect(JobAdaptorFactory.java:61)
at fr.in2p3.jsaga.impl.job.AbstractSyncJobFactoryImpl.doCreateJobServiceSync(AbstractSyncJobFactoryImpl.java:72)
at fr.in2p3.jsaga.impl.job.JobFactoryImpl.doCreateJobService(JobFactoryImpl.java:35)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:202)
at org.ogf.saga.job.JobFactory.createJobService(JobFactory.java:146)
at it.infn.ct.unicore.RunTest.main(RunTest.java:69)
Error in creating jobService...
NoSuccess: java.lang.NullPointerException
Cause :java.lang.NullPointerException
Error in creating jobService...
java.lang.NullPointerException
Cause :null
Exception in thread "main" java.lang.NullPointerException
at it.infn.ct.unicore.RunTest.main(RunTest.java:94)
RE: Using JSAGA with UNICORE resources
-
Added by Scardaci Diego about 13 years ago
I did again the test using the UNICORE test-grid and I got a similar authentication error. Maybe, there's some problem in my session?
Here my code to create the session and the JobService:
System.setProperty("javax.net.ssl.trustStore", "/home/diego/.globus/testgrid-keystore.jks");
System.setProperty("javax.net.ssl.trustStorePassword", "unicore");
Session session = null;
Context context = null;
try {
session = SessionFactory.createSession(false);
context = ContextFactory.createContext("JKS");
context.setAttribute("Keystore","/home/diego/.globus/testgrid-keystore.jks");
context.setAttribute("KeystorePass", "unicore");
session.addContext(context);
System.out.println("DN="+context.getAttribute(Context.USERID));
} catch (Exception e) {
System.out.println("Error in creating session");
System.out.println(e.toString());
System.out.println("Cause :"+e.getCause());
}
JobService service = null;
try {
URL serviceURL = URLFactory.createURL("unicore://omiiei.zam.kfa-juelich.de:6000/?Target=ALPHA-SITE");//?res=f80f82e7-939c-4a3d-a04b-15a60edbd6c5");//SITE=EMI-UNICOREX/services/TargetSystemService?res=f80f82e7-939c-4a3d-a04b-15a60edbd6c5");
service = JobFactory.createJobService(session, serviceURL);
} catch (Exception e) {
System.out.println("Error in creating jobService...");
System.out.println(e.toString());
System.out.println("Cause :"+e.getCause());
}
Below my log.
Cheers,
Diego
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=64ca5799-f267-4009-a785-aa6b4bc091f1&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">64ca5799-f267-4009-a785-aa6b4bc091f1</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=607f45b8-c786-448b-b7df-428d388beb3e&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">607f45b8-c786-448b-b7df-428d388beb3e</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=c3ff4950-1a79-4957-95a4-6372eb4ca484&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">c3ff4950-1a79-4957-95a4-6372eb4ca484</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=a74b7363-bf7a-4f12-937b-70e88965f6b6&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">a74b7363-bf7a-4f12-937b-70e88965f6b6</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=6b557697-8089-41a7-ad54-f544b48b5509&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">6b557697-8089-41a7-ad54-f544b48b5509</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=14a1f323-dabc-40c3-9f58-e491d8e17ec4&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">14a1f323-dabc-40c3-9f58-e491d8e17ec4</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=c52ce630-e091-47a4-a700-884ab0da268a&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">c52ce630-e091-47a4-a700-884ab0da268a</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=f82950ad-bff9-4d2b-822c-4cbc411ade7f&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">f82950ad-bff9-4d2b-822c-4cbc411ade7f</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=ce8fabd3-31cd-49b7-b246-b961d6b89ae8&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">ce8fabd3-31cd-49b7-b246-b961d6b89ae8</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=43ccaccb-0e14-4733-b612-a6ff14027d96&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">43ccaccb-0e14-4733-b612-a6ff14027d96</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=def68779-4cf1-483a-936b-dcb19134d547&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">def68779-4cf1-483a-936b-dcb19134d547</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=806963f2-69c7-4cbd-a13a-df805173e613&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">806963f2-69c7-4cbd-a13a-df805173e613</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=d1140020-820f-45e5-b814-53dc6f21094a&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">d1140020-820f-45e5-b814-53dc6f21094a</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=9837bcac-4c10-4eb4-8d8b-04b2d4755983&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">9837bcac-4c10-4eb4-8d8b-04b2d4755983</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=b95a90d1-5de2-432e-9e93-e1c866074809&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">b95a90d1-5de2-432e-9e93-e1c866074809</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=aa0fd505-07a2-458f-907c-8ac0dad29e3b&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">aa0fd505-07a2-458f-907c-8ac0dad29e3b</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=7cd8b4d1-247c-46d0-92e4-8417bcc5bfb5&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">7cd8b4d1-247c-46d0-92e4-8417bcc5bfb5</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=e4bba80a-104b-4800-a32f-379a9761ad69&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">e4bba80a-104b-4800-a32f-379a9761ad69</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=1c9fe1ab-652e-4b6a-907d-7c1f463238c3&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">1c9fe1ab-652e-4b6a-907d-7c1f463238c3</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:TargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=e7ba09ac-f0b0-4504-ab8b-c88377885f31&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">e7ba09ac-f0b0-4504-ab8b-c88377885f31</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:TargetSystemReference>
<tsf:AccessibleTargetSystemReference>
<add:Address xmlns:add="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=e7ba09ac-f0b0-4504-ab8b-c88377885f31&lt;/add:Address>
<add:ReferenceParameters xmlns:add="http://www.w3.org/2005/08/addressing">
<unic:ResourceId xmlns:unic="http://www.unicore.eu/unicore6">e7ba09ac-f0b0-4504-ab8b-c88377885f31</unic:ResourceId>
</add:ReferenceParameters>
<add:Metadata xmlns:add="http://www.w3.org/2005/08/addressing">
<met:InterfaceName xmlns:x="http://unigrids.org/2006/04/services/reservation" xmlns:met="http://www.w3.org/2005/08/addressing/metadata">x:ResourceReservation</met:InterfaceName>
<unic:ServerIdentity xmlns:unic="http://www.unicore.eu/unicore6">CN=omiiei1.zam.kfa-juelich.de, OU=omii unicorex, OU=Forschungszentrum Juelich GmbH, O=GridGermany, C=DE</unic:ServerIdentity>
</add:Metadata>
</tsf:AccessibleTargetSystemReference>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Korn shell</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Version M 1993-12-28 q</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>OPTIONS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Blender</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">2.42</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue>-b</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>filename</jsdl:Type>
<jsdl:Description>The Blender source file</jsdl:Description>
<jsdl:MimeType/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SCENE</jsdl:Name>
<jsdl:IncarnatedValue>-S</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description>The name of the scene to be rendered (leave empty for default scene)</jsdl:Description>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>FORMAT</jsdl:Name>
<jsdl:IncarnatedValue>-F</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>choice</jsdl:Type>
<jsdl:Description>Output format</jsdl:Description>
<jsdl:ValidValue isRegex="false">PNG</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">BMP</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">TGA</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">IRIS</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">HAMX</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">JPEG</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">MOVIE</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">IRIZ</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">RAWTGA</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">AVIRAW</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">AVIJPEG</jsdl:ValidValue>
<jsdl:ValidValue isRegex="false">FRAMESERVER</jsdl:ValidValue>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>FRAME</jsdl:Name>
<jsdl:IncarnatedValue>-f</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Frame to render as still image</jsdl:Description>
<jsdl:Default>1</jsdl:Default>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ANIMATE</jsdl:Name>
<jsdl:IncarnatedValue>-a</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>boolean</jsdl:Type>
<jsdl:Description>Render an animation?</jsdl:Description>
<jsdl:Default>false</jsdl:Default>
<jsdl:Excludes>FRAME</jsdl:Excludes>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>START</jsdl:Name>
<jsdl:IncarnatedValue>-s</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Start frame for animation</jsdl:Description>
<jsdl:Default>1</jsdl:Default>
<jsdl:DependsOn>ANIMATE</jsdl:DependsOn>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>END</jsdl:Name>
<jsdl:IncarnatedValue>-e</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>End frame for animation</jsdl:Description>
<jsdl:Default>100</jsdl:Default>
<jsdl:DependsOn>ANIMATE</jsdl:DependsOn>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">JAVAC</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">5.0</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">POVRay</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">3.5</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue>+I</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>filename</jsdl:Type>
<jsdl:Description>The scene definition file</jsdl:Description>
<jsdl:MimeType>model/x-pov</jsdl:MimeType>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>TARGET</jsdl:Name>
<jsdl:IncarnatedValue>+O</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
<jsdl:MimeType>image/png</jsdl:MimeType>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>WIDTH</jsdl:Name>
<jsdl:IncarnatedValue>+W</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Width of the rendered image</jsdl:Description>
<jsdl:Default>320</jsdl:Default>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>HEIGHT</jsdl:Name>
<jsdl:IncarnatedValue>+H</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Height of the rendered image</jsdl:Description>
<jsdl:Default>200</jsdl:Default>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ANTIALIASING_THRESHOLD</jsdl:Name>
<jsdl:IncarnatedValue>+A</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Do antialiasing on the pixels until the difference between adjacent pixels is less than one tenth of this value.</jsdl:Description>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>INITIAL_FRAME_NUMBER</jsdl:Name>
<jsdl:IncarnatedValue>+KFI</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Specify the initial frame number for an animation.</jsdl:Description>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>FINAL_FRAME_NUMBER</jsdl:Name>
<jsdl:IncarnatedValue>+KFF</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Specify the final frame number for an animation. This must be set to a value other than 1 in order to render multiple frames at once.</jsdl:Description>
<jsdl:DependsOn>INITIAL_FRAME_NUMBER</jsdl:DependsOn>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SUBSET_START</jsdl:Name>
<jsdl:IncarnatedValue>+SF</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Render a subset of frames from an animation, starting at this frame.</jsdl:Description>
<jsdl:DependsOn>INITIAL_FRAME_NUMBER</jsdl:DependsOn>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SUBSET_END</jsdl:Name>
<jsdl:IncarnatedValue>+EF</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>int</jsdl:Type>
<jsdl:Description>Render a subset of frames from an animation, stopping at this frame.</jsdl:Description>
<jsdl:DependsOn>INITIAL_FRAME_NUMBER</jsdl:DependsOn>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>INITIAL_CLOCK_VALUE</jsdl:Name>
<jsdl:IncarnatedValue>+KI</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>double</jsdl:Type>
<jsdl:Description>Specify the clock value for the initial frame of an animation</jsdl:Description>
<jsdl:DependsOn>INITIAL_FRAME_NUMBER</jsdl:DependsOn>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>FINAL_CLOCK_VALUE</jsdl:Name>
<jsdl:IncarnatedValue>+KF</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>double</jsdl:Type>
<jsdl:Description>Specify the clock value for the final frame of an animation</jsdl:Description>
<jsdl:DependsOn>INITIAL_FRAME_NUMBER</jsdl:DependsOn>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">ANY_APPLICATION</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">1.0</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions"/>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Perl</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">5.8.8</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>DEBUG</jsdl:Name>
<jsdl:IncarnatedValue>-d</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>PROFILING</jsdl:Name>
<jsdl:IncarnatedValue>-d:DProf</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>VERBOSE</jsdl:Name>
<jsdl:IncarnatedValue>-c</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>OPTIONS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue>--</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Custom executable</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">1.0</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Date</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">1.0</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions"/>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">JAVA</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">5.0</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">ECHO</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">1.0</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Groovy</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">1.5.6-1</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">C shell</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">6.14.00</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>DEBUG</jsdl:Name>
<jsdl:IncarnatedValue>-x</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>VERBOSE</jsdl:Name>
<jsdl:IncarnatedValue>-v</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>OPTIONS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Bash shell</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">3.1.16</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>DEBUG</jsdl:Name>
<jsdl:IncarnatedValue>--debugger</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>VERBOSE</jsdl:Name>
<jsdl:IncarnatedValue>-v</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>OPTIONS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue>--</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<tss:ApplicationResource xmlns:tss="http://unigrids.org/2006/04/services/tss">
<jsdl:ApplicationName xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">Python Script</jsdl:ApplicationName>
<jsdl:ApplicationVersion xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl">2.4.2</jsdl:ApplicationVersion>
<typ:Metadata xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:Metadata xmlns:jsdl="http://www.unicore.eu/unicore/jsdl-extensions">
<jsdl:Argument>
<jsdl:Name>DEBUG</jsdl:Name>
<jsdl:IncarnatedValue>-d</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>VERBOSE</jsdl:Name>
<jsdl:IncarnatedValue>-v</jsdl:IncarnatedValue>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>OPTIONS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>SOURCE</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
<jsdl:Argument>
<jsdl:Name>ARGUMENTS</jsdl:Name>
<jsdl:IncarnatedValue/>
<jsdl:ArgumentMetadata>
<jsdl:Type>string</jsdl:Type>
<jsdl:Description/>
</jsdl:ArgumentMetadata>
</jsdl:Argument>
</jsdl:Metadata>
</typ:Metadata>
</tss:ApplicationResource>
<typ:UpSince xmlns:typ="http://unigrids.org/2006/04/types">2011-09-29T10:12:17.068+02:00</typ:UpSince>
<jsdl:IndividualPhysicalMemory xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>2061340</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1024</jsdl:LowerBound>
<jsdl:UpperBound>128000000</jsdl:UpperBound>
</jsdl:Range>
</jsdl:IndividualPhysicalMemory>
<jsdl:IndividualCPUTime xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>3600</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1</jsdl:LowerBound>
<jsdl:UpperBound>86400</jsdl:UpperBound>
</jsdl:Range>
</jsdl:IndividualCPUTime>
<jsdl:IndividualCPUCount xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>1.0</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1.0</jsdl:LowerBound>
<jsdl:UpperBound>1.0</jsdl:UpperBound>
</jsdl:Range>
</jsdl:IndividualCPUCount>
<jsdl:TotalResourceCount xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>1.0</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1.0</jsdl:LowerBound>
<jsdl:UpperBound>2.0</jsdl:UpperBound>
</jsdl:Range>
</jsdl:TotalResourceCount>
<jsdl:TotalCPUCount xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>1.0</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1.0</jsdl:LowerBound>
<jsdl:UpperBound>2.0</jsdl:UpperBound>
</jsdl:Range>
</jsdl:TotalCPUCount>
<jsdl:OperatingSystem xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:OperatingSystemType>
<jsdl:OperatingSystemName>LINUX</jsdl:OperatingSystemName>
</jsdl:OperatingSystemType>
<jsdl:OperatingSystemVersion>2.6.26</jsdl:OperatingSystemVersion>
<jsdl:Description>Debian GNU/Linux</jsdl:Description>
</jsdl:OperatingSystem>
<typ:Processor xmlns:typ="http://unigrids.org/2006/04/types">
<jsdl:CPUArchitecture xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:CPUArchitectureName>x86_64</jsdl:CPUArchitectureName>
</jsdl:CPUArchitecture>
<jsdl:IndividualCPUCount xmlns:jsdl="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:idb="http://www.fz-juelich.de/unicore/xnjs/idb">
<jsdl:Exact>1.0</jsdl:Exact>
<jsdl:Range>
<jsdl:LowerBound>1.0</jsdl:LowerBound>
<jsdl:UpperBound>1.0</jsdl:UpperBound>
</jsdl:Range>
</jsdl:IndividualCPUCount>
</typ:Processor>
<typ:AvailableResource xmlns:typ="http://unigrids.org/2006/04/types">
<typ:Name>ExclusiveExecution</typ:Name>
<typ:Description xsi:nil="true"/>
<typ:Type>boolean</typ:Type>
<typ:Default>false</typ:Default>
</typ:AvailableResource>
<tss:SupportsReservation xmlns:tss="http://unigrids.org/2006/04/services/tss">false</tss:SupportsReservation>
<tss:Xlogin xmlns:tss="http://unigrids.org/2006/04/services/tss">31121-1328632009</tss:Xlogin>
<tss:Xgroup xmlns:tss="http://unigrids.org/2006/04/services/tss">omii</tss:Xgroup>
<typ:Version xmlns:typ="http://unigrids.org/2006/04/types">1.4.1</typ:Version>
<bprp2:ResourcePropertyNames xmlns:bprp1="http://docs.oasis-open.org/wsrf/rl-2" xmlns:bprp2="http://schemas.ggf.org/ogsa/2006/05/wsrf-bp" xmlns:bprp3="http://unigrids.org/2006/04/services/tsf" xmlns:bprp4="http://unigrids.org/2006/04/types" xmlns:bprp5="http://schemas.ggf.org/jsdl/2005/11/jsdl" xmlns:bprp6="http://unigrids.org/2006/04/services/tss" xmlns:bprp7="http://www.unicore.eu/unicore/jsdl-extensions">bprp1:CurrentTime bprp2:WSResourceInterfaces bprp3:PerformanceData bprp4:Processor bprp3:TargetSystemReference bprp4:Version bprp5:IndividualCPUCount bprp6:Xgroup bprp2:FinalWSResourceInterface bprp5:TotalResourceCount bprp5:IndividualCPUTime bprp7:ExecutionEnvironmentDescription bprp1:TerminationTime bprp4:AvailableResource bprp4:SiteResource bprp6:ApplicationResource bprp4:UpSince bprp4:Security bprp6:Xlogin bprp6:SupportsReservation bprp3:AccessibleTargetSystemReference bprp5:TotalCPUCount bprp5:IndividualPhysicalMemory bprp3:Name bprp5:OperatingSystem bprp2:ResourcePropertyNames</bprp2:ResourcePropertyNames>
<wsrf:FinalWSResourceInterface xmlns:bprp1="http://unigrids.org/2006/04/services/tsf" xmlns:wsrf="http://schemas.ggf.org/ogsa/2006/05/wsrf-bp">bprp1:TargetSystemFactory</wsrf:FinalWSResourceInterface>
<wsrf:WSResourceInterfaces xmlns:bpri1="http://docs.oasis-open.org/wsrf/rlw-2" xmlns:bpri2="http://docs.oasis-open.org/wsrf/rpw-2" xmlns:bpri3="http://unigrids.org/2006/04/services/tsf" xmlns:wsrf="http://schemas.ggf.org/ogsa/2006/05/wsrf-bp">bpri1:ScheduledResourceTermination bpri2:GetResourceProperty bpri2:GetResourcePropertyDocument bpri1:ImmediateResourceTermination bpri2:QueryResourceProperties bpri3:TargetSystemFactory</wsrf:WSResourceInterfaces>
<rl:CurrentTime xmlns:rl="http://docs.oasis-open.org/wsrf/rl-2">2012-02-07T17:42:03.171+01:00</rl:CurrentTime>
<rl:TerminationTime xmlns:rl="http://docs.oasis-open.org/wsrf/rl-2">2014-09-29T10:12:16.964+02:00</rl:TerminationTime>
<typ:Security xmlns:typ="http://unigrids.org/2006/04/types">
<typ:TrustedCA>1.2.840.113549.1.9.1=#161970726f6a656374732d636140667a2d6a75656c6963682e6465,CN=FZJ-PROJECTS-CA,OU=ZAM,O=Research Centre Juelich (FZJ),L=Juelich,ST=NRW,C=DE</typ:TrustedCA>
<typ:TrustedCA>CN=DFN-Verein PCA Grid - G01,OU=DFN-PKI,O=DFN-Verein,C=DE</typ:TrustedCA>
<typ:TrustedCA>CN=DFN-Verein Server CA Grid - G01,OU=DFN-PKI,O=DFN-Verein,C=DE</typ:TrustedCA>
<typ:TrustedCA>1.2.840.113549.1.9.1=#161970726f6a656374732d636140667a2d6a75656c6963682e6465,CN=FZJ-PROJECTS-CA,OU=ZAM,O=Research Centre Juelich (FZJ),L=Juelich,ST=NRW,C=DE</typ:TrustedCA>
</typ:Security>
<tsf:PerformanceData>
<tsf:MeanTimeQueued>334</tsf:MeanTimeQueued>
<tsf:TSSType>DEFAULT</tsf:TSSType>
</tsf:PerformanceData>
</tsf:TargetSystemFactoryProperties>
</rp:GetResourcePropertyDocumentResponse>]
[2012-02-07 17:42:57,345] DEBUG fr.in2p3.jsaga.adaptor.unicore.job.UnicoreJobControlAdaptor : Found this TSS: https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be
[2012-02-07 17:42:57,366] DEBUG unicore.wsrflite.BaseWSRFClient : Calling service at wsaTo: https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be
[2012-02-07 17:42:57,379] DEBUG unicore.wsrflite.ReliableProxy : Method [GetResourcePropertyDocument] [<GetResourcePropertyDocument xmlns="http://docs.oasis-open.org/wsrf/rp-2"/>]
[2012-02-07 17:42:57,386] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Using alias <testgrid>
[2012-02-07 17:42:57,386] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Certificate chain 'testgrid':
[2012-02-07 17:42:57,386] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Certificate 1:
[2012-02-07 17:42:57,386] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Subject DN: EMAILADDRESS=diego.scardaci@ct.infn.it, CN=Diego-TestGrid, OU=--, O=--, L=--, ST=--, C=IT
[2012-02-07 17:42:57,386] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Signature Algorithm: MD5withRSA
[2012-02-07 17:42:57,387] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid from: Tue Feb 07 17:26:51 CET 2012
[2012-02-07 17:42:57,387] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid until: Fri Mar 09 17:26:51 CET 2012
[2012-02-07 17:42:57,387] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Issuer: EMAILADDRESS=unicore-info@fz-juelich.de, CN=Testgrid CA, OU=JSC, O=Forschungszentrum Juelich GmbH, L=Juelich, ST=NRW, C=DE
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Trusted certificate 'testgrid':
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Subject DN: EMAILADDRESS=diego.scardaci@ct.infn.it, CN=Diego-TestGrid, OU=--, O=--, L=--, ST=--, C=IT
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Signature Algorithm: MD5withRSA
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid from: Tue Feb 07 17:26:51 CET 2012
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid until: Fri Mar 09 17:26:51 CET 2012
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Issuer: EMAILADDRESS=unicore-info@fz-juelich.de, CN=Testgrid CA, OU=JSC, O=Forschungszentrum Juelich GmbH, L=Juelich, ST=NRW, C=DE
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Trusted certificate 'dfn-root':
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Subject DN: CN=DFN-Verein PCA Grid - G01, OU=DFN-PKI, O=DFN-Verein, C=DE
[2012-02-07 17:42:57,390] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Signature Algorithm: SHA1withRSA
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid from: Thu Jul 07 15:35:15 CEST 2005
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid until: Sat Sep 07 15:35:15 CEST 2013
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Issuer: CN=DFN-Verein PCA Grid - G01, OU=DFN-PKI, O=DFN-Verein, C=DE
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Trusted certificate 'projects-ca-fz-juelich':
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Subject DN: EMAILADDRESS=projects-ca@fz-juelich.de, CN=FZJ-PROJECTS-CA, OU=ZAM, O=Research Centre Juelich (FZJ), L=Juelich, ST=NRW, C=DE
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Signature Algorithm: MD5withRSA
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid from: Mon Dec 03 09:01:50 CET 2007
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Valid until: Sun Dec 01 09:01:50 CET 2013
[2012-02-07 17:42:57,391] DEBUG unicore.security.xfireutil.AuthSSLProtocolSocketFactory : Issuer: EMAILADDRESS=projects-ca@fz-juelich.de, CN=FZJ-PROJECTS-CA, OU=ZAM, O=Research Centre Juelich (FZJ), L=Juelich, ST=NRW, C=DE
[2012-02-07 17:42:57,449] DEBUG httpclient.wire.header : >> "POST /Alpha-Site/services/TargetSystemService?res=ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be HTTP/1.1[\r][\n]"
[2012-02-07 17:42:57,450] DEBUG httpclient.wire.header : >> "SOAPAction: "http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest"[\r][\n]"
[2012-02-07 17:42:57,450] DEBUG httpclient.wire.header : >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"
[2012-02-07 17:42:57,450] DEBUG httpclient.wire.header : >> "Connection: close[\r][\n]"
[2012-02-07 17:42:57,450] DEBUG httpclient.wire.header : >> "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; XFire Client +http://xfire.codehaus.org)[\r][\n]"
[2012-02-07 17:42:57,450] DEBUG httpclient.wire.header : >> "Host: omiiei.zam.kfa-juelich.de:6000[\r][\n]"
[2012-02-07 17:42:57,450] DEBUG httpclient.wire.header : >> "Expect: 100-continue[\r][\n]"
[2012-02-07 17:42:57,450] DEBUG httpclient.wire.header : >> "Content-Length: 1000[\r][\n]"
[2012-02-07 17:42:57,450] DEBUG httpclient.wire.header : >> "[\r][\n]"
[2012-02-07 17:42:57,710] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 17:42:57,714] DEBUG httpclient.wire.header : << "HTTP/1.1 100 Continue[\r][\n]"
[2012-02-07 17:42:57,714] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 17:42:57,715] DEBUG httpclient.wire.content : >> "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be&lt;/wsa:To&gt;&lt;wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequest&lt;/wsa:Action&gt;&lt;wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:F67861B7-AE84-AF0E-F3F8-94F9EA4519EF</wsa:MessageID><rpns0:ResourceId wsa:IsReferenceParameter="true" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:rpns0="http://www.unicore.eu/unicore6">ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be</rpns0:ResourceId></soap:Header><soap:Body><rp:GetResourcePropertyDocument xmlns:rp="http://docs.oasis-open.org/wsrf/rp-2" /></soap:Body></soap:Envelope>"
[2012-02-07 17:42:57,787] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 17:42:57,787] DEBUG httpclient.wire.header : << "HTTP/1.1 200 OK[\r][\n]"
[2012-02-07 17:42:57,788] DEBUG httpclient.wire.header : << "Content-Type: text/xml; charset=iso-8859-1[\r][\n]"
[2012-02-07 17:42:57,788] DEBUG httpclient.wire.header : << "Connection: close[\r][\n]"
[2012-02-07 17:42:57,788] DEBUG httpclient.wire.header : << "Server: Jetty(6.1.26)[\r][\n]"
[2012-02-07 17:42:57,788] DEBUG httpclient.wire.header : << "[\r][\n]"
[2012-02-07 17:42:57,788] DEBUG httpclient.wire.content : << "<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">http://www.w3.org/2005/08/addressing/anonymous&lt;/wsa:To&gt;&lt;wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/wsrf/rpw-2/GetResourcePropertyDocument/GetResourcePropertyDocumentRequestAck&lt;/wsa:Action&gt;&lt;wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:166EB17C-D5A6-2F91-016C-07D53B802CDA</wsa:MessageID><wsa:RelatesTo xmlns:wsa="http://www.w3.org/2005/08/addressing">urn:uuid:F67861B7-AE84-AF0E-F3F8-94F9EA4519EF</wsa:RelatesTo></soap:Header><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Access denied for EMAILADDRESS=diego.scardaci@ct.infn.it, CN=Diego-TestGrid, OU=--, O=--, L=--, ST=--, C=IT on resource TargetSystemService[ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be][owner: CN=Rebecca Breu,OU=JSC,OU=Forschungszentrum Juelich GmbH,O=GridGermany,C=DE]</faultstring></soap:Fault></soap:Body></soap:Envelope>"
[2012-02-07 17:42:57,794] ERROR unicore.wsrflite.ReliableProxy : Error making call for GetResourcePropertyDocument on https://omiiei.zam.kfa-juelich.de:6000/Alpha-Site/services/TargetSystemService?res=ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be
[2012-02-07 17:42:57,795] ERROR unicore.wsrflite.ReliableProxy : The root error was: org.codehaus.xfire.fault.XFireFault: Access denied for EMAILADDRESS=diego.scardaci@ct.infn.it, CN=Diego-TestGrid, OU=--, O=--, L=--, ST=--, C=IT on resource TargetSystemService[ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be][owner: CN=Rebecca Breu,OU=JSC,OU=Forschungszentrum Juelich GmbH,O=GridGermany,C=DE]
[2012-02-07 17:42:57,797] DEBUG unicore.wsrflite.ReliableProxy : Stack trace
org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Access denied for EMAILADDRESS=diego.scardaci@ct.infn.it, CN=Diego-TestGrid, OU=--, O=--, L=--, ST=--, C=IT on resource TargetSystemService[ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be][owner: CN=Rebecca Breu,OU=JSC,OU=Forschungszentrum Juelich GmbH,O=GridGermany,C=DE]
org.codehaus.xfire.fault.XFireFault: Access denied for EMAILADDRESS=diego.scardaci@ct.infn.it, CN=Diego-TestGrid, OU=--, O=--, L=--, ST=--, C=IT on resource TargetSystemService[ab3bd762-9d7f-49bb-b4cd-3fc923c0b8be][owner: CN=Rebecca Breu,OU=JSC,OU=Forschungszentrum Juelich GmbH,O=GridGermany,C=DE]
at org.codehaus.xfire.fault.Soap11FaultSerializer.readMessage(Soap11FaultSerializer.java:31)
at org.codehaus.xfire.fault.SoapFaultSerializer.readMessage(SoapFaultSerializer.java:28)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.checkForFault(ReadHeadersHandler.java:111)
at org.codehaus.xfire.soap.handler.ReadHeadersHandler.invoke(ReadHeadersHandler.java:67)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Client.onReceive(Client.java:406)
at org.codehaus.xfire.transport.http.HttpChannel.sendViaClient(HttpChannel.java:139)
at org.codehaus.xfire.transport.http.HttpChannel.send(HttpChannel.java:48)
at org.codehaus.xfire.handler.OutMessageSender.invoke(OutMessageSender.java:26)
at org.codehaus.xfire.handler.HandlerPipeline.invoke(HandlerPipeline.java:131)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:79)
at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:114)
at org.codehaus.xfire.client.Client.invoke(Client.java
RE: Using JSAGA with UNICORE resources
-
Added by Schwarz Lionel about 13 years ago
It is a bug in the Unicore adaptor which does use:
TSFClient.getTargetSystems() /* get all TSS /
instead of:
TSFClient.getAccessibleTargetSystems() / get all TSS allowed for the client */
That's why you were given unallowed TSS.
Fixed in 0.9.15