URL endpoint =
new URL ("http://gurari.cis.ohio-state.edu/servlet/GetSOAP");
SOAPConnectionFactory soapConnectionFactory =
SOAPConnectionFactory.newInstance();
SOAPConnection connection = soapConnectionFactory.createConnection();
response = connection.call(message, endpoint);
connection.close();
-_-_-