101102103104105106107
* @return a {@link PoxClient} */ public Client createClient(String location, IBindingFactory factory, MessageOptions options) throws WsBindingException, WsConfigurationException { return new PoxClient(location, factory, options); }
5354555657585960
m_location = location; m_fact = BindingDirectory.getFactory(Greetee.class); } private Welcome sayHello(Greetee s) throws WsException, IOException { Client client = new PoxClient(m_location, m_fact); return (Welcome) client.call(s); }