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.geronimo.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:
32: /*
33: * This method is called on each web service call.
34: */
35: public Object createServiceInstance(MessageContext context,
36: Class serviceClass) throws EndpointLifecycleException {
37: org.apache.axis2.context.MessageContext msgContext = context
38: .getAxisMessageContext();
39:
40: ServiceContext serviceContext = msgContext.getServiceContext();
41: Object instance = serviceContext
42: .getProperty(ServiceContext.SERVICE_OBJECT);
43:
44: // associate JAX-WS MessageContext with the thread
45: POJOWebServiceContext
46: .setMessageContext(createSOAPMessageContext(context));
47:
48: return instance;
49: }
50:
51: private javax.xml.ws.handler.MessageContext createSOAPMessageContext(
52: MessageContext mc) {
53: SoapMessageContext soapMessageContext = (SoapMessageContext) MessageContextFactory
54: .createSoapMessageContext(mc);
55: ContextUtils.addProperties(soapMessageContext, mc);
56: return soapMessageContext;
57: }
58:
59: public void invokePostConstruct() throws EndpointLifecycleException {
60: }
61:
62: public void invokePreDestroy() throws EndpointLifecycleException {
63: }
64:
65: }
|