Integration Server triggers document processing controlling the number of concurrent threads

I would like to change the document processing mode of an Integration Server (v6.1) trigger programmatically. For example, I’d like to write a service that can change a trigger from processing documents serially to processing concurrently with 3 threads. Is this possible? I’ve searched this website and the webMethods knowledgebase.

Thanks in advance!

Best Regards,

Mike

Hi All,

Can disabling a trigger on an IS in clustered environment, automatically disables same trigger in same namespace on other IS’s in cluster?
pls. explain.

My Environment :IS6.1,winXP.

Regards,
Puneet Saxena

Hi All,

Can disabling a trigger on an IS in clustered environment, automatically disables same trigger in same namespace on other IS’s in cluster?
pls. explain.

My Environment :IS6.1,winXP.

Regards,
Puneet Saxena

Hi Michael - I don’t you can programatically change your trigger property from “Serial” to “Concurrent” (not that I know of at least). As a work around, can you do this:

  • set a flag in the document (e.g., CONCURRENT = YES)
  • republish the document in your flow
  • create a concurrent trigger that subscribes to that updated document (with CONCURRENT flag as filter)
  • and away you go with multi-threaded service invocations :slight_smile: