/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.godoro.service;
import javax.jws.WebService;
import javax.jws.WebMethod;
import javax.jws.WebParam;
/**
*
* @author onder
*/
@WebService(serviceName = "Tester")
public class Tester {
/**
* This is a sample web service operation
*/
@WebMethod(operationName = "hello")
public String hello(@WebParam(name = "name") String txt) {
return "Hello " + txt + " !";
}
}
Dosyayı İndir