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.stream.StreamSource;
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="SoapPortProviderRPCLit5",serviceName="SOAPServiceProviderRPCLit",targetNamespace="http://apache.org/hello_world_rpclit",wsdlLocation="/wsdl/hello_world_rpc_lit.wsdl")
37: @ServiceMode(value=Service.Mode.MESSAGE)
38: public class HWStreamSourceMessageProvider implements
39: Provider<StreamSource> {
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 InputStream sayHiInputStream;
46: private InputStream greetMeInputStream;
47: private MessageFactory factory;
48:
49: public HWStreamSourceMessageProvider() {
50:
51: try {
52: factory = MessageFactory.newInstance();
53: sayHiInputStream = getClass().getResourceAsStream(
54: "resources/sayHiRpcLiteralResp.xml");
55: greetMeInputStream = getClass().getResourceAsStream(
56: "resources/GreetMeRpcLiteralResp.xml");
57:
58: } catch (Exception ex) {
59: ex.printStackTrace();
60: }
61: }
62:
63: public StreamSource invoke(StreamSource request) {
64: StreamSource response = new StreamSource();
65: try {
66: SOAPMessage msg = factory.createMessage();
67: msg.getSOAPPart().setContent(request);
68: SOAPBody body = msg.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.setInputStream(sayHiInputStream);
76: } else if (n.getLocalName().equals(greetMe.getLocalPart())) {
77: response.setInputStream(greetMeInputStream);
78: }
79: } catch (Exception ex) {
80: ex.printStackTrace();
81: }
82: return response;
83: }
84:
85: }
|