01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19:
20: package org.apache.axis2.dispatchers;
21:
22: import org.apache.axiom.om.OMElement;
23: import org.apache.axis2.AxisFault;
24: import org.apache.axis2.context.MessageContext;
25: import org.apache.axis2.description.AxisOperation;
26: import org.apache.axis2.description.AxisService;
27: import org.apache.axis2.description.HandlerDescription;
28: import org.apache.axis2.util.LoggingControl;
29: import org.apache.commons.logging.Log;
30: import org.apache.commons.logging.LogFactory;
31:
32: import javax.xml.namespace.QName;
33:
34: public class SOAPMessageBodyBasedOperationDispatcher extends
35: AbstractOperationDispatcher {
36:
37: public static final String NAME = "SOAPMessageBodyBasedOperationDispatcher";
38: private static final Log log = LogFactory
39: .getLog(SOAPMessageBodyBasedOperationDispatcher.class);
40:
41: public AxisOperation findOperation(AxisService service,
42: MessageContext messageContext) throws AxisFault {
43: OMElement bodyFirstChild = messageContext.getEnvelope()
44: .getBody().getFirstElement();
45: if (bodyFirstChild == null) {
46: return null;
47: }
48: if (LoggingControl.debugLoggingAllowed && log.isDebugEnabled()) {
49: log
50: .debug(messageContext.getLogIDString()
51: + " Checking for Operation using SOAP message body's first child's local name : "
52: + bodyFirstChild.getLocalName());
53: }
54: AxisOperation axisOperation = service.getOperation(new QName(
55: bodyFirstChild.getLocalName()));
56:
57: if (axisOperation == null) {
58: axisOperation = service
59: .getOperationByMessageElementQName(bodyFirstChild
60: .getQName());
61: }
62:
63: if (axisOperation == null) {
64: axisOperation = service.getOperation(bodyFirstChild
65: .getQName());
66: }
67: return axisOperation;
68: }
69:
70: public void initDispatcher() {
71: init(new HandlerDescription(NAME));
72: }
73: }
|