系统不支持指定的编码

时间:2014-11-10 07:27:36

标签: javascript xml xslt encoding jboss

我的项目有一个页面,但是当我试图通过weblogic服务器访问该页面时它工作得很好但是当我试图在jboss的帮助下访问同一页面时,我收到的错误就像系统没有支持特定的编码。

以下是代码: -

<script language="javascript" type="text/javascript">
var properties_xmlDoc = null; 
var pwPrefix = 'password_';

    function loadProperties() 
    { 
        var oXSLContainer = findObject("propertiesXSL");
        var oXMLContainer = findObject("propertiesXML");
        var oHTMLContainer = findObject("propertiesContainer");
        var sortPropertiesXSL = findObject("sortPropertiesXSL");
        if (properties_xmlDoc == null) 
        {
            properties_xmlDoc = loadXMLFromString(oXMLContainer.value);   
        }

        properties_xmlDoc.transformNodeToObject(sortPropertiesXSL, properties_xmlDoc);

        findObject("propertiesXML").value = properties_xmlDoc.xml;

        oHTMLContainer.innerHTML = new String(properties_xmlDoc.transformNode(oXSLContainer));   


        #if($inlinePropertiesEditor) 
            findObject("propValueDiv").innerHTML = findObject("propertyValueString").innerHTML;   
        #end

    }   

我试图在IE调试器的帮助下调试此页面下面的行抛出错误为: - “系统不支持指定的编码”

properties_xmlDoc.transformNodeToObject(sortPropertiesXSL,properties_xmlDoc);

任何线索都会受到赞赏。

0 个答案:

没有答案