2013-07-31 100 views
0

我正在使用本指南(guideline page)集成IBM Connections和IBM Websphere Portal。IBM Connections和IBM Websphere Portal集成

要部署门户网站应用程序归档SNPortlets.paa我需要知道的连接安装(网络部署安装)几个参数来运行脚本:

-DICportletWebapp=portletWebapp 
-DICblogsHomepageHandle=homepagehandle 
-DICemailSetting=emailSetting 
-DICtagSearchType=tagSearchType 
-DICdsxAdminId= 
-DICdsxAdminPwd= 

(那些我试着想出)

-DICbaseURL=https://connections_domain 
-DICprofilesContextRoot=/profiles 
-DICfilesContextRoot=/files 
-DICprofilesURL=https://connections_domain/profiles 
-DICprofilesURLunsecured=http://connections_domain/profiles 
-DICsearchContextRoot=/search 
-DICnewsContextRoot=/news 
-DICfilesURL=https://connections_domain/files 
-DICsearchURL=https://connections_domain/search 
-DICoauthURL=https://connections_domain/connections/oauth 
-DICnewsURL=https://connections_domain/news 
-DICoauthContextRoot=connections/oauth 

问题:有没有任何配置文件或其他来源我可以在哪里得到所有这些参数?

回答

0

确定它们通常包含在LotusConnections-config.xml中,它应该位于Deployment Manager中。

比如我的服务器上它位于... /local/con/opt/IBM/WebSphere/AppServer/profiles/Dmgr01/config/cells/localhostCell01/LotusConnections-config/LotusConnections-config.xml

<sloc:serviceReference acf_config_file="acf-config-nf.xml" bootstrapHost="" bootstrapPort="" clusterName="conCluster" enabled="true" person_card_service_name_js_eval="generalrs.label_personcard_activitieslink" person_card_service_url_pattern="/service/html/mainpage#dashboard%2Cmyactivities%2Cuserid%3D{userid}%2Cname%3D{displayName}" serviceName="activities" ssl_enabled="true"> 
    <sloc:href> 
     <sloc:hrefPathPrefix>/activities</sloc:hrefPathPrefix> 
     <sloc:static href="http://con.ihost.com:81" ssl_href="**https://con.ihost.com:444**"/> 
     <sloc:interService href="https://con.ihost.com:444"/> 
    </sloc:href> 
</sloc:serviceReference> 

-DICblogsHomepageHandle您的IBM Connections部署的博客主页句柄。默认是首页。 -DICemailSetting取决于IBM Connections服务器是配置为公开用户电子邮件地址还是隐藏它们,设置为电子邮件公开或电子邮件隐藏。 -DICtagSearchType设置为搜索或mysearch,具体取决于您希望标签云只显示公共内容的标签,还是显示公共内容的标签以及登录用户提供的内容。 -DICdsxAdminId配置文件和社区服务在dsx-admin角色中设置的用户标识。 -DICdsxAdminPwd dsx-admin用户的密码。 http://infolib.lotus.com/resources/connections/4.5.1/doc/accessible/plugins/en_us/html-wrapper.html

basicaly dsx-admin你不应该使用。 tagSearchType和emailSettings只是标志

+0

我还要提到的只是为了活动,还有其他很多喜欢它的其他服务,如论坛,我认为OAuth的 –

+0

从_LotusConnections-config.xml_我能得到一些参数(即原始消息中的第二个代码块)。但没有关于第一代码块的参数,如'-DICportletWebapp,-DICblogsHomepageHandle,-DICemailSetting, -DICtagSearchType,-DICdsxAdminId,-DICdsxAdminPwd' – rilaby

+0

dsxAdminId是您为目录扩展​​名分配给j2ee角色的id ...通常这将是您的wasadmin用户 –