Closed Rohith2304 closed 3 years ago
Yes:
@Override
protected void fillVoiceXmlDocument(Document document,
Element formElement,
VoiceXmlDialogueContext dialogueContext)
throws VoiceXmlDocumentRenderingException {
Element vxmlElement = (Element) formElement.getParentNode();
Element secondFormElement = appendNewElement(vxmlElement, VoiceXmlDomUtil.FORM_ELEMENT);
...
I'm curious. Why do you need 2 forms at all? Unless you are doing something very unusual, you shouldn't not have to do this.
Thank you so much gawi for your response. It really helped me a lot
Can we create two separate
<form>
tags usingfillVoiceXmlDocument
? if not, is there any other alternative for that?