The link describes configuring qpidd, which is what the file names you referenced are configuration from, for use with the Cyrus SASL library (proton-c can also use cyrus, but has its own configuration for that).
I think what you are asking is how to configure proton-j similarly. Proton-j does not use Cyrus SASL, so there are no equivalents of those files. The proton-j engine exposes a low level API to read/manipulate the SASL frame details, so if you are using the engine directly you would need to implement support for particular mechanisms. E.g the following class https://github.com/apache/activemq/blob/master/activemq-amqp/src/main/java/org/apache/activemq/transport/amqp/sasl/PlainMechanism.java is part of how ActiveMQ5 does PLAIN using it. Robbie On 31 October 2016 at 06:57, Artem <[email protected]> wrote: > Robbie, > > this links describe PLAIN mechanism for Proton-C, but i`m using Proton-J. It > will be nice to have PLAIN or other mechanisms in Proton-J for > authentication on the server side. > > link1 > <https://qpid.apache.org/releases/qpid-0.30/cpp-broker/book/chap-Messaging_User_Guide-Security.html#sect-Messaging_User_Guide-User_Authentication-Configuring_SASL> > > link2 > <https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=51812103> > > Thanks, > Artem > > > > -- > View this message in context: > http://qpid.2158936.n2.nabble.com/SSL-server-tp7652063p7652647.html > Sent from the Apache Qpid users mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
