When we develop a WebApp using
Servlet, we have available all Web features, like setting and retrieving HTTP headers, sessions, etc.
But when we develop it using Axis2 in a bottom-up way, all we have is a Plain Old
Java Class.
I know that Axis2 uses Servlet to implement
SOAP WS, so Sevlet features are available underground, and of course we're above HTTP messages, but these feature are hidden.
How can our class access them? Would there be for example some Axis2 class we can use to extend our class, with methods we can call to access these features, as we do with HttpServlet?