1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test.functional;
import junit.framework.TestCase;
import org.apache.axis.AxisFault;
import org.apache.axis.components.logger.LogFactory;
import org.apache.commons.logging.Log;
import samples.jaxm.DelayedStockQuote;
import javax.xml.messaging.URLEndpoint;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.Name;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPBodyElement;
import javax.xml.soap.SOAPConnection;
import javax.xml.soap.SOAPConnectionFactory;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPMessage;
import java.net.SocketException;
/**
* Test the JAX-RPC compliance samples.
*/
public class TestJAXMSamples extends TestCase {
static Log log = LogFactory.getLog(TestJAXMSamples.class.getName());
public TestJAXMSamples(String name) {
super(name);
} // ctor
// // This is timing out for some reason - removed for the nonce.
// // -- gdaniels, 4/21/2003
// public void testUddiPing() throws Exception {
// try {
// log.info("Testing JAXM UddiPing sample.");
// UddiPing.searchUDDI("IBM", "http://www-3.ibm.com/services/uddi/testregistry/inquiryapi");
// log.info("Test complete.");
// } catch (javax.xml.soap.SOAPException e) {
// Throwable t = e.getCause();
// if (t != null) {
// t.printStackTrace();
// if (t instanceof AxisFault) {
// AxisFault af = (AxisFault) t;
// if ((af.detail instanceof SocketException) ||
// (af.getFaultCode().getLocalPart().equals("HTTP")) ) {
// System.out.println("Connect failure caused JAXM UddiPing to be skipped.");
// return;
// }
// }
// throw new Exception("Fault returned from test: " + t);
// } else {
// e.printStackTrace();
// throw new Exception("Exception returned from test: " + e);
// }
// } catch (Throwable t) {
// t.printStackTrace();
// throw new Exception("Fault returned from test: " + t);
// }
// } // testGetQuote
public void testDelayedStockQuote() throws Exception {
try {
log.info("Testing JAXM DelayedStockQuote sample.");
DelayedStockQuote stockQuote = new DelayedStockQuote();
System.out.print("The last price for SUNW is " + stockQuote.getStockQuote("SUNW"));
log.info("Test complete.");
} catch (javax.xml.soap.SOAPException e) {
Throwable t = e.getCause();
if (t != null) {
t.printStackTrace();
if (t instanceof AxisFault) {
AxisFault af = (AxisFault) t;
if ((af.detail instanceof SocketException)
|| (af.getFaultCode().getLocalPart().equals("HTTP"))) {
System.out.println("Connect failure caused JAXM DelayedStockQuote to be skipped.");
return;
}
}
throw new Exception("Fault returned from test: " + t);
} else {
e.printStackTrace();
throw new Exception("Exception returned from test: " + e);
}
} catch (Throwable t) {
t.printStackTrace();
throw new Exception("Fault returned from test: " + t);
}
} // testGetQuote
public void testJWSFault() throws Exception {
try {
SOAPConnectionFactory scFactory = SOAPConnectionFactory.newInstance();
SOAPConnection con = scFactory.createConnection();
MessageFactory factory = MessageFactory.newInstance();
SOAPMessage message = factory.createMessage();
SOAPEnvelope envelope = message.getSOAPPart().getEnvelope();
SOAPBody body = envelope.getBody();
Name bodyName = envelope.createName("echo");
SOAPBodyElement bodyElement = body.addBodyElement(bodyName);
Name name = envelope.createName("arg0");
SOAPElement symbol = bodyElement.addChildElement(name);
symbol.addTextNode("Hello");
URLEndpoint endpoint = new URLEndpoint("http://localhost:8080/jws/FaultTest.jws");
SOAPMessage response = con.call(message, endpoint);
SOAPBody respBody = response.getSOAPPart().getEnvelope().getBody();
assertTrue(respBody.hasFault());
} catch (javax.xml.soap.SOAPException e) {
Throwable t = e.getCause();
if (t != null) {
t.printStackTrace();
if (t instanceof AxisFault) {
AxisFault af = (AxisFault) t;
if ((af.detail instanceof SocketException)
|| (af.getFaultCode().getLocalPart().equals("HTTP"))) {
System.out.println("Connect failure caused testJWSFault to be skipped.");
return;
}
}
throw new Exception("Fault returned from test: " + t);
} else {
e.printStackTrace();
throw new Exception("Exception returned from test: " + e);
}
} catch (Throwable t) {
t.printStackTrace();
throw new Exception("Fault returned from test: " + t);
}
}
public static void main(String args[]) throws Exception {
TestJAXMSamples tester = new TestJAXMSamples("tester");
//tester.testUddiPing();
} // main
}
|