I am new to java WS and WSDL.
I used wsdl2java to create java classes for my web service client and there was a class created with <Service Name>Service extends javax.xml.ws.Service
Please let me know what is the use of the class
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think of this as a ‘locator’ or ‘factory’ which can be used for making client-side (proxy) instances of the service. For example (where ‘Example‘ is the Service Name):
Though with CXF you can use utilities such as the
JaxWsProxyFactoryBeanand ignore the<Service Name>Serviceclass. Eg: