/** * EasySOA Samples - Smart Travel * Copyright 2011 Open Wide * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Contact : easysoa-dev@googlegroups.com */ package fr.inria.galaxy.j1.scenario1; public class WsClient { public static void main(String[] args) { // ISummaryServiceFactory factory = new ISummaryServiceFactory(); // ISummaryServicePortType client = factory.getISummaryServicePort(); // String city = "Grenoble"; // String country = "France"; // String mete = "cloudy"; // double rate = 1.34; // String eng = "Hello"; // String fr = "Salut"; // final String createSummary = client.summarize(city, country, mete, // rate, eng, fr); // System.err.println("Summary: \n" + createSummary); } }