OMElement propElem = FACTORY.createOMElement("property",
TASK_OM_NAMESPACE);
OMNamespace nullNS = FACTORY.createOMNamespace("", "");
propElem.addAttribute("name", propName.trim(), nullNS);
propElem.addAttribute("value", value.trim(), nullNS);
taskDescription.addProperty(propElem);
}
} else if ("xml".equals(propertyType)) {
String value = request.getParameter("textArea" + String.valueOf(i));