/* fine ordino la request e creo l'XML */
XMLBuilder theXMLconf = confBean.getTheXMLConfEditing();
for (int a = 0; a < theXMLconf.contaNodi("/root/fixedValues/cdata/elemento"); a++) {
String ilNodoCorrente = theXMLconf.valoreNodo("/root/fixedValues/cdata/elemento[" + (a + 1) + "]/@path");
String ilValoreCorrente = theXMLconf.valoreNodo("/root/fixedValues/cdata/elemento[" + (a + 1) + "]/text()");
ilValoreCorrente = ilValoreCorrente.replaceAll(" ", "_");
ilValoreCorrente = ilValoreCorrente.replaceAll("<", "-");
ilValoreCorrente = ilValoreCorrente.replaceAll(">", "-");
if (ilNodoCorrente.endsWith("/@cdata")) {
ilNodoCorrente = StringUtils.chomp(ilNodoCorrente, "/@cdata");