Configuring Axis
The Axis SOAP engine is normally configured by providing a file named server-config.wsdd in the WEB-INF folder of the web application. ti-axis provides configuration beans that allows to place this configuration on any subsystem, on any place in the classpath.
The following example shows how simple the configuration can be with ti-axis:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tiAxis="http://antidoto.sf.net/subsystem/ti-axis" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://antidoto.sf.net/subsystem/ti-axis http://antidoto.sf.net/xsd/ti-axis.xsd "> <tiAxis:globalConfiguration wsddfile="META-INF/services/server-config.wsdd" /> </beans>