RadiusClient rc = new RadiusClient("xx.xx.xx.xx","0000");
AccountingRequest acc = new AccountingRequest("michael",AccountingRequest.ACCT_STATUS_TYPE_START);
acc.addAttribute("Framed-IP-Address", "1.1.1.1");
acc.addAttribute("Class","Key CL: PT=C");
rc.account(acc);
rc.close();
我尝试通过创建如上所述的jsp页面向我的会计服务器发送一个会计请求。
但是,只有
acc.addAttribute("Framed-IP-Address", "1.1.1.1")可以接受,发送属性类型no.25“Class”时出现错误,使用
acc.addAttribute("Class","Key CL: PT=C")哪里出错了?!
< / p>
答案 0 :(得分:0)
最后我找到了答案,属性&#34; Class&#34; ,需要通过方法添加:
acc.addAttribute(new StringAttribute(25,"Key CL: PT=C"));