Which revision of the code are you using...
For me, this line:
at
org.apache.qpid.server.protocol.AMQMinaProtocolSession.dataBlockReceived(
AMQMinaProtocolSession.java:206)
resolves to this
locales.getBytes(), // locales
which given that locales is defines not moments before as String locales =
"en_US" is very unlikley to be the throw an NPE, and thus I'm assuming your
line 206 isn;t the same as mine :-)
The only line close that looks like it could NPE is the next one:
mechanisms.getBytes(), // mechanisms
Which would imply that your authentication manager hasn't configured itself
properly.
The config.xml you sent... is that the *whole* of your config? i.e. have
you purposefully deleted all the other config from it?
You probably want to run with a config which contains all the standard
config + what you have added (apologies if this is what you are already
doing).
- Rob