Java tutorial
//package com.java2s; public class Main { public static String dirtilyAddNamespaceWithPrefixForOracleESB(String rootElement, String xmlDoc) { xmlDoc = xmlDoc.replaceAll("<" + rootElement, "<" + "ns2:" + rootElement + " " + "xmlns:ns2=\"http://www.oracle.com/esb\""); xmlDoc = xmlDoc.replaceAll("</" + rootElement, "</" + "ns2:" + rootElement); return xmlDoc; } }