Hi, I can't seem to find a solution for the following:
Currently the webservices are accessed via the 'default' URL: http://localhost:8080/myserver/services/... I would like to change this to the following URL: http://localhost:8080/myserver/services/*soap/*... What needs to be done to make this happen ? I couldn't find that I need to set/change a parameter in the axis2.xml file Also changing following in the web.xml: <servlet-mapping> <servlet-name>AxisServlet</servlet-name> <url-pattern>/services/*</url-pattern> </servlet-mapping> to <servlet-mapping> <servlet-name>AxisServlet</servlet-name> <url-pattern>/services/soap/*</url-pattern> </servlet-mapping> did not make it happen. Any ideas how it should be done ? Regards. H.
