* @return the categoryRemoteService
*/
public static CategoryRemoteService getCategoryRemoteService(
SoapConfig soapConfig) {
CategoryRemoteService categoryRemoteService = new CategoryRemoteServiceImpl();
categoryRemoteService.setSoapClient(MagentoSoapClient
.getInstance(soapConfig));
ProductRemoteService productRemoteService = getProductRemoteService(
soapConfig, categoryRemoteService);
categoryRemoteService.setProductRemoteService(productRemoteService);
return categoryRemoteService;
}