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: package org.apache.openejb.server.axis2.pojo;
20:
21: import org.apache.axis2.context.ServiceContext;
22: import org.apache.axis2.jaxws.context.factory.MessageContextFactory;
23: import org.apache.axis2.jaxws.context.utils.ContextUtils;
24: import org.apache.axis2.jaxws.core.MessageContext;
25: import org.apache.axis2.jaxws.handler.SoapMessageContext;
26: import org.apache.axis2.jaxws.server.endpoint.lifecycle.EndpointLifecycleException;
27: import org.apache.axis2.jaxws.server.endpoint.lifecycle.EndpointLifecycleManager;
28:
29: public class PojoEndpointLifecycleManager implements
30: EndpointLifecycleManager {
31: // This method is called on each web service call.
32: public Object createServiceInstance(MessageContext context,
33: Class serviceClass) throws EndpointLifecycleException {
34: org.apache.axis2.context.MessageContext msgContext = context
35: .getAxisMessageContext();
36:
37: ServiceContext serviceContext = msgContext.getServiceContext();
38: Object instance = serviceContext
39: .getProperty(ServiceContext.SERVICE_OBJECT);
40:
41: // associate JAX-WS MessageContext with the thread
42: PojoWsContext
43: .setMessageContext(createSOAPMessageContext(context));
44:
45: return instance;
46: }
47:
48: private javax.xml.ws.handler.MessageContext createSOAPMessageContext(
49: MessageContext mc) {
50: SoapMessageContext soapMessageContext = MessageContextFactory
51: .createSoapMessageContext(mc);
52: ContextUtils.addProperties(soapMessageContext, mc);
53: return soapMessageContext;
54: }
55:
56: public void invokePostConstruct() throws EndpointLifecycleException {
57: }
58:
59: public void invokePreDestroy() throws EndpointLifecycleException {
60: }
61: }
|