Hello guys,
I have the following classes
// VO
public class Search<ENTITY> {
private List<ENTITY> list;
private Config config;
}
// WEB SERVICE
public interface TaskService{
public Search<Task> getAll() throws Exception;
}
I tried to use the default service factory and the annotation service
factory (adding the annotations to the service implementation and the
service interface) but either way it keeps binding the attribute
Search<ENTITY>.list as array of anyTypeon the WSDL.
Is there anyway to make xfire bind it as an array of tasks for the method
TaskService.getAll() ?
Any help is appreciated.
Best regards,
--
João Kreuzberg