Hi, I'm creating client proxy objects per the user guideline below:
Service serviceModel = new ObjectServiceFactory().create(YourService.class, "SuperService", "urn:your:namespace", null); YourService client = (YourService) new XFireProxyFactory().create(serviceModel, "http://your/remote/url"); Since I'm doing this on multiple threads simultaneously as part of a commons-pool, but am using the same serviceModel object across all these threads, is this thread-safe? Thanks! -dave
