我正在尝试从ManifoldCF连接到FileNet,但没有成功。我得到的错误是
Connection status: Connection temporarily failed: Connection refused to host: 127.0.0.1; nested exception is: java.net.ConnectException: Connection refused: connect下面是我的参数摘要。请注意,我将*放在我不确定的参数旁边,服务器名称和用户名都是虚构的
FileNet domain=test-my-filenet-domain *
User ID=myusername
Server protocol=http
Server WebServices location=wsi/FNCEWS40DIME *
Object store=Test OS
Document URL protocol=http
Document URL hostname=samplehost.mycomp.org
Document URL location=Workplace/Browse.jsp
Server port=7003
Server hostname=samplehost-wp.mycomp.org
Document URL port=443
Password=********我已验证FileNet CE ping页已在url http://samplehost.mycomp.org:7003/FileNet/Engine上启动并正在运行
经典的工作场所可以在https://samplehost-wp.mycomp.org/Workplace上买到。注意,Workplace是通过HTTPS的,CE是通过HTTP的
有没有人成功地使用Apache Manifold连接到了FileNet代码库?
发布于 2016-09-20 03:21:02
我已经弄明白了。根据构建MCF https://manifoldcf.apache.org/release/release-2.5/en_US/how-to-build-and-deploy.html#Building+and+running+the+FileNet+connector的文档。对于FileNet和Documentum,还必须运行另外两个进程。在运行服务器进程之前,必须先运行注册表进程。
<MCF_Install>/processes/filenet-registry/run.[bat|sh]
<MCF_Install>/processes/filenet-server/run.[bat|sh]从Apache代码库中,您可以看到它是make a local connection (125行),即https://apache.googlesource.com/manifoldcf/+/CONNECTORS-474/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java。这就是它失败的地方,因为依赖进程还没有运行。
请注意,MCF2.4版适用于FileNet 4.5。如果您运行的是较新版本的FileNet,则需要将所有FileNet CEWS客户端jars添加到
<MCF_Install>/processes/filenet-server/lib-proprietary我正在运行ACCE5.2,并且能够从FileNet下载所有的jar。此外,如果您运行的是较新版本的FileNet,则web服务位置是wsi/FNCEWS40MTOM或wsi/FNCEWS40SOAP。wsi/FNCEWS40DIME已弃用。
发布于 2016-09-15 22:06:42
您可以通过使用FileNet或ACCE域来定位您的有限元分析域。当您第一次登录到ACCE或FEM时,域是第一个(顶部)条目。
FileNet P8 domain
没有提到您的FileNet版本。如果您连接的是FileNet version 5.1+,则您的Server WebServices location应为:Server WebServices location=wsi/FNCEWS40MTOM/
我假设您使用的是基于端口号的WebLogic;并且您在该服务器上的第三个WebLogic服务实例中(默认是7001,您在7003)。:IBM FileNet P8 ports
您的错误消息表明您找不到位于指定端口的服务;具体地说,它无法连接到本地主机上的某个端口。验证主机是否与ManifoldCF在同一台服务器上运行FileNet。
http://127.0.0.1:7003/FileNet/Engine能工作吗?
https://stackoverflow.com/questions/39380355
复制相似问题