Hi everyone…
I have question about JAXRPC which is included in WSDP early access 2
tutorial distribution.
JAXRPC tutorial contains hello world example and there is web.xml for
Tomcat.
web.xml has following code…
<servlet>
<servlet-name>JAXRPCEndpoint</servlet-name>
<display-name>JAXRPCEndpoint</display-name>
<description>Endpoint for Hello World Application</description>
<servlet-class>com.sun.xml.rpc.server.http.JAXRPCServlet</servlet-
class>
<init-param>
<param-name>configuration.file</param-name>
<param-value>/WEB-INF/HelloWorld_Config.properties</param-
value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
But I can’t exactly understand the role of servlet named “JAXRPCServlet”.
I just guess it may accept SOAP request from web server and pass it to
appropriate implementation described in
HelloWorld_Config.properties. Is it right?
Then Can I develop my own JAXRPC runtime such as “JAXRPCServlet”? or Can
I extend the functionality of “JAXRPCServlet” ?
Any comments will be helpful to me…
Thanks.