new InetSocketAddress(url.getHost(), url.getPort() == -1 ? 80 : url.getPort());
socket = new Socket();
socket.connect(add);
return socket.getOutputStream();
} catch (MalformedURLException e) {
throw new AxisFault(e.getMessage(), e);
} catch (IOException e) {
throw new AxisFault(e.getMessage(), e);
}
} else {
throw new AxisFault("to EPR must be specified");
}
}