DataInput[] dataInputs = new DataInput[]{
new DataInputStream(new ByteArrayInputStream(new byte[]{0, 'A', 0, 'n', 0, ' '})),
new DataInputStream(new ByteArrayInputStream(new byte[]{
0, 'e', 0, 'x', 0, 'a', 0, 'm', 0, 'p', 0, 'l', 0, 'e'})),};
DataInput dataInput = (DataInput)Failover.object(
DataInput.class, new StandardProxyFactory(), dataInputs, IOException.class);
StringBuffer buffer = new StringBuffer();
try {
while (buffer.append(dataInput.readChar()) != null)
;
} catch (IOException e) {