The EWS is a part of both J2EE and the web service Stack. It defines how the both technologies can be merged for Java programmer and implements it. In the implementation we have taken an extra step from the specification by defining the Security and the transaction mappings as well. (The transaction mapping is J2EE container specific right now.)
So it is very important to understood “How the EWS fit in to the big picture “
The Goals of the EWS project can be stated as follows (they are based on the JSR 109 specification but not limited to specification.)
EWS act as the part of the deploy tool for J2EE container to deploy the Web service in the J2EE container. EWS project provide a tool to accept the J2EE module as explained by the JSR109 specification and generated the required classes and the Runtime need to support the generated classes. When the code generated and the Web service is deployed the architecture will be like follows.
There are two DD added to the JSR109, they are webservice.xml file and the jaxrpc-mapping file. For those two we are using JAXB to parse them.
For deal with WSDL file we are using the JAXRPC-Mapper which is a extension of WSDL2Java and Java2WSDL of axis.
To parse the web.xml file and ejb-jar.xml the tool use DOM for the time been. We are considering possibility of using Geronimo DD parsing technique. (Use the method standalone, maybe we can get the information from Geronimo when our tool is used inside Geronimo)