.Net怎么调用FileNet P84.0 Content Engine and Process Engine

一般来讲,主要通过两个途径:
1)用FileNet Provided DLL or COM :
   FileNet.Api.DLL or JGuil Brdige

2)  用Web Service, 需要WSE2.0移植到WSE3.0
    以下两个web service是PE 和CE。
     http://host:port/wsi/FNCEWS35SOAP/
     http://host:port/wsi/ProcessEngineWS

主要介绍CE web service调用:
1) 可能需要测试一下web service在运行中,可以
  http://host:port/wsi/FNCEWS35SOAP/WSDL,注意区分大小
 
2) 可以自定义一个Provider DP,比如:    
<FileNetConfigation>
  
<User name="test" password="test" isneedencrypt="false" />
  
<ObjectStore name="test"  tolfolder="/test" tempfolder="/Temp" />
  
<FileNet contentengineurl="http://host:port/wsi/FNCEWS35SOAP/"   processengineurl="http://host:port/wsi/ProcessEngineWS" />
  
<MAX maxrow="100" maxsize="5242880" />
  
<DownLoad path="C:\\Temp\\" />
 
</FileNetConfigation>
 
<microsoft.web.services3>
  
<diagnostics>
   
<trace enabled="true" input="InputTrace.webinfo" output="OutputTrace.webinfo" />
   
<detailedErrors enabled="true" />
  
</diagnostics>
  
<policy fileName="wse3policyCache.config" />
 
</microsoft.web.services3>  

 

wse3policy


3) 自定义一个Policy (For PE): The codesnip is the following:

PEPolicy

4) 创建一个Wrapped Web Service Object:

WrapWS


posted @ 2007-08-23 21:36  花田本目  阅读(1364)  评论(4编辑  收藏  举报