Dictionary properties = new Properties();
public void start(BundleContext context) throws Exception {
System.out.println("HelloService provider start");
properties.put("x-name", "x-provider");
registration = context.registerService(ISayHello.class.getName(), new SayHelloImpl(), properties);
}