I have downloaded the lastest version of CFX 2.0.3 and I am having the same
problem with spring
cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration
can be found for element 'jaxws:endpoint'.
I am currently developing in Eclipse Europa, has anyone found a solution I
have tried everything... and nothing seems to work.
here is the XML

<beans  xmlns="http://www.springframework.org/schema/beans";
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
                xmlns:jaxws="http://cxf.apache.org/jaxws";
                xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd";>

        <import resource="classpath:META-INF/cxf/cxf.xml" />
        <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
        <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

        <bean id="hello" class="com.cda.project.webServices.userServicesImpl" />

        <jaxws:endpoint id="userServiceImplementor" implementor="#hello"
address="/userService" />
        
</beans>


Troy Bull-3 wrote:
> 
> Greetings
> 
> I have a couple web services that I wrote.  I followed the tutorial
> from the apache site for creating a spring based ws using cfx.  This
> morning  I checked my web services out of subversion and I can no
> longer build them (in eclipse).  In my applicationBeans.xml I get the
> message :
> 
> the matching wildcard is strict, but no declaration can be found for
> element jaxws.endpoint
> 
> I sure dont know what I did to break these but I am in a real bind, if
> anyone could tell me what to do to fix this I would really appreciate
> it.
> 
> For reference here is my beans.xml file that eclipse complains about:
> 
> <beans xmlns="http://www.springframework.org/schema/beans";
>       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>       xmlns:jaxws="http://cxf.apache.org/jaxws";
>       xsi:schemaLocation="
>               http://www.springframework.org/schema/beans
>               http://www.springframework.org/schema/beans/spring-beans.xsd
>               http://cxf.apache.org/jaxws 
> http://cxf.apache.org/schemas/jaxws.xsd";>
> 
>       <import resource="classpath:META-INF/cxf/cxf.xml" />
>       <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
>       <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
> 
>       <jaxws:endpoint
>         id="helloWorld"
>         implementor="#helloWorldBean"
>         address="/HelloWorld">
>       </jaxws:endpoint>
>       
>       
>       </beans>
> 
> Please help, Thanks in advance.
> 
> Troy
> 
> 

-- 
View this message in context: 
http://www.nabble.com/the-matching-wildcard-is-strict%2C-but-no-declaration-can-be-found-for-element-jaxws.endpoint-tf4732713.html#a14177706
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to