// the DemoInterceptor's to it
org.apache.cxf.endpoint.Client client = ClientProxy.getClient(greeter);
DemoInterceptor.addInterceptors(client.getEndpoint().getBinding());
System.out.println("Invoking greetMe...");
System.out.println("server responded with: " + greeter.greetMe(System.getProperty("user.name")));
System.out.println();
}
public static void main(String[] args) throws Exception {
new Client(args);