I am creating a simple web service using cxfEndpoint. It gets deployed
without error but it does not appear in CXF service list.
http://localhost:8181/cxf/. 

The xml is below
<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans";
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    xmlns:jaxws="http://cxf.apache.org/jaxws";
    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://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
        http://camel.apache.org/schema/cxf
http://camel.apache.org/schema/cxf/camel-cxf.xsd
        http://www.springframework.org/schema/osgi
http://www.springframework.org/schema/osgi/spring-osgi.xsd";>

    <import resource="classpath:META-INF/cxf/cxf.xml" />
    <import resource="classpath:META-INF/cxf/cxf-*.xml" />
        
        <cxf:cxfEndpoint id="soapMessageEndpoint"
                         serviceClass="com.accenture.HelloWorldImpl"
                         address="http://localhost:8181/cxf/PersonServiceCF1";
                         />

</beans>

I assume I am mixxing something in configuration that it's not working
properly.

--
View this message in context: 
http://servicemix.396122.n5.nabble.com/cxfEndpoint-webservice-tp5713406.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.

Reply via email to