jax ws - How is wsdl file generated in jaxws -
i have webservice interface , implementation class. export app war , deploy tomcat. how , when wsdl file generated services???
inreface: @webservice(name = "storesurveyauth") public interface surveyauthorization {
@webmethod @webresult(name="authorizationresponse") public authorizationresponse getauthorizationdetails(surveyauthrequest surveyauthrequest);
impl class:
@webservice(servicename = "authservice", endpointinterface = "com.test.surveyauthorization") public class surveyauthorizationimpl implements surveyauthorization {
}
i have provided url in web.xml , endpoint defined in sun-jaxws.xml. wsdl not generated when deplot in tomcat.
Comments
Post a Comment