1

CXF エンドポイントを Servicemix 4 で動作させようとしています。CXF エンドポイントを使用して Spring アーキタイプを作成し、Maven で正常にインストールしました。osgi:install - s mvn: を実行すると、Servicemix にインストールされますが、ログが表示されます。

 Application context refresh failed (OsgiBundleXmlApplicationContext(bundle=springdm, 
 config=osgibundle:/META-INF/spring/*.xml))  
 org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 21 in XML document 
 from URL [bundle://218.0:0/META-INF/spring/camel-context.xml] is invalid; nested exception is 
 org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no 
 declaration can be found for element 'cxf:cxfEndpoint'

このルートは、context.xml ファイルで次のように Camel で作成しました。

<beans ...
   xmlns:osgi="http://www.springframework.org/schema/osgi"
   xmlns:cxf="http://camel.apache.org/schema/cxf"
   xsi:schemaLocation="
   http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
   http://www.springframework.org/schema/osgi http://www.springframework.org/schema/osgi/spring-osgi.xsd
   http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
   http://camel.apache.org/schema/cxf http://camel.apache.org/schema/cxf/camel-cxf.xsd
   http://cxf.apache.org/tranposrts/camel http://cxf.apache.org/tranposrts/camel.xsd">
   <import resource="classpath:META-INF/cxf/cxf.xml" />
<cxf:cxfEndpoint id="wspoc"
            address="http://localhost:8181/ws/ping"
            serviceClass="net.ja.smx.springdm.PongImpl" />
<camelContext xmlns="http://camel.apache.org/schema/spring">
  <route>
    <from uri="cxf:bean:wspoc"/>
    <to uri="activemq:helloQ" />
  </route>
</camelContext>

これは、動作中の Camel コンテキスト ファイルのクローンですが、起動時に ServiceMix がエラーをスローする理由がわかりません。唯一の違いは、pom ファイルが CXF を依存関係として使用していないことですが、それはオンラインの例から取ったセクションにあります。

欠落しているインポートやコンテキスト ファイルへの修正、またはチェックすべき点についてのポインタをいただければ幸いです。

どうもありがとう。

4

1 に答える 1

2

投稿した直後に、POM ファイルに camel-cxf 依存関係がないことがわかり、このエラーが発生しました。ServiceMix が正しい META.cxf ファイルを見つける際にエラーが発生したため、正しいバージョンであることも確認する必要がありました。

于 2012-11-30T10:30:34.523 に答える