我正在尝试按照下面的步骤实现一个web服务代理。http://forum.spring.io/forum/spring-projects/integration/114641-how-to-implement-the-web-service-proxy-pattern
Spring config.xml:
<int-ws:inbound-gateway id="proxy" request-channel="toOutbound"/>
<int:channel id="toOutbound" />
<int-ws:outbound-gateway id="out" request-channel="toOutbound" uri="http://localhost:8080/helloproxy" />在部署代理服务时获取此异常。
org.xml.sax.SAXParseException;systemId:http://www.springframework.org/schema/integration/ws/spring-integration-ws.xsd;lineNumber: 274;columnNumber: 72;src-解析:无法将名称'integration:smartLifeCycleAttributeGroup‘解析为一个(n)’属性组‘组件。
有人能帮我把这个修好吗?在spring config xml中还有什么要添加的吗?
谢谢你,Sri
发布于 2014-06-12 11:59:07
或者您有一个spring集成jar版本(SI-ws是一个版本,而SI-核心是另一个版本),或者这只是IDE的一个问题。
Spring (STS)应该有助于解决所有的XSD验证问题。
https://stackoverflow.com/questions/24183398
复制相似问题