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.
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.
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.
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