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