43444546474849
try { marshaller.connect(); } catch (final IOException e) { throw new ConnectionException(e); } return new ServerConnectionDefault(serverFacade, marshaller); }
45464748495051
try { serverMarshaller.connect(); } catch (final IOException e) { throw new ConnectionException(e); } return new ServerConnectionDefault(distribution, serverMarshaller); }
44454647484950
try { serverMarshaller.connect(); } catch (final IOException e) { throw new ConnectionException(e); } return new ServerConnectionDefault(serverFacade, serverMarshaller); }
88899091929394
final EncodingMarshaller marshaller = new EncodingMarshaller(configuration, transport); // this is a no-op with the SimpleTransport, but include for consistency marshaller.connect(); return new ServerConnectionDefault(serverFacade, marshaller); }
46474849505152
89909192939495