Hello
I have a Java client which connects to Openfire on my server. When I run Openfire 4.0.1 with the build provided by Igniterealtime, I can connect and log in from the client with no issue. However, I need some changes, so I edited the sources from Github (4.1.0 beta), which I compile correctly. When I run the exact same client with exact same login credentials, I can establish the connection to the server, but the authentication fails (not-authorized).
For the client, I use Smack library, with following Gradle settings:
compile group: 'org.igniterealtime.smack', name: 'smack-core', version: '4.1.7'
compile group: 'org.igniterealtime.smack', name: 'smack-tcp', version: '4.1.7'
compile group: 'org.igniterealtime.smack', name: 'smack-extensions', version: '4.1.7'
compile group: 'org.igniterealtime.smack', name: 'smack-java7', version: '4.1.7'
compile group: 'org.igniterealtime.smack', name: 'smack-sasl-provided', version: '4.1.7'
All properties on the server build from the sources or from package are the same.
What am I missing ?
Thank you in advance.