Package org.apache.axiom.om.impl.llom

Examples of org.apache.axiom.om.impl.llom.OMSourcedElementImpl.toStringWithConsume()


    private Scriptable getJSONAsXML() throws CarbonException {
        OMSourcedElementImpl sourcedElement = (OMSourcedElementImpl) responseXML;
        if (sourcedElement.getDataSource() != null) {
            try {
                String jsonString = sourcedElement.toStringWithConsume();
                while (jsonString.indexOf("<?") == 0) {
                    jsonString = jsonString.substring(jsonString.indexOf("?>") + 2);
                }
                Object[] objects = {jsonString};
                return context.newObject(this, "XML", objects);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.