- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-23-2023 04:28 AM - edited ‎08-23-2023 05:04 AM
Is there a way to debug business rules that run when a rest web service is called?
I've got an integration that is calling a rest webservice to insert and update incidents.
If I set "Debug Business Rules" I get the normal BR debug window. However when I call the rest service, the business rules that are being called (or skipped or whatever) are not being shown. (I've proven this by having a BR that has no conditions so fires every time and writes to the log.)
How can I find out what BRs are running and being skipped when the webservice is called?
(I've got a BR that is setting the state to In Progress. Some logging would indicate it's running, but the state isn't updated.)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-23-2023 05:15 AM
Hi
you cannot debug Business Rules for inbound web service requests as they are executed in the background and debugging only works for transaction within your user session
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-23-2023 05:15 AM
Hi
you cannot debug Business Rules for inbound web service requests as they are executed in the background and debugging only works for transaction within your user session
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-23-2023 06:44 AM
Well that is annoying but it makes sense. Thanks for coming back to me.