After integrating with jaxws ri (http://jax-ws-commons.java.net/spring/), I get:
Unrecognized xbean namespace mapping: http://jaxws.dev.java.net/spring/servlet
Error only occurs in the IDE flagged with the red error message next to the element. Running it works fine. Hints to correct?
- Peter
Error appears here:
<wss:binding url="/jaxws/hello" service="#simpleHello" />
<!-- simplest definition only needs the class name -->
<ws:service id="simpleHello" impl="sample.HelloJaxws" />
Here is the beans namespace defn:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:ws="http://jax-ws.dev.java.net/spring/core"
xmlns:wss="http://jax-ws.dev.java.net/spring/servlet"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schem...ng-aop-3.0.xsd
http://www.springframework.org/schema/jms http://www.springframework.org/schem...ng-jms-3.0.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schem...rity-3.0.4.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schem...-beans-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schem...ing-tx-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schem...ontext-3.0.xsd
http://jax-ws.dev.java.net/spring/core http://jax-ws.dev.java.net/spring/core.xsd
http://jax-ws.dev.java.net/spring/servlet http://jax-ws.dev.java.net/spring/servlet.xsd">


Reply With Quote