ref 11768: SAI - Manage system inputs

https://support.d4science.org/issues/11768

Added system inputs

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/statistical-algorithms-importer@167572 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2018-05-17 15:41:27 +00:00
parent d323fe7cb8
commit ffb1af4a77
4 changed files with 60 additions and 988 deletions

View File

@ -1,6 +1,7 @@
<ReleaseNotes>
<Changeset component="${groupId}.${artifactId}.1-11-0" date="2018-06-01">
<Change>Added Status control in Algorithm Generator [ticket #11750]</Change>
<Change>Added System parameter support [ticket #11768]</Change>
</Changeset>
<Changeset component="${groupId}.${artifactId}.1-10-0" date="2018-01-12">
<Change>Added support to Private algorithms [ticket #10779]</Change>

View File

@ -245,6 +245,18 @@ public class AlgorithmGenerator {
code.add(" environmentalvariables.add(\"" + globalVariable.getName() + "\");");
}
for (InputOutputVariables selVariable : project.getInputData().getListInputOutputVariables()) {
switch (selVariable.getIoType()) {
case INPUT:
if (selVariable.getDataType().compareTo(DataType.SYSTEM) == 0) {
code.add(" environmentalvariables.add(\"" + selVariable.getName() + "\");");
}
default:
break;
}
}
for (InputOutputVariables selVariable : project.getInputData().getListInputOutputVariables()) {
switch (selVariable.getIoType()) {
case INPUT:
@ -275,7 +287,7 @@ public class AlgorithmGenerator {
code.add(" return o;");
code.add(" }");
//createStatusCode(code);
// createStatusCode(code);
code.add("}");
return code;
@ -330,6 +342,12 @@ public class AlgorithmGenerator {
private void createInputParameters(ArrayList<String> code) {
for (GlobalVariables globalVariable : project.getInputData().getListGlobalVariables()) {
code.add(" inputs.add(new PrimitiveType(String.class.getName(), null,PrimitiveTypes.CONSTANT, \""
+ globalVariable.getName() + "\", \"" + globalVariable.getDescription() + "\", \""
+ globalVariable.getDefaultValue() + "\"));");
}
for (InputOutputVariables selVariable : project.getInputData().getListInputOutputVariables()) {
if (selVariable.getIoType().compareTo(IOType.INPUT) == 0) {
switch (selVariable.getDataType()) {
@ -396,6 +414,12 @@ public class AlgorithmGenerator {
+ selVariable.getDefaultValue() + "\"));");
break;
case SYSTEM:
code.add(
" inputs.add(new PrimitiveType(String.class.getName(), null,PrimitiveTypes.CONSTANT, \""
+ selVariable.getName() + "\", \"" + selVariable.getDescription() + "\", \""
+ selVariable.getDefaultValue() + "\"));");
break;
default:
break;
@ -448,8 +472,8 @@ public class AlgorithmGenerator {
+ "\",new PrimitiveType(String.class.getName(), new File(outputValues.get(\""
+ selVariable.getName() + "\")), PrimitiveTypes.STRING, \"" + selVariable.getName()
+ "\", \"" + selVariable.getName() + "\"));");
break;
case SYSTEM:
default:
break;
@ -483,37 +507,36 @@ public class AlgorithmGenerator {
}
return packageUrl;
}
/*
private void createStatusCode(ArrayList<String> code) {
code.add("");
code.add(" @Override");
code.add(" public float getStatus() {");
code.add(" try {");
code.add(" String scriptSubfolder = \"\";");
code.add(" System.out.println(\"Status MainScriptName: \"+mainScriptName);");
code.add(" int idx = mainScriptName.lastIndexOf(\"/\");");
code.add(" if (idx > -1)");
code.add(" scriptSubfolder = mainScriptName.substring(0, idx);");
code.add(" System.out.println(\"Status ScriptSubfolder: \"+scriptSubfolder);");
code.add(" File statusFile = new File(config.getConfigPath(), scriptSubfolder + ");
code.add(" \"/status.txt\");");
code.add(" System.out.println(\"Status file exists: \"+statusFile.exists());");
code.add(" System.out.println(\"Status file AbsolutePath: \"+statusFile.getAbsolutePath());");
code.add(" System.out.println(\"Status file Path: \"+statusFile.toPath());");
code.add(" if (statusFile.exists()) {");
code.add(" status = Float.parseFloat(Files.readAllLines(statusFile.toPath()).get(0));");
code.add(" }");
code.add(" } catch (Exception e) {");
code.add("");
code.add(" }");
code.add(" System.out.println(\"Status Value: \"+status);");
code.add(" return status;");
code.add(" }");
code.add("");
}
*/
* private void createStatusCode(ArrayList<String> code) {
*
* code.add(""); code.add(" @Override");
* code.add(" public float getStatus() {"); code.add(" try {");
* code.add(" String scriptSubfolder = \"\";"); code.
* add(" System.out.println(\"Status MainScriptName: \"+mainScriptName);"
* );
* code.add(" int idx = mainScriptName.lastIndexOf(\"/\");");
* code.add(" if (idx > -1)"); code.
* add(" scriptSubfolder = mainScriptName.substring(0, idx);"
* ); code.
* add(" System.out.println(\"Status ScriptSubfolder: \"+scriptSubfolder);"
* ); code.
* add(" File statusFile = new File(config.getConfigPath(), scriptSubfolder + "
* ); code.add(" \"/status.txt\");"); code.
* add(" System.out.println(\"Status file exists: \"+statusFile.exists());"
* ); code.
* add(" System.out.println(\"Status file AbsolutePath: \"+statusFile.getAbsolutePath());"
* ); code.
* add(" System.out.println(\"Status file Path: \"+statusFile.toPath());"
* ); code.add(" if (statusFile.exists()) {"); code.
* add(" status = Float.parseFloat(Files.readAllLines(statusFile.toPath()).get(0));"
* ); code.add(" }");
* code.add(" } catch (Exception e) {"); code.add("");
* code.add(" }");
* code.add(" System.out.println(\"Status Value: \"+status);");
* code.add(" return status;"); code.add(" }"); code.add("");
*
* }
*/
}

View File

@ -10,7 +10,8 @@ import java.util.List;
*
*/
public enum DataType {
STRING("String"), INTEGER("Integer"), DOUBLE("Double"), ENUMERATED("Enumerated"), FILE("File"), BOOLEAN("Boolean");
STRING("String"), INTEGER("Integer"), DOUBLE("Double"), ENUMERATED("Enumerated"), FILE("File"), BOOLEAN(
"Boolean"), SYSTEM("System");
private String id;

953
test.log
View File

@ -1,953 +0,0 @@
2017-06-14 14:35:14 DEBUG ISResourceTest:50 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><availableprojectconfigurations><language>R</language><support>REditor</support></availableprojectconfigurations><availableprojectconfigurations><language>Linux</language><support>BlackBox</support></availableprojectconfigurations><availableprojectconfigurations><language>Octave</language><support>BlackBox</support></availableprojectconfigurations></saidescriptor>
2017-06-14 14:36:11 DEBUG ISResourceTest:49 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><availableprojectconfigurations><language>R</language><support>REditor</support></availableprojectconfigurations><availableprojectconfigurations><language>Linux</language><support>BlackBox</support></availableprojectconfigurations><availableprojectconfigurations><language>Octave</language><support>BlackBox</support></availableprojectconfigurations></saidescriptor>
2017-06-14 14:36:11 ERROR ISResourceTest:55 - org.gcube.portlets.user.statisticalalgorithmsimporter.server.is.SAIDescriptorJAXB cannot be cast to org.gcube.portlets.user.statisticalalgorithmsimporter.shared.descriptor.SAIDescriptor
java.lang.ClassCastException: org.gcube.portlets.user.statisticalalgorithmsimporter.server.is.SAIDescriptorJAXB cannot be cast to org.gcube.portlets.user.statisticalalgorithmsimporter.shared.descriptor.SAIDescriptor
at org.gcube.portlets.user.statisticalalgorithmsimporter.ISResourceTest.test(ISResourceTest.java:50)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:76)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
2017-06-14 14:36:58 DEBUG ISResourceTest:49 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><availableprojectconfigurations><language>R</language><support>REditor</support></availableprojectconfigurations><availableprojectconfigurations><language>Linux</language><support>BlackBox</support></availableprojectconfigurations><availableprojectconfigurations><language>Octave</language><support>BlackBox</support></availableprojectconfigurations></saidescriptor>
2017-06-14 14:36:58 DEBUG ISResourceTest:52 - SAIDescriptor: SAIDescriptorJAXB [availableprojectconfigurations=[AvailableProjectConfigJAXB [language=R, support=REditor], AvailableProjectConfigJAXB [language=Linux, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-06-14 14:42:05 DEBUG ISResourceTest:48 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><availableprojectconfiguration><language>R</language><support>REditor</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-06-14 14:42:05 DEBUG ISResourceTest:51 - SAIDescriptor: SAIDescriptorJAXB [availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REditor], AvailableProjectConfigJAXB [language=Linux, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-06-14 14:47:07 DEBUG ISResourceTest:48 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><availableprojectconfiguration><language>R</language><support>REditor</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-06-14 14:47:07 DEBUG ISResourceTest:51 - SAIDescriptor: SAIDescriptorJAXB [availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REditor], AvailableProjectConfigJAXB [language=Linux, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-17 12:50:38 DEBUG ISResourceTest:59 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-17 12:50:39 DEBUG ISResourceTest:63 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-17 12:51:01 DEBUG ISResourceTest:59 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-17 12:51:01 DEBUG ISResourceTest:63 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-17 18:29:07 DEBUG ISResourceTest:62 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-17 18:29:07 DEBUG ISResourceTest:66 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-18 15:02:21 INFO SessionUtil:73 - No credential found in session, use test user!
2017-07-18 15:02:21 INFO SessionUtil:86 - Set SecurityToken: ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-18 15:02:21 INFO SessionUtil:88 - Set ScopeProvider: /gcube/devNext/NextNext
2017-07-18 15:02:21 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@5c1daea6
2017-07-18 15:02:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 34
2017-07-18 15:02:21 INFO SessionUtil:190 - ServiceCredentials: ServiceCredentials [userName=giancarlo.panichi, fullName=null, name=null, lastName=null, email=null, scope=/gcube/devNext/NextNext, groupId=null, groupName=null, userAvatarURL=null, token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548]
2017-07-18 15:02:21 DEBUG StatAlgoImporterServiceImpl:108 - hello()
2017-07-18 15:02:21 DEBUG StatAlgoImporterServiceImpl:112 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=null, groupName=null, scope=/gcube/devNext/NextNext, userEmailAddress=null, userFullName=null]
2017-07-18 15:02:22 INFO SessionUtil:73 - No credential found in session, use test user!
2017-07-18 15:02:22 INFO SessionUtil:86 - Set SecurityToken: ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-18 15:02:22 INFO SessionUtil:88 - Set ScopeProvider: /gcube/devNext/NextNext
2017-07-18 15:02:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 37
2017-07-18 15:02:22 INFO SessionUtil:190 - ServiceCredentials: ServiceCredentials [userName=giancarlo.panichi, fullName=null, name=null, lastName=null, email=null, scope=/gcube/devNext/NextNext, groupId=null, groupName=null, userAvatarURL=null, token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548]
2017-07-18 15:02:22 DEBUG StatAlgoImporterServiceImpl:131 - getSAIDescriptor()
2017-07-18 15:02:22 INFO BuildSAIDescriptor:29 - Debug Mode
2017-07-18 15:02:22 DEBUG BuildSAIDescriptor:167 - SAIDescriptor: SAIDescriptor [poolManagerConfig=PoolManagerConfig [enable=false], remoteTemplateFile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableProjectConfigurations=[ProjectSetup [language=R, projectSupportType=REdit], ProjectSetup [language=R-blackbox, projectSupportType=BlackBox], ProjectSetup [language=Java, projectSupportType=BlackBox], ProjectSetup [language=Knime-Workflow, projectSupportType=BlackBox], ProjectSetup [language=Linux-compiled, projectSupportType=BlackBox], ProjectSetup [language=Octave, projectSupportType=BlackBox], ProjectSetup [language=Python, projectSupportType=BlackBox], ProjectSetup [language=Windows-compiled, projectSupportType=BlackBox], ProjectSetup [language=Pre-Installed, projectSupportType=BashEdit]]]
2017-07-18 15:06:18 INFO SessionUtil:73 - No credential found in session, use test user!
2017-07-18 15:06:18 INFO SessionUtil:86 - Set SecurityToken: ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-18 15:06:18 INFO SessionUtil:88 - Set ScopeProvider: /gcube/devNext/NextNext
2017-07-18 15:06:18 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@103094a3
2017-07-18 15:06:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 32
2017-07-18 15:06:18 INFO SessionUtil:190 - ServiceCredentials: ServiceCredentials [userName=giancarlo.panichi, fullName=null, name=null, lastName=null, email=null, scope=/gcube/devNext/NextNext, groupId=null, groupName=null, userAvatarURL=null, token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548]
2017-07-18 15:06:18 DEBUG StatAlgoImporterServiceImpl:108 - hello()
2017-07-18 15:06:18 DEBUG StatAlgoImporterServiceImpl:112 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=null, groupName=null, scope=/gcube/devNext/NextNext, userEmailAddress=null, userFullName=null]
2017-07-18 15:06:20 INFO SessionUtil:73 - No credential found in session, use test user!
2017-07-18 15:06:20 INFO SessionUtil:86 - Set SecurityToken: ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-18 15:06:20 INFO SessionUtil:88 - Set ScopeProvider: /gcube/devNext/NextNext
2017-07-18 15:06:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 36
2017-07-18 15:06:20 INFO SessionUtil:190 - ServiceCredentials: ServiceCredentials [userName=giancarlo.panichi, fullName=null, name=null, lastName=null, email=null, scope=/gcube/devNext/NextNext, groupId=null, groupName=null, userAvatarURL=null, token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548]
2017-07-18 15:06:20 DEBUG StatAlgoImporterServiceImpl:131 - getSAIDescriptor()
2017-07-18 15:06:20 INFO BuildSAIDescriptor:29 - Debug Mode
2017-07-18 15:06:20 DEBUG BuildSAIDescriptor:167 - SAIDescriptor: SAIDescriptor [poolManagerConfig=PoolManagerConfig [enable=false], remoteTemplateFile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableProjectConfigurations=[ProjectSetup [language=R, projectSupportType=REdit], ProjectSetup [language=R-blackbox, projectSupportType=BlackBox], ProjectSetup [language=Java, projectSupportType=BlackBox], ProjectSetup [language=Knime-Workflow, projectSupportType=BlackBox], ProjectSetup [language=Linux-compiled, projectSupportType=BlackBox], ProjectSetup [language=Octave, projectSupportType=BlackBox], ProjectSetup [language=Python, projectSupportType=BlackBox], ProjectSetup [language=Windows-compiled, projectSupportType=BlackBox], ProjectSetup [language=Pre-Installed, projectSupportType=BashEdit]]]
2017-07-18 15:37:21 INFO SessionUtil:73 - No credential found in session, use test user!
2017-07-18 15:37:21 INFO SessionUtil:86 - Set SecurityToken: ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-18 15:37:21 INFO SessionUtil:88 - Set ScopeProvider: /gcube/devNext/NextNext
2017-07-18 15:37:21 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@577869f8
2017-07-18 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 34
2017-07-18 15:37:21 INFO SessionUtil:190 - ServiceCredentials: ServiceCredentials [userName=giancarlo.panichi, fullName=null, name=null, lastName=null, email=null, scope=/gcube/devNext/NextNext, groupId=null, groupName=null, userAvatarURL=null, token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548]
2017-07-18 15:37:21 DEBUG StatAlgoImporterServiceImpl:108 - hello()
2017-07-18 15:37:21 DEBUG StatAlgoImporterServiceImpl:112 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=null, groupName=null, scope=/gcube/devNext/NextNext, userEmailAddress=null, userFullName=null]
2017-07-18 15:37:22 INFO SessionUtil:73 - No credential found in session, use test user!
2017-07-18 15:37:22 INFO SessionUtil:86 - Set SecurityToken: ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-18 15:37:22 INFO SessionUtil:88 - Set ScopeProvider: /gcube/devNext/NextNext
2017-07-18 15:37:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 36
2017-07-18 15:37:22 INFO SessionUtil:190 - ServiceCredentials: ServiceCredentials [userName=giancarlo.panichi, fullName=null, name=null, lastName=null, email=null, scope=/gcube/devNext/NextNext, groupId=null, groupName=null, userAvatarURL=null, token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548]
2017-07-18 15:37:22 DEBUG StatAlgoImporterServiceImpl:131 - getSAIDescriptor()
2017-07-18 15:37:22 INFO BuildSAIDescriptor:29 - Debug Mode
2017-07-18 15:37:22 DEBUG BuildSAIDescriptor:167 - SAIDescriptor: SAIDescriptor [poolManagerConfig=PoolManagerConfig [enable=false], remoteTemplateFile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableProjectConfigurations=[ProjectSetup [language=R, projectSupportType=REdit], ProjectSetup [language=R-blackbox, projectSupportType=BlackBox], ProjectSetup [language=Java, projectSupportType=BlackBox], ProjectSetup [language=Knime-Workflow, projectSupportType=BlackBox], ProjectSetup [language=Linux-compiled, projectSupportType=BlackBox], ProjectSetup [language=Octave, projectSupportType=BlackBox], ProjectSetup [language=Python, projectSupportType=BlackBox], ProjectSetup [language=Windows-compiled, projectSupportType=BlackBox], ProjectSetup [language=Pre-Installed, projectSupportType=BashEdit]]]
2017-07-19 16:46:32 DEBUG InformationSystemUtils:178 - Retrieve SocialNetworkingService
2017-07-19 16:46:32 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@28f67ac7
2017-07-19 16:46:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 16:46:32 DEBUG InformationSystemUtils:183 - SocialNetworkingService resource in scope: /gcube/devNext/NextNext
2017-07-19 16:46:33 INFO DefaultScanner:63 - matched 15 resources from 175 urls in 258 ms
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-07-19 16:46:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-07-19 16:46:33 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 16:46:33 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-07-19 16:46:33 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 16:46:33 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 16:46:33 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource
2017-07-19 16:46:33 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'Portal') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'SocialNetworking') )
return $entry0ValueAuth/..
2017-07-19 16:46:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@378542de
2017-07-19 16:46:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@11bd0f3b
2017-07-19 16:46:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1eb5174b
2017-07-19 16:46:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5fd4f8f5
2017-07-19 16:46:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@53976f5c
2017-07-19 16:46:34 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource in 344 ms
2017-07-19 16:46:34 DEBUG InformationSystemUtils:193 - Resources: [GCoreEndpoint [id=4b101571-34f9-417f-b444-f1861895b1c5, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=b3d3e00b-d750-415a-b5a9-9912720fba91], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=6/5/17 12:22 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=9bdf1903-9778-4976-aebf-e6d37fb3195b, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=0901d7d2-5a71-4780-ada1-4ac2badd4f4e], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=5/26/17 2:26 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=e9ab9193-6df6-425b-9111-7b15ebc4e733, scopes=[/gcube/devNext/NextNext, /gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=46ea149d-2f85-4328-a515-204654475659], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/7/17 12:33 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 16:46:34 DEBUG InformationSystemUtils:211 - SocialNetworking Endpoints map: {jersey-servlet=Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], SocialNetworking-remote-management=Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]}
2017-07-19 16:46:34 DEBUG InformationSystemUtils:215 - SocialNetworking Endpoint: null
2017-07-19 16:46:34 DEBUG InformationSystemUtils:238 - SocialNetworking URI: null
2017-07-19 16:46:34 INFO ISResourceTest:90 - SocialNetworkingService: null
2017-07-19 16:46:34 DEBUG ISResourceTest:65 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-19 16:46:34 DEBUG ISResourceTest:69 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-19 16:49:19 DEBUG ISResourceTest:65 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-19 16:49:19 DEBUG ISResourceTest:69 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-19 16:49:19 DEBUG InformationSystemUtils:178 - Retrieve SocialNetworkingService
2017-07-19 16:49:19 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@78c03f1f
2017-07-19 16:49:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 16:49:19 DEBUG InformationSystemUtils:183 - SocialNetworkingService resource in scope: /gcube/devNext/NextNext
2017-07-19 16:49:20 INFO DefaultScanner:63 - matched 15 resources from 175 urls in 289 ms
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-07-19 16:49:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-07-19 16:49:20 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 16:49:20 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-07-19 16:49:20 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 16:49:20 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 16:49:20 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource
2017-07-19 16:49:20 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'Portal') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'SocialNetworking') )
return $entry0ValueAuth/..
2017-07-19 16:49:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@be35cd9
2017-07-19 16:49:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@a3d8174
2017-07-19 16:49:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@272ed83b
2017-07-19 16:49:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@625732
2017-07-19 16:49:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@cad498c
2017-07-19 16:49:20 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource in 176 ms
2017-07-19 16:49:20 DEBUG InformationSystemUtils:193 - Resources: [GCoreEndpoint [id=4b101571-34f9-417f-b444-f1861895b1c5, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=b3d3e00b-d750-415a-b5a9-9912720fba91], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=6/5/17 12:22 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=9bdf1903-9778-4976-aebf-e6d37fb3195b, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=0901d7d2-5a71-4780-ada1-4ac2badd4f4e], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=5/26/17 2:26 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=e9ab9193-6df6-425b-9111-7b15ebc4e733, scopes=[/gcube/devNext/NextNext, /gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=46ea149d-2f85-4328-a515-204654475659], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/7/17 12:33 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 16:49:20 DEBUG InformationSystemUtils:211 - SocialNetworking Endpoints map: {jersey-servlet=Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], SocialNetworking-remote-management=Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]}
2017-07-19 16:49:20 DEBUG InformationSystemUtils:215 - SocialNetworking Endpoint: null
2017-07-19 16:49:20 DEBUG InformationSystemUtils:238 - SocialNetworking URI: null
2017-07-19 16:49:20 INFO ISResourceTest:90 - SocialNetworkingService: null
2017-07-19 16:49:20 DEBUG InformationSystemUtils:102 - Retrieve dataminer-pool-manager
2017-07-19 16:49:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 16:49:20 DEBUG InformationSystemUtils:107 - Retrieve DataMiner Pool Manager resource in scope: /gcube/devNext/NextNext
2017-07-19 16:49:20 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 16:49:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 16:49:20 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 16:49:20 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2017-07-19 16:49:20 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2017-07-19 16:49:20 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 112 ms
2017-07-19 16:49:20 DEBUG InformationSystemUtils:117 - Resources: [GCoreEndpoint [id=8b408743-9ee8-4c14-9ebc-e282491152a4, scopes=[/gcube/devNext/NextNext, /gcube/devNext], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=a7b55832-5716-4fd1-95d6-84905cbeabce], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/18/17 3:28 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 16:49:20 DEBUG InformationSystemUtils:135 - DataMiner PoolManager Endpoints map: {REST-API=Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], dataminer-pool-manager-remote-management=Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]}
2017-07-19 16:49:20 DEBUG InformationSystemUtils:139 - DataMiner PoolManager Endpoint: Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api]
2017-07-19 16:49:20 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 16:49:20 INFO ISResourceTest:109 - DataMinerPoolManager: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 16:56:32 DEBUG ISResourceTest:65 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-19 16:56:32 DEBUG ISResourceTest:69 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-19 16:56:32 DEBUG InformationSystemUtils:178 - Retrieve SocialNetworkingService
2017-07-19 16:56:32 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@78c03f1f
2017-07-19 16:56:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 16:56:32 DEBUG InformationSystemUtils:183 - SocialNetworkingService resource in scope: /gcube/devNext/NextNext
2017-07-19 16:56:33 INFO DefaultScanner:63 - matched 15 resources from 175 urls in 271 ms
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-07-19 16:56:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-07-19 16:56:33 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 16:56:33 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-07-19 16:56:33 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 16:56:33 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 16:56:33 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource
2017-07-19 16:56:33 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'Portal') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'SocialNetworking') )
return $entry0ValueAuth/..
2017-07-19 16:56:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@be35cd9
2017-07-19 16:56:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@a3d8174
2017-07-19 16:56:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@272ed83b
2017-07-19 16:56:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@625732
2017-07-19 16:56:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@cad498c
2017-07-19 16:56:33 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource in 176 ms
2017-07-19 16:56:33 DEBUG InformationSystemUtils:193 - Resources: [GCoreEndpoint [id=4b101571-34f9-417f-b444-f1861895b1c5, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=b3d3e00b-d750-415a-b5a9-9912720fba91], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=6/5/17 12:22 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=9bdf1903-9778-4976-aebf-e6d37fb3195b, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=0901d7d2-5a71-4780-ada1-4ac2badd4f4e], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=5/26/17 2:26 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=e9ab9193-6df6-425b-9111-7b15ebc4e733, scopes=[/gcube/devNext/NextNext, /gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=46ea149d-2f85-4328-a515-204654475659], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/7/17 12:33 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 16:56:33 DEBUG InformationSystemUtils:211 - SocialNetworking Endpoints map: {jersey-servlet=Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], SocialNetworking-remote-management=Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]}
2017-07-19 16:56:33 DEBUG InformationSystemUtils:215 - SocialNetworking Endpoint: Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest]
2017-07-19 16:56:33 DEBUG InformationSystemUtils:238 - SocialNetworking URI: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 16:56:33 INFO ISResourceTest:90 - SocialNetworkingService: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 16:56:33 DEBUG InformationSystemUtils:102 - Retrieve dataminer-pool-manager
2017-07-19 16:56:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 16:56:33 DEBUG InformationSystemUtils:107 - Retrieve DataMiner Pool Manager resource in scope: /gcube/devNext/NextNext
2017-07-19 16:56:33 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 16:56:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 16:56:33 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 16:56:33 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2017-07-19 16:56:33 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2017-07-19 16:56:33 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 71 ms
2017-07-19 16:56:33 DEBUG InformationSystemUtils:117 - Resources: [GCoreEndpoint [id=8b408743-9ee8-4c14-9ebc-e282491152a4, scopes=[/gcube/devNext/NextNext, /gcube/devNext], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=a7b55832-5716-4fd1-95d6-84905cbeabce], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/18/17 3:28 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 16:56:33 DEBUG InformationSystemUtils:135 - DataMiner PoolManager Endpoints map: {REST-API=Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], dataminer-pool-manager-remote-management=Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]}
2017-07-19 16:56:33 DEBUG InformationSystemUtils:139 - DataMiner PoolManager Endpoint: Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api]
2017-07-19 16:56:33 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 16:56:33 INFO ISResourceTest:109 - DataMinerPoolManager: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 18:47:24 DEBUG InformationSystemUtils:102 - Retrieve dataminer-pool-manager
2017-07-19 18:47:24 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@58651fd0
2017-07-19 18:47:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 18:47:24 DEBUG InformationSystemUtils:107 - Retrieve DataMiner Pool Manager resource in scope: /gcube/devNext/NextNext
2017-07-19 18:47:25 INFO DefaultScanner:63 - matched 15 resources from 11 urls in 188 ms
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-07-19 18:47:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-07-19 18:47:25 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 18:47:25 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-07-19 18:47:25 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 18:47:25 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 18:47:25 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2017-07-19 18:47:25 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2017-07-19 18:47:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@38102d01
2017-07-19 18:47:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@4e3958e7
2017-07-19 18:47:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5c90e579
2017-07-19 18:47:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@38e79ae3
2017-07-19 18:47:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@291b4bf5
2017-07-19 18:47:25 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 183 ms
2017-07-19 18:47:25 DEBUG InformationSystemUtils:117 - Resources: [GCoreEndpoint [id=8b408743-9ee8-4c14-9ebc-e282491152a4, scopes=[/gcube/devNext/NextNext, /gcube/devNext], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=a7b55832-5716-4fd1-95d6-84905cbeabce], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/18/17 3:28 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 18:47:25 DEBUG InformationSystemUtils:135 - DataMiner PoolManager Endpoints map: {REST-API=Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], dataminer-pool-manager-remote-management=Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]}
2017-07-19 18:47:25 DEBUG InformationSystemUtils:139 - DataMiner PoolManager Endpoint: Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api]
2017-07-19 18:47:25 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 18:47:25 INFO ISResourceTest:109 - DataMinerPoolManager: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 18:47:25 DEBUG InformationSystemUtils:178 - Retrieve SocialNetworkingService
2017-07-19 18:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 18:47:25 DEBUG InformationSystemUtils:183 - SocialNetworkingService resource in scope: /gcube/devNext/NextNext
2017-07-19 18:47:25 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 18:47:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 18:47:25 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 18:47:25 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource
2017-07-19 18:47:25 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'Portal') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'SocialNetworking') )
return $entry0ValueAuth/..
2017-07-19 18:47:25 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource in 67 ms
2017-07-19 18:47:25 DEBUG InformationSystemUtils:193 - Resources: [GCoreEndpoint [id=4b101571-34f9-417f-b444-f1861895b1c5, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=b3d3e00b-d750-415a-b5a9-9912720fba91], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=6/5/17 12:22 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=9bdf1903-9778-4976-aebf-e6d37fb3195b, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=0901d7d2-5a71-4780-ada1-4ac2badd4f4e], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=5/26/17 2:26 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=e9ab9193-6df6-425b-9111-7b15ebc4e733, scopes=[/gcube/devNext/NextNext, /gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=46ea149d-2f85-4328-a515-204654475659], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/7/17 12:33 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 18:47:25 DEBUG InformationSystemUtils:211 - SocialNetworking Endpoints map: {jersey-servlet=Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], SocialNetworking-remote-management=Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]}
2017-07-19 18:47:25 DEBUG InformationSystemUtils:215 - SocialNetworking Endpoint: Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest]
2017-07-19 18:47:25 DEBUG InformationSystemUtils:238 - SocialNetworking URI: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 18:47:25 INFO ISResourceTest:90 - SocialNetworkingService: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 18:47:25 DEBUG ISResourceTest:65 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-19 18:47:25 DEBUG ISResourceTest:69 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-19 18:48:57 DEBUG InformationSystemUtils:178 - Retrieve SocialNetworkingService
2017-07-19 18:48:57 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@58651fd0
2017-07-19 18:48:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 18:48:57 DEBUG InformationSystemUtils:183 - SocialNetworkingService resource in scope: /gcube/devNext/NextNext
2017-07-19 18:48:58 INFO DefaultScanner:63 - matched 15 resources from 11 urls in 188 ms
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-07-19 18:48:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-07-19 18:48:58 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 18:48:58 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-07-19 18:48:58 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 18:48:58 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 18:48:58 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource
2017-07-19 18:48:58 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'Portal') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'SocialNetworking') )
return $entry0ValueAuth/..
2017-07-19 18:48:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@38102d01
2017-07-19 18:48:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@4e3958e7
2017-07-19 18:48:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5c90e579
2017-07-19 18:48:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@38e79ae3
2017-07-19 18:48:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@291b4bf5
2017-07-19 18:48:58 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource in 198 ms
2017-07-19 18:48:58 DEBUG InformationSystemUtils:193 - Resources: [GCoreEndpoint [id=4b101571-34f9-417f-b444-f1861895b1c5, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=b3d3e00b-d750-415a-b5a9-9912720fba91], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=6/5/17 12:22 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=9bdf1903-9778-4976-aebf-e6d37fb3195b, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=0901d7d2-5a71-4780-ada1-4ac2badd4f4e], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=5/26/17 2:26 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=e9ab9193-6df6-425b-9111-7b15ebc4e733, scopes=[/gcube/devNext/NextNext, /gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=46ea149d-2f85-4328-a515-204654475659], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/7/17 12:33 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 18:48:58 DEBUG InformationSystemUtils:211 - SocialNetworking Endpoints map: {jersey-servlet=Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], SocialNetworking-remote-management=Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]}
2017-07-19 18:48:58 DEBUG InformationSystemUtils:215 - SocialNetworking Endpoint: Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest]
2017-07-19 18:48:58 DEBUG InformationSystemUtils:238 - SocialNetworking URI: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 18:48:58 INFO ISResourceTest:90 - SocialNetworkingService: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 18:48:58 DEBUG InformationSystemUtils:102 - Retrieve dataminer-pool-manager
2017-07-19 18:48:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 18:48:58 DEBUG InformationSystemUtils:107 - Retrieve DataMiner Pool Manager resource in scope: /gcube/devNext/NextNext
2017-07-19 18:48:58 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 18:48:58 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 18:48:58 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 18:48:58 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2017-07-19 18:48:58 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2017-07-19 18:48:58 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 71 ms
2017-07-19 18:48:58 DEBUG InformationSystemUtils:117 - Resources: [GCoreEndpoint [id=8b408743-9ee8-4c14-9ebc-e282491152a4, scopes=[/gcube/devNext/NextNext, /gcube/devNext], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=a7b55832-5716-4fd1-95d6-84905cbeabce], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/18/17 3:28 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 18:48:58 DEBUG InformationSystemUtils:135 - DataMiner PoolManager Endpoints map: {REST-API=Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], dataminer-pool-manager-remote-management=Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]}
2017-07-19 18:48:58 DEBUG InformationSystemUtils:139 - DataMiner PoolManager Endpoint: Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api]
2017-07-19 18:48:58 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 18:48:58 INFO ISResourceTest:109 - DataMinerPoolManager: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 18:48:58 DEBUG ISResourceTest:65 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-19 18:48:58 DEBUG ISResourceTest:69 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-19 19:31:18 DEBUG SocialNetworkingTest:29 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:31:18 ERROR SocialNetworkingTest:46 - Error sending message to administrators
2017-07-19 19:33:34 DEBUG SocialNetworkingTest:32 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:33:34 ERROR SocialNetworkingTest:49 - Error sending message to administrators
2017-07-19 19:33:34 ERROR SocialNetworkingTest:66 - Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
java.io.IOException: Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1890)
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1885)
at java.security.AccessController.doPrivileged(Native Method)
at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1884)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1457)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:51)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.io.IOException: Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1840)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:45)
... 19 more
2017-07-19 19:35:33 DEBUG SocialNetworkingTest:32 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:35:33 ERROR SocialNetworkingTest:49 - Error sending message to administrators
2017-07-19 19:35:33 ERROR SocialNetworkingTest:66 - Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
java.io.IOException: Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1890)
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1885)
at java.security.AccessController.doPrivileged(Native Method)
at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1884)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1457)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:51)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.io.IOException: Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1840)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:45)
... 19 more
2017-07-19 19:37:02 DEBUG SocialNetworkingTest:32 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:37:02 ERROR SocialNetworkingTest:49 - Error sending message to administrators
2017-07-19 19:37:02 ERROR SocialNetworkingTest:67 - Already connected
java.lang.IllegalStateException: Already connected
at java.net.URLConnection.setDoInput(URLConnection.java:870)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:50)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
2017-07-19 19:37:24 DEBUG SocialNetworkingTest:32 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:37:24 ERROR SocialNetworkingTest:50 - Error sending message to administrators
2017-07-19 19:37:24 ERROR SocialNetworkingTest:68 - Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
java.io.IOException: Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1890)
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1885)
at java.security.AccessController.doPrivileged(Native Method)
at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1884)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1457)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:53)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.io.IOException: Server returned HTTP response code: 500 for URL: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1840)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:46)
... 19 more
2017-07-19 19:39:58 DEBUG SocialNetworkingTest:32 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:39:58 ERROR SocialNetworkingTest:61 - Error sending message to administrators
2017-07-19 19:39:58 INFO SocialNetworkingTest:66 - SocialNetworkingService retrieve error
2017-07-19 19:39:58 DEBUG SocialNetworkingTest:72 - SocialNetworkingService error: { "success" : false, "message" : "HTTP 415 Unsupported Media Type", "result" : null}
2017-07-19 19:47:25 DEBUG SocialNetworkingTest:32 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:47:25 ERROR SocialNetworkingTest:62 - Error sending message to administrators
2017-07-19 19:47:25 INFO SocialNetworkingTest:67 - SocialNetworkingService retrieve error
2017-07-19 19:47:25 DEBUG SocialNetworkingTest:73 - SocialNetworkingService error: Unrecognized token 'input': was expecting ('true', 'false' or 'null') at [Source: org.glassfish.jersey.message.internal.ReaderInterceptorExecutor$UnCloseableInputStream@19ab44de; line: 1, column: 7]
2017-07-19 19:47:52 DEBUG SocialNetworkingTest:32 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:47:52 ERROR SocialNetworkingTest:62 - Error sending message to administrators
2017-07-19 19:47:52 INFO SocialNetworkingTest:67 - SocialNetworkingService retrieve error
2017-07-19 19:47:52 DEBUG SocialNetworkingTest:73 - SocialNetworkingService error: Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included in string value at [Source: org.glassfish.jersey.message.internal.ReaderInterceptorExecutor$UnCloseableInputStream@3f81f7f3; line: 1, column: 239] (through reference chain: org.gcube.portal.social.networking.ws.inputs.MessageInputBean["body"])
2017-07-19 19:51:38 DEBUG SocialNetworkingTest:32 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 19:51:38 ERROR SocialNetworkingTest:62 - Error sending message to administrators
2017-07-19 19:51:38 INFO SocialNetworkingTest:67 - SocialNetworkingService retrieve error
2017-07-19 19:51:38 DEBUG SocialNetworkingTest:73 - SocialNetworkingService error: Unexpected character ('K' (code 75)): was expecting comma to separate OBJECT entries at [Source: org.glassfish.jersey.message.internal.ReaderInterceptorExecutor$UnCloseableInputStream@39f95f05; line: 1, column: 1074]
2017-07-19 20:01:56 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:01:56 ERROR SocialNetworkingTest:85 - Expected a ',' or '}' at character 1073 of {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 "KnimeBlackBox""}
org.json.JSONException: Expected a ',' or '}' at character 1073 of {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 "KnimeBlackBox""}
at org.json.JSONTokener.syntaxError(JSONTokener.java:451)
at org.json.JSONObject.<init>(JSONObject.java:222)
at org.json.JSONObject.<init>(JSONObject.java:326)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:42)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
2017-07-19 20:02:14 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:02:14 ERROR SocialNetworkingTest:85 - Expected a ',' or '}' at character 1073 of {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 "KnimeBlackBox""}
org.json.JSONException: Expected a ',' or '}' at character 1073 of {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 "KnimeBlackBox""}
at org.json.JSONTokener.syntaxError(JSONTokener.java:451)
at org.json.JSONObject.<init>(JSONObject.java:222)
at org.json.JSONObject.<init>(JSONObject.java:326)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:42)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
2017-07-19 20:03:08 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:03:08 ERROR SocialNetworkingTest:86 - Expected a ',' or '}' at character 1073 of {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 "KnimeBlackBox""}
org.json.JSONException: Expected a ',' or '}' at character 1073 of {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 "KnimeBlackBox""}
at org.json.JSONTokener.syntaxError(JSONTokener.java:451)
at org.json.JSONObject.<init>(JSONObject.java:222)
at org.json.JSONObject.<init>(JSONObject.java:326)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:34)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
2017-07-19 20:06:07 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:06:07 DEBUG SocialNetworkingTest:35 - {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 \"KnimeBlackBox\""}
2017-07-19 20:06:10 ERROR SocialNetworkingTest:67 - Error sending message to administrators
2017-07-19 20:06:10 ERROR SocialNetworkingTest:86 -
java.lang.NullPointerException
at java.io.Reader.<init>(Reader.java:78)
at java.io.InputStreamReader.<init>(InputStreamReader.java:72)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:69)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
2017-07-19 20:08:18 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:08:18 DEBUG SocialNetworkingTest:35 - {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 \"KnimeBlackBox\""}
2017-07-19 20:08:19 ERROR SocialNetworkingTest:65 - Error sending message to administrators
2017-07-19 20:08:19 ERROR SocialNetworkingTest:84 -
java.lang.NullPointerException
at java.io.Reader.<init>(Reader.java:78)
at java.io.InputStreamReader.<init>(InputStreamReader.java:72)
at org.gcube.portlets.user.statisticalalgorithmsimporter.SocialNetworkingTest.testMessage(SocialNetworkingTest.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
2017-07-19 20:09:20 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:09:20 DEBUG SocialNetworkingTest:36 - {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 \"KnimeBlackBox\""}
2017-07-19 20:09:21 INFO SocialNetworkingTest:52 - Response Code: 201
2017-07-19 20:12:03 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:12:03 DEBUG SocialNetworkingTest:36 - {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 \"KnimeBlackBox\""}
2017-07-19 20:12:04 INFO SocialNetworkingTest:52 - Response Code: 201
2017-07-19 20:12:04 INFO SocialNetworkingTest:54 - Mesage send to administrators
2017-07-19 20:12:04 INFO SocialNetworkingTest:59 - SocialNetworkingService retrieve response
2017-07-19 20:12:04 DEBUG SocialNetworkingTest:63 - SocialNetworkingService response: { "success" : true, "message" : null, "result" : "651ebede-2562-4ce3-955d-d99624b95367"}
2017-07-19 20:23:10 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:23:10 DEBUG SocialNetworkingTest:36 - {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 \"KnimeBlackBox\""}
2017-07-19 20:23:12 INFO SocialNetworkingTest:52 - Response Code: 201
2017-07-19 20:23:12 INFO SocialNetworkingTest:54 - Mesage send to administrators
2017-07-19 20:23:12 INFO SocialNetworkingTest:59 - SocialNetworkingService retrieve response
2017-07-19 20:23:12 DEBUG SocialNetworkingTest:63 - SocialNetworkingService response: { "success" : true, "message" : null, "result" : "6feb952e-ac5a-4cb4-9ecf-ec6047151804"}
2017-07-19 20:23:12 DEBUG InformationSystemUtils:178 - Retrieve SocialNetworkingService
2017-07-19 20:23:12 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@58651fd0
2017-07-19 20:23:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 20:23:12 DEBUG InformationSystemUtils:183 - SocialNetworkingService resource in scope: /gcube/devNext/NextNext
2017-07-19 20:23:12 INFO DefaultScanner:63 - matched 15 resources from 11 urls in 186 ms
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-07-19 20:23:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-07-19 20:23:12 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 20:23:12 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-07-19 20:23:12 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 20:23:13 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 20:23:13 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource
2017-07-19 20:23:13 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'Portal') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'SocialNetworking') )
return $entry0ValueAuth/..
2017-07-19 20:23:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@37883b97
2017-07-19 20:23:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@77f80c04
2017-07-19 20:23:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@58ea606c
2017-07-19 20:23:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@63070bab
2017-07-19 20:23:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2d2ffcb7
2017-07-19 20:23:13 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource in 211 ms
2017-07-19 20:23:13 DEBUG InformationSystemUtils:193 - Resources: [GCoreEndpoint [id=4b101571-34f9-417f-b444-f1861895b1c5, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=b3d3e00b-d750-415a-b5a9-9912720fba91], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=6/5/17 12:22 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=9bdf1903-9778-4976-aebf-e6d37fb3195b, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=0901d7d2-5a71-4780-ada1-4ac2badd4f4e], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=5/26/17 2:26 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=e9ab9193-6df6-425b-9111-7b15ebc4e733, scopes=[/gcube/devNext/NextNext, /gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=46ea149d-2f85-4328-a515-204654475659], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/7/17 12:33 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 20:23:13 DEBUG InformationSystemUtils:211 - SocialNetworking Endpoints map: {jersey-servlet=Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], SocialNetworking-remote-management=Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]}
2017-07-19 20:23:13 DEBUG InformationSystemUtils:215 - SocialNetworking Endpoint: Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest]
2017-07-19 20:23:13 DEBUG InformationSystemUtils:238 - SocialNetworking URI: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 20:23:13 INFO ISResourceTest:90 - SocialNetworkingService: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 20:23:13 DEBUG InformationSystemUtils:102 - Retrieve dataminer-pool-manager
2017-07-19 20:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 20:23:13 DEBUG InformationSystemUtils:107 - Retrieve DataMiner Pool Manager resource in scope: /gcube/devNext/NextNext
2017-07-19 20:23:13 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 20:23:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 20:23:13 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 20:23:13 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2017-07-19 20:23:13 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2017-07-19 20:23:13 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 75 ms
2017-07-19 20:23:13 DEBUG InformationSystemUtils:117 - Resources: [GCoreEndpoint [id=8b408743-9ee8-4c14-9ebc-e282491152a4, scopes=[/gcube/devNext/NextNext, /gcube/devNext], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=a7b55832-5716-4fd1-95d6-84905cbeabce], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/18/17 3:28 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 20:23:13 DEBUG InformationSystemUtils:135 - DataMiner PoolManager Endpoints map: {REST-API=Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], dataminer-pool-manager-remote-management=Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]}
2017-07-19 20:23:13 DEBUG InformationSystemUtils:139 - DataMiner PoolManager Endpoint: Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api]
2017-07-19 20:23:13 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 20:23:13 INFO ISResourceTest:109 - DataMinerPoolManager: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 20:23:13 DEBUG ISResourceTest:65 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-19 20:23:13 DEBUG ISResourceTest:69 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-07-19 20:28:12 DEBUG SocialNetworkingTest:33 - SocialNetworkingService request=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest/2/messages/write-message?gcube-token=ae1208f0-210d-47c9-9b24-d3f2dfcce05f-98187548
2017-07-19 20:28:12 DEBUG SocialNetworkingTest:36 - {"subject":"[SAI] New software publication requested","recipients":[{"id":"roberto.cirillo"},{"id":"ngalante"},{"id":"lucio.lelii"},{"id":"gianpaolo.coro"},{"id":"giancarlo.panichi"},{"id":"scarponi"}],"body":"Username: giancarlo.panichi\nFull Name: Giancarlo Panichi\nEmail: g.panichi@isti.cnr.it\n\nin VRE: /gcube/devNext/NextNext\n\nhas requested to publish the algorithm: \nLanguage: Knime-Workflow\nAlgorithm Name: KNIMEBLACKBOX\nClass Name: org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox\nAlgorithm Description: KnimeBlackBox\nAlgorithm Category: BLACK_BOX\n\nInterpreter Version: 3.2.1\n\nwith the following original jar: http://data-d.d4science.org/YUxwK1NwdlA4b3JLYjVkUVNpTzNZU0xta2Fic1VzaytHbWJQNStIS0N6Yz0\nadmin copy jar: http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0\n\nInstaller: \n./addAlgorithm.sh KNIMEBLACKBOX BLACK_BOX org.gcube.dataanalysis.executor.rscripts.KnimeBlackBox /gcube/devNext/NextNext transducerers N http://data-d.d4science.org/czlwQkNPTEJYSGRMemxpcXplVXYzZUJ5eEZyT2ExcDRHbWJQNStIS0N6Yz0 \"KnimeBlackBox\""}
2017-07-19 20:28:14 INFO SocialNetworkingTest:52 - Response Code: 201
2017-07-19 20:28:14 INFO SocialNetworkingTest:54 - Mesage send to administrators
2017-07-19 20:28:14 INFO SocialNetworkingTest:59 - SocialNetworkingService retrieve response
2017-07-19 20:28:14 DEBUG SocialNetworkingTest:63 - SocialNetworkingService response: { "success" : true, "message" : null, "result" : "f184fcb3-5bdc-44fe-b103-db5935cf9196"}
2017-07-19 20:28:14 DEBUG InformationSystemUtils:178 - Retrieve SocialNetworkingService
2017-07-19 20:28:14 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@58651fd0
2017-07-19 20:28:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 20:28:14 DEBUG InformationSystemUtils:183 - SocialNetworkingService resource in scope: /gcube/devNext/NextNext
2017-07-19 20:28:15 INFO DefaultScanner:63 - matched 15 resources from 11 urls in 200 ms
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-07-19 20:28:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-07-19 20:28:15 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 20:28:15 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-07-19 20:28:15 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 20:28:15 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 20:28:15 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource
2017-07-19 20:28:15 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'Portal') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'SocialNetworking') )
return $entry0ValueAuth/..
2017-07-19 20:28:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@37883b97
2017-07-19 20:28:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@77f80c04
2017-07-19 20:28:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@58ea606c
2017-07-19 20:28:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@63070bab
2017-07-19 20:28:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2d2ffcb7
2017-07-19 20:28:15 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource in 184 ms
2017-07-19 20:28:15 DEBUG InformationSystemUtils:193 - Resources: [GCoreEndpoint [id=4b101571-34f9-417f-b444-f1861895b1c5, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=b3d3e00b-d750-415a-b5a9-9912720fba91], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=6/5/17 12:22 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=9bdf1903-9778-4976-aebf-e6d37fb3195b, scopes=[/gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=0901d7d2-5a71-4780-ada1-4ac2badd4f4e], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=5/26/17 2:26 PM, terminationTime=, status=down, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]], GCoreEndpoint [id=e9ab9193-6df6-425b-9111-7b15ebc4e733, scopes=[/gcube/devNext/NextNext, /gcube/preprod, /gcube/devNext, /gcube, /gcube/devsec, /gcube/devsec/SmartCamera, /gcube/devsec/devVRE], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.0.0-SNAPSHOT, ghn=[id=46ea149d-2f85-4328-a515-204654475659], service=[id=SocialNetworkingPortal2.0.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/7/17 12:33 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 20:28:15 DEBUG InformationSystemUtils:211 - SocialNetworking Endpoints map: {jersey-servlet=Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], SocialNetworking-remote-management=Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]}
2017-07-19 20:28:15 DEBUG InformationSystemUtils:215 - SocialNetworking Endpoint: Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest]
2017-07-19 20:28:15 DEBUG InformationSystemUtils:238 - SocialNetworking URI: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 20:28:15 INFO ISResourceTest:90 - SocialNetworkingService: http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest
2017-07-19 20:28:15 DEBUG InformationSystemUtils:102 - Retrieve dataminer-pool-manager
2017-07-19 20:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-07-19 20:28:15 DEBUG InformationSystemUtils:107 - Retrieve DataMiner Pool Manager resource in scope: /gcube/devNext/NextNext
2017-07-19 20:28:15 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-07-19 20:28:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-07-19 20:28:15 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-07-19 20:28:15 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2017-07-19 20:28:15 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2017-07-19 20:28:15 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 63 ms
2017-07-19 20:28:15 DEBUG InformationSystemUtils:117 - Resources: [GCoreEndpoint [id=8b408743-9ee8-4c14-9ebc-e282491152a4, scopes=[/gcube/devNext/NextNext, /gcube/devNext], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=a7b55832-5716-4fd1-95d6-84905cbeabce], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=7/18/17 3:28 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-07-19 20:28:15 DEBUG InformationSystemUtils:135 - DataMiner PoolManager Endpoints map: {REST-API=Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api], dataminer-pool-manager-remote-management=Endpoint [name=dataminer-pool-manager-remote-management, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/gcube/resource]}
2017-07-19 20:28:15 DEBUG InformationSystemUtils:139 - DataMiner PoolManager Endpoint: Endpoint [name=REST-API, uri=http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api]
2017-07-19 20:28:15 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 20:28:15 INFO ISResourceTest:109 - DataMinerPoolManager: http://node2-d-d4s.d4science.org:8080/dataminer-pool-manager-2.0.0-SNAPSHOT/api
2017-07-19 20:28:15 DEBUG ISResourceTest:65 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-07-19 20:28:15 DEBUG ISResourceTest:69 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-10-10 10:48:24 DEBUG ISResourceTest:65 - <?xml version="1.0" encoding="UTF-8" standalone="yes"?><saidescriptor><poolmanager><enable>true</enable></poolmanager><remotetemplatefile>http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R</remotetemplatefile><availableprojectconfiguration><language>R</language><support>REdit</support></availableprojectconfiguration><availableprojectconfiguration><language>Linux-compiled</language><support>BlackBox</support></availableprojectconfiguration><availableprojectconfiguration><language>Octave</language><support>BlackBox</support></availableprojectconfiguration></saidescriptor>
2017-10-10 10:48:24 DEBUG ISResourceTest:69 - SAIDescriptor: SAIDescriptorJAXB [poolmanager=PoolManagerJAXB [enable=true], remotetemplatefile=http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/RConfiguration/RD4SFunctions/SAITemplateForExternalInvocation.R, availableprojectconfiguration=[AvailableProjectConfigJAXB [language=R, support=REdit], AvailableProjectConfigJAXB [language=Linux-compiled, support=BlackBox], AvailableProjectConfigJAXB [language=Octave, support=BlackBox]]]
2017-10-10 10:48:24 DEBUG InformationSystemUtils:177 - Retrieve SocialNetworkingService
2017-10-10 10:48:24 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@544fe44c
2017-10-10 10:48:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-10-10 10:48:24 DEBUG InformationSystemUtils:182 - SocialNetworkingService resource in scope: /gcube/devNext/NextNext
2017-10-10 10:48:25 INFO DefaultScanner:63 - matched 16 resources from 170 urls in 269 ms
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/socialisti.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-10-10 10:48:25 INFO ServiceMapScanner:62 - overwriting older map (v.1.0.7-SNAPSHOT) with newer map (v.1.0.7-SNAPSHOT) for /d4science.research-infrastructures.eu/D4Research
2017-10-10 10:48:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-10-10 10:48:25 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-10-10 10:48:25 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-10-10 10:48:25 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-10-10 10:48:26 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-10-10 10:48:26 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource
2017-10-10 10:48:26 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'Portal') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'SocialNetworking') )
return $entry0ValueAuth/..
2017-10-10 10:48:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@61386958
2017-10-10 10:48:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@49dc7102
2017-10-10 10:48:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@10959ece
2017-10-10 10:48:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@65f095f8
2017-10-10 10:48:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@346d61be
2017-10-10 10:48:26 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'Portal') and ($resource/Profile/ServiceName/text() eq 'SocialNetworking') return $resource in 334 ms
2017-10-10 10:48:26 DEBUG InformationSystemUtils:192 - Resources: [GCoreEndpoint [id=4fbe51b7-0096-40ba-8724-34f253c401c6, scopes=[/gcube/devNext, /gcube, /gcube/devsec], type=RunningInstance, version=0.4.x, profile=[description=SocialNetworking Service, version=2.1.0-SNAPSHOT, ghn=[id=5a4ec6bc-6a64-40d5-8f51-c340f41b93bd], service=[id=SocialNetworkingPortal2.1.0-SNAPSHOT], serviceName=SocialNetworking, serviceClass=Portal, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=9/21/17 11:31 AM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=jersey-servlet, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/rest], Endpoint [name=SocialNetworking-remote-management, uri=http://socialnetworking-d-d4s.d4science.org:80/social-networking-library-ws/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-10-10 10:48:26 DEBUG InformationSystemUtils:235 - SocialNetworking URI: null
2017-10-10 10:48:26 INFO ISResourceTest:90 - SocialNetworkingService: null
2017-10-10 10:48:26 DEBUG InformationSystemUtils:101 - Retrieve dataminer-pool-manager
2017-10-10 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-10-10 10:48:26 DEBUG InformationSystemUtils:106 - Retrieve DataMiner Pool Manager resource in scope: /gcube/devNext/NextNext
2017-10-10 10:48:26 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-10-10 10:48:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-10-10 10:48:26 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy35
2017-10-10 10:48:26 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2017-10-10 10:48:26 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2017-10-10 10:48:26 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 73 ms
2017-10-10 10:48:26 DEBUG InformationSystemUtils:118 - Resources: [GCoreEndpoint [id=a13cd300-a66e-4f9d-b2cc-a4229b148d8a, scopes=[/gcube/devNext, /gcube/devsec, /gcube], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=96550b2e-09e9-4c4e-9bac-2f59ecaff1e7], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=10/9/17 5:55 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://dm-pool-manager-dev.d4science.org:80/dataminer-pool-manager/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://dm-pool-manager-dev.d4science.org:80/dataminer-pool-manager/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-10-10 10:48:26 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: null
2017-10-10 10:48:26 INFO ISResourceTest:109 - DataMinerPoolManager: null
2017-10-10 10:49:56 DEBUG InformationSystemUtils:101 - Retrieve dataminer-pool-manager
2017-10-10 10:49:56 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@71c7db30
2017-10-10 10:49:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devNext/NextNext in thread 1
2017-10-10 10:49:56 DEBUG InformationSystemUtils:106 - Retrieve DataMiner Pool Manager resource in scope: /gcube/devNext/NextNext
2017-10-10 10:49:57 INFO DefaultScanner:63 - matched 16 resources from 170 urls in 289 ms
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/socialisti.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2017-10-10 10:49:57 INFO ServiceMapScanner:62 - overwriting older map (v.1.0.7-SNAPSHOT) with newer map (v.1.0.7-SNAPSHOT) for /d4science.research-infrastructures.eu/D4Research
2017-10-10 10:49:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2017-10-10 10:49:57 INFO ICClient:75 - connectinfg to http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2017-10-10 10:49:57 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://node22.d.d4science.research-infrastructures.eu:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2017-10-10 10:49:57 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2017-10-10 10:49:57 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy36
2017-10-10 10:49:57 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2017-10-10 10:49:57 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/gcube/devNext/NextNext',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/gcube/devNext',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2017-10-10 10:49:57 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@19d481b
2017-10-10 10:49:57 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@4d910fd6
2017-10-10 10:49:57 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@77eca502
2017-10-10 10:49:57 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@61386958
2017-10-10 10:49:57 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@49dc7102
2017-10-10 10:49:57 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 179 ms
2017-10-10 10:49:57 DEBUG InformationSystemUtils:118 - Resources: [GCoreEndpoint [id=a13cd300-a66e-4f9d-b2cc-a4229b148d8a, scopes=[/gcube/devNext, /gcube/devsec, /gcube], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=96550b2e-09e9-4c4e-9bac-2f59ecaff1e7], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=10/9/17 5:55 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://dm-pool-manager-dev.d4science.org:80/dataminer-pool-manager/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://dm-pool-manager-dev.d4science.org:80/dataminer-pool-manager/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2017-10-10 10:49:57 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: null
2017-10-10 10:49:57 INFO ISResourceTest:109 - DataMinerPoolManager: null
2018-01-17 12:59:38 DEBUG InformationSystemUtils:101 - Retrieve dataminer-pool-manager
2018-01-17 12:59:38 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@71c7db30
2018-01-17 12:59:38 DEBUG DefaultScopeProvider:38 - setting scope /d4science.research-infrastructures.eu/ParthenosVO/PARTHENOS_LAB in thread 1
2018-01-17 12:59:38 DEBUG InformationSystemUtils:106 - Retrieve DataMiner Pool Manager resource in scope: /d4science.research-infrastructures.eu/ParthenosVO/PARTHENOS_LAB
2018-01-17 12:59:39 INFO DefaultScanner:63 - matched 16 resources from 170 urls in 236 ms
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/socialisti.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devsec.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/farm.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/edison.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/sobigdata.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcube.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/openaire.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/smartarea.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4science.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/gcubeapps.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/isti.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/devnext.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/parthenosvo.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/cnr.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/d4research.servicemap
2018-01-17 12:59:39 INFO ServiceMapScanner:62 - overwriting older map (v.1.0.7-SNAPSHOT) with newer map (v.1.0.7-SNAPSHOT) for /d4science.research-infrastructures.eu/D4Research
2018-01-17 12:59:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/.m2/repository/org/gcube/core/common-scope-maps/1.0.7-SNAPSHOT/common-scope-maps-1.0.7-SNAPSHOT.jar!/preprod.servicemap
2018-01-17 12:59:39 INFO ICClient:75 - connectinfg to http://collector-parthenosvo.d4science.org:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess
2018-01-17 12:59:39 INFO StubFactory:147 - fetching wsdl for XQueryAccessService at http://collector-parthenosvo.d4science.org:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl
2018-01-17 12:59:39 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub
2018-01-17 12:59:40 DEBUG MethodRetriever:18 - for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub the proxy class is com.sun.proxy.$Proxy36
2018-01-17 12:59:40 INFO ICClient:57 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource
2018-01-17 12:59:40 INFO Helper:200 - submitting filtered query: declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; declare namespace functx = "http://www.functx.com"; declare function functx:is-value-in-sequence ( $value as xs:anyAtomicType? , $seq as xs:anyAtomicType* ) as xs:boolean { $value = $seq } ;
for $entry0ValueAuth in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource/Scopes
where (functx:is-value-in-sequence('/d4science.research-infrastructures.eu/ParthenosVO/PARTHENOS_LAB',$entry0ValueAuth/child::*[local-name()='Scope']/text()) or functx:is-value-in-sequence('/d4science.research-infrastructures.eu/ParthenosVO',$entry0ValueAuth/child::*[local-name()='Scope']/text())) and ( ($entry0ValueAuth/../Profile/ServiceClass/text() eq 'DataAnalysis') and ($entry0ValueAuth/../Profile/ServiceName/text() eq 'dataminer-pool-manager') )
return $entry0ValueAuth/..
2018-01-17 12:59:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@140c9f39
2018-01-17 12:59:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.AuthorizationHandler@7690781
2018-01-17 12:59:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2e222612
2018-01-17 12:59:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7671cb68
2018-01-17 12:59:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@68c72235
2018-01-17 12:59:40 INFO ICClient:65 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource where ($resource/Profile/ServiceClass/text() eq 'DataAnalysis') and ($resource/Profile/ServiceName/text() eq 'dataminer-pool-manager') return $resource in 251 ms
2018-01-17 12:59:40 DEBUG InformationSystemUtils:118 - Resources: [GCoreEndpoint [id=86981339-1a07-4eb3-9919-c42344e6dfc8, scopes=[/d4science.research-infrastructures.eu/ParthenosVO/ParthenosLab, /d4science.research-infrastructures.eu/SoBigData/SoBigDataLab, /d4science.research-infrastructures.eu/D4Research, /d4science.research-infrastructures.eu/gCubeApps/RPrototypingLab, /d4science.research-infrastructures.eu/SoBigData, /d4science.research-infrastructures.eu/gCubeApps/ICCAT_BFT-E, /d4science.research-infrastructures.eu/D4Research/FoodborneOutbreak, /d4science.research-infrastructures.eu/D4Research/AgroClimaticModelling, /d4science.research-infrastructures.eu/gCubeApps/ScalableDataMining, /d4science.research-infrastructures.eu/D4Research/RAKIP_portal, /d4science.research-infrastructures.eu/gCubeApps/FAO_TunaAtlas, /d4science.research-infrastructures.eu/ParthenosVO, /d4science.research-infrastructures.eu/gCubeApps/StockAssessment, /d4science.research-infrastructures.eu/gCubeApps, /d4science.research-infrastructures.eu/D4Research/Sinay, /d4science.research-infrastructures.eu/D4Research/StatnMap, /d4science.research-infrastructures.eu/D4Research/IOTC_SS3, /d4science.research-infrastructures.eu/D4Research/FoodSecurity, /d4science.research-infrastructures.eu/D4Research/TextCrowd], type=RunningInstance, version=0.4.x, profile=[description=, version=0.0.1, ghn=[id=5ddf1091-87d2-4c38-b288-7ac3ed19cdc3], service=[id=dataminer-pool-managerDataAnalysis0.0.1], serviceName=dataminer-pool-manager, serviceClass=DataAnalysis, runningInstanceInterfaces=[], platform=null, deploymentData=[instanceName=null, localPath=null, activationTime=12/19/17 3:08 PM, terminationTime=, status=ready, messageState=null, plugins=[]], functions=[], endpoints=[Endpoint [name=REST-API, uri=http://dm-pool-manager-proto.d4science.org:80/dataminer-pool-manager/api], Endpoint [name=dataminer-pool-manager-remote-management, uri=http://dm-pool-manager-proto.d4science.org:80/dataminer-pool-manager/gcube/resource]], specificData=[doc: null], accountings=[]]]]
2018-01-17 12:59:40 DEBUG InformationSystemUtils:162 - DataMiner PoolManager URI: null
2018-01-17 12:59:40 INFO ISResourceTest:109 - DataMinerPoolManager: null