tim taylor created PROTON-1606:
----------------------------------

             Summary: (Proton-J) Using Sasl needs to be optional
                 Key: PROTON-1606
                 URL: https://issues.apache.org/jira/browse/PROTON-1606
             Project: Qpid Proton
          Issue Type: Improvement
          Components: proton-j
    Affects Versions: proton-j-0.22.0
         Environment: N/A
            Reporter: tim taylor


In order for my application to use Proton-j for amqps messaging, the Sasl layer 
cannot be created by the global handler (IOHandler) at CONNECTION_LOCAL_OPEN 
time. The code below breaks our ability to use proton-j for amqps messaging 
against our service.

    private void handleOpen(Reactor reactor, Event event) {
        ...
        Sasl sasl = transport.sasl();
        sasl.client();
        sasl.setMechanisms("ANONYMOUS");
        ...
    }

I need these three lines of code to be optional in the global handler, or for a 
new API that allows a transport implementation to undo creating the Sasl layer.

Something like:

    ....
    Transport transport = event.getConnection().getTransport();
    transport.disableSasl();
    ....




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org

Reply via email to