public Session(final Connection connection, String name)
{
_connection = connection;
_endpoint = connection.getEndpoint().createSession(name);
_sectionEncoder = new SectionEncoderImpl(connection.getEndpoint().getDescribedTypeRegistry());
_sectionDecoder = new SectionDecoderImpl(connection.getEndpoint().getDescribedTypeRegistry());
}