我正在尝试使用 LiveTribe SLP 模块 (http://livetribe.codehaus.org/LiveTribe-SLP) 为应用程序提供 SLP 服务。我想将端口从 427 完全更改为其他端口。文档很少,更令人困惑的是,在常见问题解答中,它声称链接到一个示例,该示例可以准确地向我展示我正在寻找的内容。不幸的是,它没有(除非我忽略了某些东西)。有谁知道如何做到这一点?
问问题
143 次
2 回答
2
这里有一个客户端和服务器示例:http:
//livetribe.org/SLP-Examples-JMX
(链接断开。)
这些是服务器端的重要行:
// Allow this code to be run by non-root users on Linux/Unix
Settings settings = new MapSettings();
settings.put(Keys.PORT_KEY, 4427);
// Create the SLP ServiceAgent that advertises the JMX service
ServiceAgent serviceAgent = SLP.newServiceAgent(settings);
在客户端:
// Allow this code to be run by non-root users on Linux/Unix
Settings settings = new MapSettings();
settings.put(Keys.PORT_KEY, 4427);
// Create the SLP UserAgentClient that discovers services
UserAgentClient userAgentClient = SLP.newUserAgentClient(settings);
于 2012-04-04T16:42:27.337 回答
1
对不起,糟糕的文档。自从我们将网站的 L&F 更改为使用 Twitter Bootstrap 后,我们就遇到了问题。
该页面现在应该完全呈现: http:
//livetribe.org/SLP-Examples-JMX
链接已损坏。
于 2012-04-05T14:37:19.070 回答