m_fact = BindingDirectory.getFactory(Greetee.class);
}
private Welcome sayHello(Greetee s) throws WsException, IOException {
SoapClient client = new SoapClient(m_location, m_fact);
client.addInFaultDetailsHandler(new ExceptionReader());
Welcome welcome = (Welcome) client.call(s);
return welcome;
}