4

I am working with sample REST service with Apache CXF, But somehow I am not able to call the service. My implementation class is,

package com.ananth.lab.cfxrest.service;

import com.ananth.lab.cfxrest.vo.Address;
import com.ananth.lab.cfxrest.vo.Employee;
import org.springframework.stereotype.Service;

import javax.jws.WebService;
import javax.ws.rs.*;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;


@Path("/cservice")
@Produces("application/xml")
public class EmployeeService {

    @GET
    @Path("/emp")

    public Employee getEmployee() {

        Address address1 = new Address();
        address1.setCity("Chennai");
        address1.setZip(63);
        List<Address> list = new ArrayList<Address>();
        Address address2 = new Address();
        address2.setCity("Bangalore");
        address2.setZip(49);
        list.add(address1);
        list.add(address2);
        Employee emp = new Employee();
        emp.setAddress(list);
        emp.setEmployeeId("001");
        emp.setEmployeeName("Ananth");

        return emp;
    }
}

My web.xml file is,

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Hello world REST service with apache cxf</display-name>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>WEB-INF/beans.xml,WEB-INF/applicationContext.xml</param-value>
    </context-param>

    <listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>
    <servlet>
        <servlet-name>CXFServlet</servlet-name>
        <display-name>CXF Servlet</display-name>
        <servlet-class>
            org.apache.cxf.transport.servlet.CXFServlet
        </servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>CXFServlet</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>

</web-app>

I deployed in Tomcat and the context path is "Lab". So I am trying to access the service like:

http://localhost:8080/Lab/cservice/emp

I am getting

No service was found.
Cœur
  • 37,241
  • 25
  • 195
  • 267
Ananth Duari
  • 2,859
  • 11
  • 35
  • 42
  • I think you are missing a URI segment between "Lab" and "cservice". You need to include whatever servlet is routing your requests to CXF. So your URI should look something like http://localhost:8080/Lab//cservice/emp. The value of depends on how you have configured CXF. Can you check you application's web.xml for the servlet definition? – EJK Dec 16 '11 at 13:43
  • I have added my web.xml in the Post. It is just /*. So should take anything after / I think – Ananth Duari Dec 20 '11 at 10:16

2 Answers2

0

I think you should make sure that your Employee class have a correctly "@" remark. just like below:

@XmlRootElement(name="cservice")

public class Employee (){
    private String employeeId;
    private String employeeName;
    ...


@XmlElement(name="employeeId")
    public void setEmployeeId(String employeeId){
        ...
    }
    public String getEmployeeId(){
        return this.employeeId;
    }

@XmlElement(name="employeeName")
    public void setEmployeeName(String employeeId){
        ...
    }
    public String getEmployeeName(){
        return this.employeeName
    }
...
...
}

and I suggest you to check WEB-INF/beans.xml & WEB-INF/applicationContext.xml.

-1

Make sure your request url endpoint match your server endpoint.

combine url in web.xml and beans.xml result your endpoint

Mengyu ZHang
  • 123
  • 1
  • 10