Before anything else, I want you to know that I can already connect to the web service server. I'm asking this question because I want to gain a deeper knowledge on how a wsimport generated client works. Based from my research, wsimport uses JAXWS. Please note that I have no knowledge from JAXWS.
I generated my client using wsimport. The WSDL I used is from an Axis2 web service and was automatically generated by Axis2. The classes below are the results of wsimport:
Under com.datamodel.xsd
DataBeanRequest.java
DataBeanResponse.java
ObjectFactory.java
package-info.java
Under com.service
MyWebService.java
MyWebServicePortType.java
MyMethod.java
MyMethodResponse.java
ObjectFactory.java
package-info.java
With the classes above, I can that tell that com.datamodel.xsd
contains the beans used by the web service server (excluding ObjectFactory
and package-info
). Meanwhile, MyMethod
and MyMethodResponse
are also beans used to set the request and response parameter of the web service method/operation.
Below are my questions: (You don't really have to answer all of it if you don't know the answers on some of my questions. :) And please feel free to share any info that you think I might find useful.)
Am I correct with
- Am I correct with my assumptions above?
- What are the function of the other classes?
- I inspected
MyWebService
and it contains an annotation referring to the absolute location of the WSDL I used to generate the client. What is the relevance of specifying thewsdllocation
in the client? How does the client use that info? - I noticed that the actual URL of the web service is not declared in any of the classes generated. How does the client know where it needs to connect to?
- Was the WSDL file annotated so that the client can read the URL on the WSDL file upon connection? If so, then does it mean that the WSDL file is always read when a new connection must be established?
Since there's a need for me to compile my application and install it on a different server, the will become invalid. Can I set it to a relative path instead of an absolute path? How? (Answer: Yes, it can be set to a relative path. Thewsimport
command has awsdllocation
attribute wherein the value of thewsdllocation
can be specified.)- What if I need to connect to an HTTPS. How can I set the server certificate?
- Is there any difference when I generate my client using wsimport and when I generate it using Axis2 or Apache CXF.