在将 JSR 286 portlet 部署到 Oracle WebLogic Server 11g(稍后在 Oracle WebCenter 11g 中部署)时出现以下异常:
<19-ene-2010 13H32' CET> <Error> <oracle.portlet.server.containerimpl.PortletApplicationImpl> <BEA-000000> <Error al procesar el archivo "/WEB-INF/portlet.xml" en la lÝnea 6 columna 68.
org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'portlet-app'
错误消息是西班牙语。它的意思是:
“处理文件时出错”/WEB-INF/portlet.xml 第 6 行第 68 列”
我的 portlet 的 portlet.xml 似乎是正确的,我已经将它部署在其他门户服务器中。所以我不明白错误信息。
这是我的 portlet 的 portlet.xml(eclipse XML 验证器说它是一个有效的 XML)
<?xml version="1.0" encoding="UTF-8"?>
<portlet-app version="2.0"
xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd
http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd"
xmlns:dnd="http://www.denodo.com/widget/portlet/portletjsr286">
<portlet>
<description>Test Inter Portlet Communication (JSR286)</description>
<portlet-name>Test IPC</portlet-name>
<display-name>Test IPC</display-name>
<portlet-class>com.denodo.ipc.TestIPCPortlet</portlet-class>
<supports>
<mime-type>text/html</mime-type>
<portlet-mode>VIEW</portlet-mode>
</supports>
<supported-locale>en</supported-locale>
<resource-bundle>PortletMessages</resource-bundle>
<portlet-info>
<title>Test IPC</title>
<short-title>Test IPC</short-title>
<keywords>Test IPC,Denodo</keywords>
</portlet-info>
</portlet>
</portlet-app>
如何部署我的 portlet
- 我通过执行 java -jar wsrp-predeploy.jar 源 EAR 目标 EAR 将我的 portlet 转换为 WSRP portlet,如http://download.oracle.com/docs/cd/E12839_01/webcenter.1111/e12405/wcadm_portlet_prod 中所述。 htm#CHDECJHI )
- 我尝试使用 WebLogic 控制台将其部署到 WebLogic 中,但出现此异常。
我的环境
从 oracle.com 下载的 WebCenter Suite (11.1.1.2.0) + WebLogic Server (10.3.2)。默认配置
所以:Windows XP SP3
在此先感谢您的时间。