Menu

#8 packet-handler with multiple values won't fire.

open
nobody
None
5
2007-04-03
2007-04-03
Anonymous
No

In jradius-config.xml, this line:

<packet-handler type="authorize,post_auth" handler="LocalUsers"/>

fails to chain the actions together because XMLConfiguration.java in jradius, method: getConfigString only returns a single value. It can't handle a comma separated list.

A simple fix is this:

<packet-handler type="authorize" handler="LocalUsers"/>
<packet-handler type="post_auth" handler="LocalUsers"/>

-=david=-

Discussion


Log in to post a comment.