码迷,mamicode.com
首页 > 其他好文 > 详细

[openfire ] user service 插件 访问不到

时间:2014-08-01 10:46:01      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:blog   http   使用   os   ar   html   代码   div   

安照说明文档,我访问创建用户的url 如下http://127.0.0.1:9090/plugins/userservice/userservice?type=add&secret=bigsecret&username=kafka&password=drowssap&name=franz&email=franz@kafka.com

提示如下错误。

 <error>UserServiceDisabled</error>

bubuko.com,布布扣
     server = XMPPServer.getInstance();
        userManager = server.getUserManager();

        secret = JiveGlobals.getProperty("plugin.userservice.secret", "");
        // If no secret key has been assigned to the user service yet, assign a random one.
        if (secret.equals("")){
            secret = StringUtils.randomString(8);
            setSecret(secret);
        }
        
        // See if the service is enabled or not.
        enabled = JiveGlobals.getBooleanProperty("plugin.userservice.enabled", false);
bubuko.com,布布扣

 

看源码 原来我们需要在系统属性里面设置 plugin.userservice.enabled 为 true 

在openfire 的管理页面 的 服务器-> 系统属性里面 添加 plugin.userservice.enabled 值为 true, 

添加secret key ,plugin.userservice.secret 为 bigsecret (做鉴权使用), 或者将ip 添加进白名单里面

经过上面的一番折腾后,我们就可以使用 user service  插件了

[openfire ] user service 插件 访问不到,布布扣,bubuko.com

[openfire ] user service 插件 访问不到

标签:blog   http   使用   os   ar   html   代码   div   

原文地址:http://www.cnblogs.com/merlini/p/3884317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!