01: /*
02: * Copyright 2002-2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package samples.message;
18:
19: import org.w3c.dom.Element;
20: import javax.xml.soap.SOAPEnvelope;
21: import javax.xml.soap.Name;
22: import javax.xml.soap.SOAPBody;
23: import javax.xml.soap.SOAPBodyElement;
24: import javax.xml.soap.SOAPHeader;
25: import javax.xml.soap.SOAPElement;
26:
27: /**
28: * Simple message-style service sample.
29: */
30: public class MessageService {
31: /**
32: * Service method, which simply echoes back any XML it receives.
33: *
34: * @param elems an array of DOM Elements, one for each SOAP body element
35: * @return an array of DOM Elements to be sent in the response body
36: */
37: public Element[] echoElements(Element[] elems) {
38: return elems;
39: }
40:
41: public void process(SOAPEnvelope req, SOAPEnvelope resp)
42: throws javax.xml.soap.SOAPException {
43: SOAPBody body = resp.getBody();
44: Name ns0 = resp.createName("TestNS0", "ns0",
45: "http://example.com");
46: Name ns1 = resp.createName("TestNS1", "ns1",
47: "http://example.com");
48: SOAPElement bodyElmnt = body.addBodyElement(ns0);
49: SOAPElement el = bodyElmnt.addChildElement(ns1);
50: el.addTextNode("TEST RESPONSE");
51: }
52: }
|