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: */package org.apache.cxf.systest.provider;
19:
20: import java.io.InputStream;
21:
22: import javax.jws.HandlerChain;
23: import javax.xml.namespace.QName;
24: import javax.xml.soap.MessageFactory;
25: import javax.xml.soap.SOAPBody;
26: import javax.xml.soap.SOAPMessage;
27: import javax.xml.ws.Provider;
28: import javax.xml.ws.Service;
29: import javax.xml.ws.ServiceMode;
30: import javax.xml.ws.WebServiceProvider;
31:
32: import org.w3c.dom.Node;
33:
34: //The following wsdl file is used.
35: //wsdlLocation = "/trunk/testutils/src/main/resources/wsdl/hello_world_rpc_lit.wsdl"
36: @WebServiceProvider(portName="SoapPortProviderRPCLit1",serviceName="SOAPServiceProviderRPCLit",targetNamespace="http://apache.org/hello_world_rpclit",wsdlLocation="wsdl/hello_world_rpc_lit.wsdl")
37: @ServiceMode(value=Service.Mode.MESSAGE)
38: @HandlerChain(file="./handlers_invocation.xml",name="TestHandlerChain")
39: public class HWSoapMessageProvider implements Provider<SOAPMessage> {
40:
41: private static QName sayHi = new QName(
42: "http://apache.org/hello_world_rpclit", "sayHi");
43: private static QName greetMe = new QName(
44: "http://apache.org/hello_world_rpclit", "greetMe");
45: private SOAPMessage sayHiResponse;
46: private SOAPMessage greetMeResponse;
47:
48: public HWSoapMessageProvider() {
49:
50: try {
51: MessageFactory factory = MessageFactory.newInstance();
52: InputStream is = getClass().getResourceAsStream(
53: "resources/sayHiRpcLiteralResp.xml");
54: sayHiResponse = factory.createMessage(null, is);
55: is.close();
56: is = getClass().getResourceAsStream(
57: "resources/GreetMeRpcLiteralResp.xml");
58: greetMeResponse = factory.createMessage(null, is);
59: is.close();
60: } catch (Exception ex) {
61: ex.printStackTrace();
62: }
63: }
64:
65: public SOAPMessage invoke(SOAPMessage request) {
66: SOAPMessage response = null;
67: try {
68: SOAPBody body = request.getSOAPBody();
69: Node n = body.getFirstChild();
70:
71: while (n.getNodeType() != Node.ELEMENT_NODE) {
72: n = n.getNextSibling();
73: }
74: if (n.getLocalName().equals(sayHi.getLocalPart())) {
75: response = sayHiResponse;
76: } else if (n.getLocalName().equals(greetMe.getLocalPart())) {
77: response = greetMeResponse;
78: }
79: } catch (Exception ex) {
80: ex.printStackTrace();
81: }
82: return response;
83: }
84: }
|