Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to add Axis2 parsing/handling to my existing web application. This compiles into a WAR file, however, my understanding (hopefully incorrect) of the Axis2 process is that to run it inside of a Tomcat server you need to install the Axis2.war servlet, and then compile the Axis2 application into an .aar file and place it in the $CATALINA_HOME/axis2/services subdirectory.

I need this to work compiled into a war file and put in a normal location.

From my understanding, to use Axis2 you need the servlet container to have a transport listener, which is the Axis2.war servlet. This will then delegate to the relevant installed .aar file. I have read a lot of the documentation and can't see how to make Axis2 more transparent.

Has anyone got any knowledge of this?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can add the axis2 as a servlet of your current application . All you have to do is add to your web.xml something like this:

<servlet>
   <servlet-name>AxisServlet</servlet-name>
   <display-name>Apache-Axis Servlet</display-name>
   <servlet-class>
      org.apache.axis2.transport.http.AxisServlet
   </servlet-class>
   <load-on-startup>1</load-on-startup>
</servlet>

And a mapping:

<servlet-mapping>
   <servlet-name>AxisServlet</servlet-name>
   <url-pattern>/services/*</url-pattern>
</servlet-mapping>

Here is a guide for the configuration.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.