package sample;

import javax.jws.WebService;
import javax.xml.ws.BindingType;

@WebService
@BindingType(value=javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_BINDING)
public interface IHello {
	String hello(String a);	
	Integer hello2(String a);
}
