Difference between revisions of "How to Interact with the Statistical Manager by client"

From Gcube Wiki
Jump to: navigation, search
(Related Links)
(Related Links)
Line 21: Line 21:
  
 
= Related Links =
 
= Related Links =
[[https://gcube.wiki.gcube-system.org/gcube/index.php?title=Statistical_Manager_Tutorial|Statistical Manager Tutorial]]
+
[https://gcube.wiki.gcube-system.org/gcube/index.php?title=Statistical_Manager_Tutorial Statistical Manager Tutorial]
  
[[https://gcube.wiki.gcube-system.org/gcube/index.php?title=How-to_Implement_Algorithms_for_the_Statistical_Manager How-to Implement Algorithms for the Statistical_Manager]]
+
[https://gcube.wiki.gcube-system.org/gcube/index.php?title=How-to_Implement_Algorithms_for_the_Statistical_Manager How-to Implement Algorithms for the Statistical_Manager]

Revision as of 16:29, 6 November 2013

Prerequisites

IDE: Eclipse Java EE IDE for Web Developers. Version: 3.7+

Scope

Here we show how to invoke an algorithm residing on the Statistical Manager (SM), from outside, by means of a thin Java client. Let's start creating a project using the eclipse IDE that is mavenized according to our indications. After having mavenized the project in eclipse you have to add the following dependency for the SM client library.

Maven coordinates

The maven artifact coordinates are:

<dependency>
   <groupId>org.gcube.data.analysis</groupId>
   <artifactId>statistical-manager-cl</artifactId>
   <version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
</dependency>

Related Links

Statistical Manager Tutorial

How-to Implement Algorithms for the Statistical_Manager