Sorry, i made a type error pacakge name should be com.nono.types instead of
com.nono.type, i re-tried it, but same problem 
wsdl and package name alreadyd updated in the post thread!
wsdl should be correct
it is generated against below service interface package com.nono;

import javax.jws.WebService;
import javax.jws.WebMethod;
import javax.jws.WebParam;

/**
 *
 * @author nono
 */
@WebService(serviceName = "MyWebService") public class MyWebService {

    /**
     * This is a sample web service operation
     */
    @WebMethod(operationName = "hello")
    public String hello(@WebParam(name = "name") String txt)throws
MyWebServiceFault {
        return "Hello " + txt + " !";
    }
}




--
View this message in context: 
http://camel.465427.n5.nabble.com/CustomSoapFault-Problem-tp5751844p5752139.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to