Reputation: 65491
We have a process in WPS, that does the following:
These are just basic WCF web services, they are not WS-* services, so they cannot use a transaction.
For some reason WPS insists on running this as a transaction. The problem we experience is that if these web service calls take too long the transaction timesout.
Is there some way we can stop WPS treating this as a transaction?
Upvotes: 0
Views: 590
Reputation: 686
Or you can disable the transaction (not recommended)
Follow the IBM for details:
Upvotes: 1
Reputation: 46
What version of Process Server are you using and how are you invoking the webservice (in a BPEL micro flow or long running process). Usually webservice calls should not take a long time. If they are taking more than 2 mins, I personally think that the architecture should be revisited. The following are your options:
Upvotes: 1