tags:

views:

294

answers:

2

Hello Experts, Our organization uses IBM FileNet as document management system. FileNet P8 comes with a web services API which can be used in .net

Has anyone of you guys tried this? If yes could you please direct me to any resources to kick start?

Thanks a ton in advance.

http://publib.boulder.ibm.com/infocenter/p8docs/v4r5m1/index.jsp?topic=/com.ibm.p8.doc/developer_help/content_engine_api/guide/gs_procedures.htm

A: 

You're in the right place for documentation related to the P8 .Net API. The only other "kick-start" link I can think of is http://www.ecmplace.com/.

I know how to create a session using the Java API for the CE, but I'm sorry to say that I haven't done it with the .Net API. However, I'm fairly certain that you'll find helpful examples on the ECM Place forum.

HTH!

Tom Purl

Tom Purl
A: 

The FileNet API comes in 4 flavors:

  • Java - jar reference, configure to use either http or iiop transport
  • .NET - .NET dll reference, configure for http transport
  • CEWS - Content Engine Web Services. Use only if you can't use the Java or .NET API
  • COM - semi-legacy, not discussed in the docs, but it does exist

Although the .NET API uses web services in the background, your .NET project reference is to FileNet.Api.dll, rather than directly to the WSDL. So if you're a .NET shop, you want the .NET API, not the "Web Services API".

The best place to get started is the "Bulk Loader Sample Code" here: http://www-01.ibm.com/support/docview.wss?rs=3278&uid=swg27010422

Jeffrey Knight