Hi I create a application in netbeans, and in one web service method it return a List.
@WebMethod
public List searchByAuthor(String author) {
return bookBean.listByAuthor(author);
}
above is the code. When i right click the web service and click 'Test Web Service' and test the ListByAuthor it gives me an exception
Service invocation threw an exception with message : null; Refer to the server log for more details
Exceptions details : java.lang.reflect.InvocationTargetException
how do i solve this
thanks appreciate help