protected void hitIIOPServer() throws Exception {
SynchChannel channel = channelFactory.openSynchChannel(server.getConnectURI());
((SocketMetadata)channel.narrow(SocketMetadata.class)).setTcpNoDelay(true);
channel.write(new ByteArrayPacket("GIOPcrapcrap".getBytes("UTF-8")));
channel.flush();
channel.dispose();
}
public void testUnknownAccept() throws IOException, URISyntaxException, InterruptedException {
SynchChannel channel = channelFactory.openSynchChannel(server.getConnectURI());
((SocketMetadata)channel.narrow(SocketMetadata.class)).setTcpNoDelay(true);