diff --git a/org.springframework.web/src/main/java/org/springframework/remoting/jaxrpc/support/AxisBeanMappingServicePostProcessor.java b/org.springframework.web/src/main/java/org/springframework/remoting/jaxrpc/support/AxisBeanMappingServicePostProcessor.java
deleted file mode 100644
index af754a5d911..00000000000
--- a/org.springframework.web/src/main/java/org/springframework/remoting/jaxrpc/support/AxisBeanMappingServicePostProcessor.java
+++ /dev/null
@@ -1,197 +0,0 @@
-/*
- * Copyright 2002-2008 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.springframework.remoting.jaxrpc.support;
-
-import java.util.Enumeration;
-import java.util.HashMap;
-import java.util.Map;
-import java.util.Properties;
-import javax.xml.namespace.QName;
-import javax.xml.rpc.Service;
-import javax.xml.rpc.encoding.TypeMapping;
-import javax.xml.rpc.encoding.TypeMappingRegistry;
-
-import org.apache.axis.encoding.ser.BeanDeserializerFactory;
-import org.apache.axis.encoding.ser.BeanSerializerFactory;
-
-import org.springframework.beans.factory.BeanClassLoaderAware;
-import org.springframework.remoting.jaxrpc.JaxRpcServicePostProcessor;
-import org.springframework.util.ClassUtils;
-
-/**
- * Axis-specific {@link JaxRpcServicePostProcessor} that registers bean
- * mappings for domain objects that follow the JavaBean pattern.
- *
- *
The same mappings are usually also registered at the server in
- * Axis' "server-config.wsdd" file.
- *
- *
To be registered as a service post-processor on a
- * {@link org.springframework.remoting.jaxrpc.LocalJaxRpcServiceFactoryBean} or
- * {@link org.springframework.remoting.jaxrpc.JaxRpcPortProxyFactoryBean},
- * carrying appropriate configuration.
- *
- *
Note: Without such explicit bean mappings, a complex type like a
- * domain object cannot be transferred via SOAP.
- *
- * @author Juergen Hoeller
- * @since 2.0
- * @see org.apache.axis.encoding.ser.BeanSerializerFactory
- * @see org.apache.axis.encoding.ser.BeanDeserializerFactory
- * @see org.springframework.remoting.jaxrpc.LocalJaxRpcServiceFactoryBean#setServicePostProcessors
- * @see org.springframework.remoting.jaxrpc.JaxRpcPortProxyFactoryBean#setServicePostProcessors
- */
-public class AxisBeanMappingServicePostProcessor implements JaxRpcServicePostProcessor, BeanClassLoaderAware {
-
- private String encodingStyleUri;
-
- private String typeNamespaceUri;
-
- private Map