Return-Path: X-Original-To: apmail-airavata-commits-archive@www.apache.org Delivered-To: apmail-airavata-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4523D10614 for ; Thu, 22 Aug 2013 20:44:23 +0000 (UTC) Received: (qmail 56406 invoked by uid 500); 22 Aug 2013 20:44:23 -0000 Delivered-To: apmail-airavata-commits-archive@airavata.apache.org Received: (qmail 56378 invoked by uid 500); 22 Aug 2013 20:44:23 -0000 Mailing-List: contact commits-help@airavata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airavata.apache.org Delivered-To: mailing list commits@airavata.apache.org Received: (qmail 56368 invoked by uid 99); 22 Aug 2013 20:44:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Aug 2013 20:44:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Aug 2013 20:44:21 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id CA3D02388B3A; Thu, 22 Aug 2013 20:43:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1516599 [6/6] - in /airavata/trunk: ./ modules/airavata-client/src/main/java/org/apache/airavata/client/ modules/airavata-client/src/main/java/org/apache/airavata/client/api/ modules/commons/utils/src/test/resources/ modules/distribution/a... Date: Thu, 22 Aug 2013 20:43:36 -0000 To: commits@airavata.apache.org From: samindaw@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130822204337.CA3D02388B3A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: airavata/trunk/pom.xml URL: http://svn.apache.org/viewvc/airavata/trunk/pom.xml?rev=1516599&r1=1516598&r2=1516599&view=diff ============================================================================== --- airavata/trunk/pom.xml (original) +++ airavata/trunk/pom.xml Thu Aug 22 20:43:35 2013 @@ -442,6 +442,7 @@ samples/complex-math-service samples/levenshtein-distance-service samples/sample-gateway + samples/echo-service modules/server modules/test-suite samples/airavata-client Added: airavata/trunk/samples/echo-service/README.txt URL: http://svn.apache.org/viewvc/airavata/trunk/samples/echo-service/README.txt?rev=1516599&view=auto ============================================================================== --- airavata/trunk/samples/echo-service/README.txt (added) +++ airavata/trunk/samples/echo-service/README.txt Thu Aug 22 20:43:35 2013 @@ -0,0 +1,7 @@ +Echo Service Quick Start Guide +================================= + +This is a sample web service implemented to host on Axis2 Container. This service will be available in Airavata pack to run the sample workflows etc. + +If you want to modify this service you can use the maven build provided and create the modified .aar file by running mvn clean install. + Added: airavata/trunk/samples/echo-service/pom.xml URL: http://svn.apache.org/viewvc/airavata/trunk/samples/echo-service/pom.xml?rev=1516599&view=auto ============================================================================== --- airavata/trunk/samples/echo-service/pom.xml (added) +++ airavata/trunk/samples/echo-service/pom.xml Thu Aug 22 20:43:35 2013 @@ -0,0 +1,58 @@ + + + + + + + + org.apache.airavata + airavata + 0.9-SNAPSHOT + ../../pom.xml + + + 4.0.0 + echo-service + jar + Echo Service + Sample web services to construct as workflows to test XBaya. + http://airavata.apache.org/ + + + + + org.apache.axis2 + axis2-aar-maven-plugin + ${axis2.version} + + src/main/resources/services.xml + + + + createAAR + package + + aar + + + + + + + + resources + META-INF + + **/*.wsdl + **/*.xml + + + + + Added: airavata/trunk/samples/echo-service/src/main/java/org/apache/airavata/samples/EchoService.java URL: http://svn.apache.org/viewvc/airavata/trunk/samples/echo-service/src/main/java/org/apache/airavata/samples/EchoService.java?rev=1516599&view=auto ============================================================================== --- airavata/trunk/samples/echo-service/src/main/java/org/apache/airavata/samples/EchoService.java (added) +++ airavata/trunk/samples/echo-service/src/main/java/org/apache/airavata/samples/EchoService.java Thu Aug 22 20:43:35 2013 @@ -0,0 +1,28 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ + +package org.apache.airavata.samples; + +public class EchoService { + public String echo(String message) { + return message; + } +} Added: airavata/trunk/samples/echo-service/src/main/resources/services.xml URL: http://svn.apache.org/viewvc/airavata/trunk/samples/echo-service/src/main/resources/services.xml?rev=1516599&view=auto ============================================================================== --- airavata/trunk/samples/echo-service/src/main/resources/services.xml (added) +++ airavata/trunk/samples/echo-service/src/main/resources/services.xml Thu Aug 22 20:43:35 2013 @@ -0,0 +1,18 @@ + + + + + Provide Simple Service for Testing Purpose which Echo's the input + + + + + + org.apache.airavata.samples.EchoService +