When you have

Service serviceModel = new ObjectServiceFactory()
                               .create(ICustomerService.class);
ICustomerService customerService = (ICustomerService) new
XFireProxyFactory()
                               .create(serviceModel,
                                " http://localhost:7001/services/CustomerService");

I don't see ICustomerService in the example.  Did you just create an interface for the CustomerService class to implement and then make sure your client has the interface in its classpath?  Meaning that all clients who use the webservice need to know about the interface?

Reply via email to