我想将系统从8.1升级到9.2,修改了web.xml和weblogic.xml文件,jdk由1.4改为1.5,可是报异常如下:
<2009-5-12 上午11时31分10秒 CST> <Error> <netuix> <BEA-423443> <初始化 SingleFileServlet 时出现异常: [java.lang.IllegalArgumentException: http://java.sun.com/xml/jaxp/properties/schemaLanguage]。
java.lang.IllegalArgumentException: http://java.sun.com/xml/jaxp/properties/schemaLanguage
at gnu.xml.dom.JAXPFactory.setAttribute(JAXPFactory.java:109)
at org.apache.beehive.netui.pageflow.internal.DefaultURLTemplatesFactory.load(DefaultURLTemplatesFactory.java:176)
at com.bea.netuix.servlets.manager.AppDescriptor.loadDescriptor(AppDescriptor.java:1080)
at com.bea.netuix.servlets.manager.SingleFileServlet.reinitInternal(SingleFileServlet.java:137)
at com.bea.netuix.servlets.manager.SingleFileServlet.initInternal(SingleFileServlet.java:86)
Truncated. see log file for complete stacktrace

<2009-5-12 上午11时31分10秒 CST> <Error> <HTTP> <BEA-101359> <The servlet weblogic.servlet.AsyncInitServlet init method failed while it was run in the background. The exception was: java.lang.IllegalArgumentException: http://java.sun.com/xml/jaxp/properties/schemaLanguage.
java.lang.IllegalArgumentException: http://java.sun.com/xml/jaxp/properties/schemaLanguage
at gnu.xml.dom.JAXPFactory.setAttribute(JAXPFactory.java:109)
at org.apache.beehive.netui.util.config.parser.NetUIConfigParser.parse(NetUIConfigParser.java:158)
at org.apache.beehive.netui.util.config.parser.NetUIConfigParser.parse(NetUIConfigParser.java:134)
at org.apache.beehive.netui.util.config.ConfigUtil.internalInit(ConfigUtil.java:99)
at org.apache.beehive.netui.util.config.ConfigUtil.init(ConfigUtil.java:67)
Truncated. see log file for complete stacktrace

我的web.xml文件内容为:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" 
xmlns="http://java.sun.com/xml/ns/j2ee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>...... </servlet>
weblogic.xml文件为:
<?xml version="1.0" encoding="UTF-8"?>
<weblogic-web-app 
xmlns="http://www.bea.com/ns/weblogic/90" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 
http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd 
http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

请高手解答,多谢。