.newInstance();
FindServiceInstanceResponse findServiceDescResponse = findServiceInstanceResponseDocument
.addNewFindServiceInstanceResponse();
if (serviceInstanceList != null) {
for (DocData service : serviceInstanceList) {
WsdlData wsdlData = findServiceDescResponse.addNewServiceInstance();
copyResourceData(service, wsdlData);
}
}
log.info("Response Sent " + findServiceInstanceResponseDocument.xmlText());
return findServiceInstanceResponseDocument;