Problems :
|
"/SENTRY/X/hpStoreonce:getStoreonceservicesClusterMed:properties/transformList" = { REPLACE = "type=xml2csv;recordTag=properties;includedProperties=applianceName networkName serialNumber capacity freeSpace userDataStored sizeOnDisk healthLevel health status repHealthLevel repHealth repStatus;resultSeparator=[__SW_SENTRY__]%{SEMICOLON}[__SW_SENTRY__]" }, |
You are using Result Separator ";" but the content is using space so the query may fail
it should be : applianceName;networkName;serialNumber;capacity;freeSpace;userDataStored;sizeOnDisk;healthLevel;health;status;repHealthLevel;repHealth;repStatus
|
"/SENTRY/X/hpStoreonce:network/httpRequestContent" = { REPLACE = "textOnly" }, |
it should be httpResponseBody if you want to return the XML's code (for the next step : xml to csv) and not text. Otherwise, the transformation step (XML to CSV) doesn't work.
Problems :
studioX-templates/templates/hp-StoreOnce/hpStoreonce.cfg
Line 49 in d87fac8
You are using Result Separator ";" but the content is using space so the query may fail
it should be : applianceName;networkName;serialNumber;capacity;freeSpace;userDataStored;sizeOnDisk;healthLevel;health;status;repHealthLevel;repHealth;repStatus
studioX-templates/templates/hp-StoreOnce/hpStoreonce.cfg
Line 244 in d87fac8
it should be httpResponseBody if you want to return the XML's code (for the next step : xml to csv) and not text. Otherwise, the transformation step (XML to CSV) doesn't work.