07-19-2016 11:31 AM
Hello All,
Are there any pros and cons of using CVP subflows from a CVP application architecture and performance standpoint?
As per my understanding of how the subflows works in CVP, following are the pros and cons of subflow over subdialog:
Pros:
Con:
Other than the above, I am interested to know if there are any specific pros and cons (especially Con) because we plan to use the subflows extensively in our CVP application architecture.
Any thoughts, comments and suggestions are really appreciated.
Thanks & regards,
Roshan
07-25-2016 03:30 AM
Kindly find the below link for more information.
07-25-2016 08:37 AM
Hello Mohini,
Thanks for sharing the link, it was very helpful to understand the CVP subdialog option. However, there is nothing specific mentioned about the CVP subflows in that thread which is a new concepts introduced in CVP 10.5
Any information/link which provides details about subflows specifically (pros/cons/impact etc..)?
Also request other in the community to comment based on their experience with CVP Subflows.
Thanks & regards,
Roshan
03-22-2017 06:28 AM
Hey Roshan, did you end up using Sub flow or subdialogs? One deal breaker for me was inability to re-use subflows across multiple CVP applications, it seems the subflows must be nested under a specific CVP app. We use subdialogs because of this limitation.
Which is a bummer because as you mentioned a subflow would keep the transfer local to VXMLServer vs sending a new VoiceXML page to the gateway and opening another session with another app when doing a subdialog. There has to be a performance overhead to doing that, however small it may be.
03-22-2017 07:50 AM
I've found the following 'features' with subflows. None are
deal-breakers, but nice to know!
a. Because element data and local data are only available within a
subflow, they are not available in the End of Call Java class where you
might be trying to access them for reporting.
b. However, element data and local variables are 'persistent' - so if
you call a subflow multiple times, all its variables will RETAIN their
previous values. This is important if using something like Counter
element - it will NOT initialize the 2nd time you call it.
c. An application transfer fails from within a subflow, however
CVP_Subdialog_Return works fine
d. If using getElementHistory() and getExitStateHistory() in End of Call
Java, they do not align correctly for elements within the Subflow - it
seems the SubflowCall element has no exit state until you exit the
subflow, at which point things seem to align correctly again!
e. If using getElementHistory() within a subflow, the element names
include the name of the subflow SubflowName.ElementName. However, if
you then try to use this with the getElementData() method, it fails
because it wants to know 'JUST' the name of the element, so you must
strip off the subflow name.
03-22-2017 07:58 AM
Wow thanks Janine, that is super helpful to know upfront!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide