/**
* Public default constructor.
*/
public SoapUIClientService() throws ConfigurationException {
final ESBProperties properties = new ESBProperties("/soapui-client.sar.properties");
int smooksLRUCacheSize = properties.getIntProperty("smooks.lru.cache.size", 30);
smooksCache = new SmooksCache(smooksLRUCacheSize);
final int wsdlLRUCacheSize = properties.getIntProperty("wsdl.lru.cache.size", 30);
wsdlCache = new WsdlCache(wsdlLRUCacheSize);
}