我有一个Webservice
处理程序的处理程序链配置
在我的Webservice
课上,我有;
@HandlerChain(file = "jaxws-handlers-server.xml")
public class RoleMemberServiceSoap11Impl{...}
我的jaxws-handlers-server.xml是;
<handler-chains xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<handler-chain>
<protocol-bindings>##SOAP11_HTTP</protocol-bindings>
<handler>
<handler-name>TransactionBridgeHandler</handler-name>
<handler-class>org.jboss.jbossts.txbridge.inbound.JaxWSTxInboundBridgeHandler
</handler-class>
</handler>
<handler>
<handler-class>com.arjuna.mw.wst11.service.JaxWSHeaderContextProcessor
</handler-class>
</handler>
</handler-chain>
</handler-chains>
在那个xml
文件中,我得到了元素的以下错误。
Cannot find declaration of element handler-chains
我搜索并尝试了有关更改xmlns的各种解决方法:xsd urls。我也尝试了在https://issues.jboss.org/browse/JBIDE-17859给出的解决方法
但这没有用。
IDE : Jboss Developer Studio.
项目:动态Web项目2.4
服务器Jboss 6.1+
Java:1.6
任何建议将不胜感激。
谢谢。
我通过替换解决了这个问题
<handler-chains xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
至
<handler-chains xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/javaee_web_services_metadata_handler_2_0.xsd">
我在Eclipse + JDK 1.8中遇到了类似的问题,它通过更改XMLNS属性的地址来解决。
从:
<javaee:handler-chains xmlns:javaee="http://java.sun.com/xml/ns/javaee" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
至:
<javaee:handler-chains xmlns:javaee="http://xmlns.jcp.org/xml/ns/javaee/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
请参阅下面的链接,Oracle已更改新架构的地址:http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html#7