I have a requirement to return List of custom class(FeedMetaData) objects from a web service method. When I invoke this method from client, I am getting ClassCast Exception.

FeedMetaData is simple bean class with 3 fields of type String.

Below is the client code:

Bus bus = new CXFBusFactory().createBus();
JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance(bus);
Client client = dcf.createClient("http://64.68.163.33:8080/socialkast-web/skservice/skservice?wsdl");
Object[] results = client.invoke("getCommecialFeeds");
List<FeedMetaData> result = (List<FeedMetaData>)results[0];

I looked into the issue https://issues.apache.org/jira/browse/CXF-2415

but looks like it only works with list of only objects of java build in classes.

Anyone tried using list of objects of custom classes as return type from a cxf web service method.

link|improve this question
feedback

1 Answer

I came across the exact same issue. this post helped me out in overcoming the issue : http://dhruba.name/2008/12/08/rest-service-example-using-cxf-22-jax-rs-10-jaxb-and-spring/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.