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

From Gcube Wiki
Jump to: navigation, search
(Related Links)
(Scope)
Line 5: Line 5:
 
IDE: Eclipse Java EE IDE for Web Developers. Version: 3.7+
 
IDE: Eclipse Java EE IDE for Web Developers. Version: 3.7+
  
=Scope=
+
=Introduction=
 
Here we show how to invoke an algorithm residing on the Statistical Manager (SM), from outside, by means of a thin Java client.
 
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 [http://gcube.wiki.gcube-system.org/gcube/index.php/Integration_of_Maven_Components indications].
 
Let's start creating a project using the eclipse IDE that is mavenized according to our [http://gcube.wiki.gcube-system.org/gcube/index.php/Integration_of_Maven_Components indications].

Revision as of 16:29, 6 November 2013

Prerequisites

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

Introduction

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