org.apache.geronimo.axis.server.POJOProvider Maven / Gradle / Ivy
The newest version!
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.geronimo.axis.server;
import java.lang.reflect.Method;
import javax.xml.rpc.holders.IntHolder;
import org.apache.axis.providers.java.RPCProvider;
import org.apache.axis.MessageContext;
import org.apache.axis.Handler;
import org.apache.geronimo.webservices.WebServiceContainer;
/**
* @version $Rev: 547376 $ $Date: 2007-06-15 03:38:13 +0800 (Fri, 15 Jun 2007) $
*/
public class POJOProvider extends RPCProvider {
public POJOProvider() {
}
public Object getServiceObject(MessageContext msgContext, Handler service, String clsName, IntHolder scopeHolder) throws Exception {
WebServiceContainer.Request request = (WebServiceContainer.Request) msgContext.getProperty(AxisWebServiceContainer.REQUEST);
return request.getAttribute(WebServiceContainer.POJO_INSTANCE);
}
protected Object invokeMethod(MessageContext msgContext, Method interfaceMethod, Object pojo, Object[] arguments) throws Exception {
Class pojoClass = pojo.getClass();
Method pojoMethod = null;
try {
pojoMethod = pojoClass.getMethod(interfaceMethod.getName(), interfaceMethod.getParameterTypes());
} catch (NoSuchMethodException e) {
throw (NoSuchMethodException)new NoSuchMethodException("The pojo class '"+pojoClass.getName()+"' does not have a method matching signature: "+interfaceMethod).initCause(e);
}
return pojoMethod.invoke(pojo, arguments);
}
}