01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the "License"). You may not use this file except
05: * in compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://jwsdp.dev.java.net/CDDLv1.0.html
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * HEADER in each file and include the License file at
14: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
15: * add the following below this CDDL HEADER, with the
16: * fields enclosed by brackets "[]" replaced with your
17: * own identifying information: Portions Copyright [yyyy]
18: * [name of copyright owner]
19: */
20: /*
21: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
22: *
23: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
24: *
25: * The contents of this file are subject to the terms of either the GNU
26: * General Public License Version 2 only ("GPL") or the Common Development
27: * and Distribution License("CDDL") (collectively, the "License"). You
28: * may not use this file except in compliance with the License. You can obtain
29: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
30: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
31: * language governing permissions and limitations under the License.
32: *
33: * When distributing the software, include this License Header Notice in each
34: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
35: * Sun designates this particular file as subject to the "Classpath" exception
36: * as provided by Sun in the GPL Version 2 section of the License file that
37: * accompanied this code. If applicable, add the following below the License
38: * Header, with the fields enclosed by brackets [] replaced by your own
39: * identifying information: "Portions Copyrighted [year]
40: * [name of copyright owner]"
41: *
42: * Contributor(s):
43: *
44: * If you wish your version of this file to be governed by only the CDDL or
45: * only the GPL Version 2, indicate your decision by adding "[Contributor]
46: * elects to include this software in this distribution under the [CDDL or GPL
47: * Version 2] license." If you don't indicate a single choice of license, a
48: * recipient has the option to distribute your version of this file under
49: * either the CDDL, the GPL Version 2 or to extend the choice of license to
50: * its licensees as provided above. However, if you add GPL Version 2 code
51: * and therefore, elected the GPL Version 2 license, then the option applies
52: * only if the new code is made subject to such option by the copyright
53: * holder.
54: */
55:
56: package soap;
57:
58: import java.io.ByteArrayInputStream;
59:
60: import javax.xml.soap.*;
61: import javax.xml.transform.stream.StreamSource;
62:
63: import junit.framework.TestCase;
64:
65: public class SOAPPartTest extends TestCase {
66:
67: public SOAPPartTest(String name) {
68: super (name);
69: }
70:
71: public void testGetChildNodes() throws Exception {
72: String testDoc = "<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'\n"
73: + " xmlns:ns1='http://example.com/wsdl'>\n"
74: + " <env:Body>\n"
75: + " <ns1:sayHello>\n"
76: + " <String_1>Duke!</String_1>\n"
77: + " </ns1:sayHello>\n"
78: + " </env:Body>\n"
79: + "</env:Envelope>\n";
80:
81: byte[] testDocBytes = testDoc.getBytes("UTF-8");
82: ByteArrayInputStream bais = new ByteArrayInputStream(
83: testDocBytes);
84: StreamSource strSource = new StreamSource(bais);
85: MessageFactory mf = MessageFactory.newInstance();
86: SOAPMessage sm = mf.createMessage();
87: SOAPPart sp = sm.getSOAPPart();
88: sp.setContent(strSource);
89: assertTrue(sp.getChildNodes().getLength() > 0);
90: }
91: }
|