环境:tomcat6,lunix,finereport7. 我按照帮助文档新建了cluster.xml文件。112上的内容如下: <?xml version="1.0" encoding="UTF-8" ?> <ClusterConfig useCluster="true"> <ClusterService isSelf="true"> <ServiceName>A</ServiceName> <ip>192.168.1.112</ip> <port>8000</port> <WebAppName>WebReport</WebAppName> </ClusterService> <ClusterService> <ServiceName>B</ServiceName> <ip>192.168.1.113</ip> <port>8000</port> <WebAppName>WebReport</WebAppName> </ClusterService> </ClusterConfig> 113 上 只是把 isSelf="true" 这个加到了 <ClusterService isSelf="true"> <ServiceName>B</ServiceName> 其他不变。 在我本地测试: http://192.168.1.112:8000/WebReport/ReportServer?op=fr_platform. http://192.168.1.113:8000/WebReport/ReportServer?op=fr_platform 都没有问题。 但是在我本地按照文档中说的,http://192.168.1.112:8000/WebReport/ReportServer?op=cluster_test,提示 Unresolvable Operation:cluster_test 无效的。这是为什么?请高手指点,谢谢。。。 |