2356
Views
0
Helpful
0
Comments

Options
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 01-25-2014 10:09 AM
This document was generated from CDN thread
Created by: Phani Venigalla on 06-03-2012 09:44:32 PM
Hi,
I am working on Cisco unified call studio 8.0, I was trying to write a custom java class in the callstudio eclipse.
I am getting errors like Com.audium cannot be resolved in all import methods.
Please reply for the soultion asap.
Thanks,
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 06-03-2012 09:52:45 PM
Hi,
Can you please let me know what would be the CLASSPATH.
I am building Java file in callstudio eclipse and my workinf folder is "C:\Cisco\CallStudio\eclipse\workspace\MyMercy_Java"
Thanks,
Phani.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 06-03-2012 09:54:14 PM
I just love it when I see someone post “please reply with the solution ASAP”.
Please send money. ;-)
Regards,
Geoff
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 09:56:27 PM
Well I could see those jar files, C:\Cisco\CVP\VXMLServer\lib this folder
Please let me know where should i place this files..
Subject: RE: Com.audium cannot be resolved
Replied by: Janine Graves on 06-03-2012 10:02:25 PM
You have to create a java project in order to compile your java in eclipse.
Go to File > New > Java > Java Project, and enter a project name.
Then go to the Libraries tab and click 'Add External Jars' - and then
add the framework.jar and servlet2,3.jar (you can search for these 2
files, they are somewhere in the call studio/eclipse/plugins directory).
Then create a java file within the java project.
When you save the java file, it'll compile into a class file.
Then copy the compiled class file into your studio application, into the appname/deploy/java/application/classes directory.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 10:18:20 PM
Thanks for the reply it resolves some method some are not
i have given these packages in java file.
import com.audium.server.voiceElement.ActionElementBase;
import com.audium.server.voiceElement.ElementInterface;
import com.audium.server.voiceElement.Setting;
import com.audium.server.voiceElement.ElementData;
import com.audium.server.voiceElement.ElementException;
import com.audium.server.session.ActionElementData;
And this is the function i have written
public void doAction(String name, ActionElementData data) throws AudiumException
{
StringBuffer response = new StringBuffer("");
String phonenumber = (String)actionData.getSessionData("mPhonevar");
try {
// Send the request
URL url = new URL("http://lnxvmwas03d.smrcy.com:8080/claritygateway/providers/");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter writer = new OutputStreamWriter(conn.getOutputStream());
//write parameters
writer.write(phonenumber);
writer.flush();
// Get the response
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
writer.close();
reader.close();
//Output the response
actionData.setSessionData("response", response.toString());
} catch (MalformedURLException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
}
But still it gives these errors below.
AudiumException cannot be resolved to a type
actionData cannot be resolved
Thanks,
Phani
Subject: RE: Com.audium cannot be resolved
Replied by: Janine Graves on 06-03-2012 10:35:23 PM
Why don't you start with something simpler and get it to work first.
public class MyAction extends ActionElementBase{
public void doAction(String name, ActionElementData data) throws AudiumException
{
String callid=data.getSessionData("callid");
data.addToLog("callid",callid);
|
}
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 10:37:41 PM
Hi,
I could able to resolve issues except one.
Unhandled exception type AudiumException
Please help why this error is giving at this statemet "data.setSessionData("response", response.toString());"
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 10:42:38 PM
But AudiumException is giving error as cou;dnot resolve this type.
So i have given ElementException.
what need to be done if it should resolve AudiumException
Thanks
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 10:47:05 PM
Yes I did but still if can see my previous post you could find try/catch.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 11:00:43 PM
It only accepting ElementException not AudiumException.
what cases they use ...
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 06-03-2012 11:02:14 PM
import com.audium.server.AudiumException; On 3/6/2012 10:42 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Why don't you start with something simpler and get it to work first. public class MyAction extends ActionElementBase{ public void doAction(String name, ActionElementData data) throws AudiumException { String callid=data.getSessionData("callid"); data.addToLog("callid",callid); | } But AudiumException is giving error as cou;dnot resolve this type. So i have given ElementException.  what need to be done if it should resolve AudiumException  Thanks -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255490> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 11:09:23 PM
Thanks it resolved thanks for the help.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Janine Graves on 06-03-2012 11:12:14 PM
My mistake, with an action element, use ElementException, not AudiumException. On 3/6/2012 11:02 PM, Cisco Developer Community Forums wrote: Janine Graves has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- import com.audium.server.AudiumException; On 3/6/2012 10:42 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Why don't you start with something simpler and get it to work first. public class MyAction extends ActionElementBase{ public void doAction(String name, ActionElementData data) throws AudiumException { String callid=data.getSessionData("callid"); data.addToLog("callid",callid); | } But AudiumException is giving error as cou;dnot resolve this type. So i have given ElementException.  what need to be done if it should resolve AudiumException  Thanks -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255490> or simply reply to this email. -- Janine Graves -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255526> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 06-03-2012 09:48:14 PM
did you include framework.jar and servlet2.3.jar in the class path? On 3/6/2012 9:44 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Hi, Â I am working on Cisco unified call studio 8.0, I was trying to write a custom java class in the callstudio eclipse. I am getting errors like Com.audium cannot be resolved in all import methods. Â Please reply for the soultion asap. Â Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255393> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 06-03-2012 10:43:14 PM
Just surround it with a try/catch. On 3/6/2012 10:37 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Hi, I could able to resolve issues except one. Unhandled exception type AudiumException Please help why this error is giving at this statemet "data.setSessionData("response", response.toString());" Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255487> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 08-03-2012 08:19:11 PM
Hi,
I am usign CVP call Studio 8.0(1), I need to read the voiceXML output coming from http url response by using TTS engine.
What are the methods i need to follow , What are the steps to follw.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 03:57:39 PM
Hi,
I am using CVP Callstudio 8.0(1). I need to read Vxml output coming from URL.
What i have done so far , I wrote custom class file put it in action element i am getting some response from URL and storing in session variable.
How to check whether i am getting correct VXML output. Because i need to read this vxml output from Nuance TTS.
Please let me know where i can find the log to see the output coming out of url response.
Thanks,
Phani.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 02-04-2012 04:14:16 PM
It should be simple. Once you store that output in session variable, you can log it. It will write to the activity log. For example you could have a element api that writes to the log.
Hemal
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 2:58 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: RE: Com.audium cannot be resolved
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Hi,
I am using CVP Callstudio 8.0(1). I need to read Vxml output coming from URL.
What i have done so far , I wrote custom class file put it in action element i am getting some response from URL and storing in session variable.
How to check whether i am getting correct VXML output. Because i need to read this vxml output from Nuance TTS.
Please let me know where i can find the log to see the output coming out of url response.
Thanks,
Phani.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5393937>
or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 04:19:34 PM
Hi,
Can you send some example how to log it into activity log.
Thanks,
Phani.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 02-04-2012 04:31:16 PM
For example:
public class test extends ActionElementBase {
public void doAction(String arg, ActionElementData arg1){
arg1.addToLog(..., ...) //Pass what you need to log here...
}
}
rom: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 3:20 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: RE: Com.audium cannot be resolved
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Hi,
Can you send some example how to log it into activity log.
Thanks,
Phani.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5393999>
or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 04:51:13 PM
I hava function like the below where do we need to add the above statement in order to get the log shown in activity log.
I wanted to see the response strng value. which i am storing as session variable.
public void doAction(String name, ActionElementData data)
throws AudiumException {
// PUT YOUR CODE HERE.
StringBuffer response = new StringBuffer("");
String phone = (String) data.getSessionData("mPhonevar");
String parameters = "phone=" + phone;
try {
// Send the request
URL url = new URL("http://xxxxxxxxxxxxxx/validate_ivr_phone");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter writer = new OutputStreamWriter(conn.getOutputStream());
// write parameters
writer.write(parameters);
writer.flush();
// Get the response
BufferedReader reader = new BufferedReader(new InputStreamReader(
conn.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
writer.close();
reader.close();
// Output the response
data.setSessionData("response", response.toString());
data.addToLog();?
Thanks,
Phani.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 02-04-2012 05:01:17 PM
Yes, you can do that where you indicate, just enter data.addToLog("response",response.toString()); On 4/2/2012 4:51 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I hava function like the below where do we need to add the above statement in order to get the log shown in activity log. I wanted to see the response strng value. which i am storing as session variable. public void doAction(String name, ActionElementData data) throws AudiumException { // PUT YOUR CODE HERE. StringBuffer response = new StringBuffer(""); String phone = (String) data.getSessionData("mPhonevar"); String parameters = "phone=" + phone; try { // Send the request URL url = new URL("http://xxxxxxxxxxxxxx/validate_ivr_phone"); URLConnection conn = url.openConnection(); conn.setDoOutput(true); OutputStreamWriter writer = new OutputStreamWriter(conn.getOutputStream()); // write parameters writer.write(parameters); writer.flush(); // Get the response BufferedReader reader = new BufferedReader(new InputStreamReader( conn.getInputStream())); String line; while ((line = reader.readLine()) != null) { response.append(line); } writer.close(); reader.close(); // Output the response data.setSessionData("response", response.toString()); data.addToLog();? Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5394039> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Ryan Hilfers on 02-04-2012 05:06:15 PM
Phani,
Take a look at the programmer's guide.. http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/customer_voice_portal/cvp8_0/programming/guide/cvp_801_prog.pdf
You're asking some pretty basic questions which are all explained in this document. Take a read before asking for examples.
-Ryan H
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 05:27:50 PM
Thanks Geoff its working.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 05:31:01 PM
Hi jannie,
Thanks its working.
If the response object contains VXML output will TTS able to play?
Do we need to write any custom code to generate vxml output in XML format to read in CallStudio using TTS.
Please let me know.
Thanks,
Phani.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 02-04-2012 06:02:53 PM
If the response object contains VXML output will TTS able to play?
Do we need to write any custom code to generate vxml output in XML format to read in CallStudio using TTS.
Please let me know.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Janine Graves on 02-04-2012 06:41:38 PM
I assume you don't want to speak the entire VXML response, but just want to speak the text that's enclosed within some <prompt> or content of <audio> tags, is that right?
In this case, it'll be up to your java to strip off the remainder of the VXML and just store the text that you want to speak into a Session Variable (eg, textToSpeak) and then in Studio, use a TTS box and select to speak the contents of this variable {Data.Session.textToSpeak}
Actually, it will probably be faster to code this as a Dynamic Configuration for a Voice Element. That way you can get the VXML response, grab the textToSpeak from it, and configure this as the Audio all in one Java class. You could even omit the part about storing it as Session Data if you do it this way and don't need it stored in a variable for later. A Dynamic Config just configures the Settings and/or Audio for a Voice Element and then hands it to VxmlServer to convert this into VXML and send it to the gateway.
Is it possible for you to just modify the VXML you are receiving and pass it along to the VoiceXML gateway to execute? Give an example of the Vxml Response that you are getting back.
Janine
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 02-04-2012 05:04:16 PM
data.addToLog(“some_text”, response.toString());
Regards,
Geoff
--------------------------------------------------------------------
Geoff Thompson Unified Contact Center Practice
Email: geoff@hp.com HP Technology Consulting
Phone: +1.408.447.4297 Hewlett-Packard Company
Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
____________________________________________________________________
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 02-04-2012 08:53:16 PM
Here we don't need to create any Menu or form element , I only need to
execute vxml files in callstudio where as Nuance as TTS engine.
On Mon, Apr 2, 2012 at 6:53 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> If you are using Studio, you must parse the URL response in some Java code
> and store the text that you want to speak into a variable.
>
> For example, data.setSessionData("textToSpeak","Welcome to Track My
> Record. "+ "Please choose a flow sheet."+"For Exam Fail - Manual Entry,
> please press 1.");
>
> Then speak this variable's value in a TTS box in a Menu or Form element.
>
>
> Janine
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396328>
>
>
>
> or simply reply to this email.
>
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 02-04-2012 11:32:16 PM
Instead of parsing and splitting the code
Can I execute vxml content directly from callstudio...
On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> You can definetely do that. You will need to write a java class that
> parses your vxml output and then put the text you require to be played t
> with TTS. You can store that as a session variable.
> Hemal
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Monday, April 02, 2012 7:10 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> Portal (CVP) - CVP - A
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I have to use callstudio and nuance TTS for this project..
> Can't we execute dynamic vxml content generating from java in callstudio
>
> Phani
> On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Why are you using Studio and VXMLServer at all, if you have VXML being
> > created by an app server already? Why not just send that VXML to the
> > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
> > Developer Community Forums wrote: Phani Venigalla has created a new
> message
> > in the forum "CVP - All Versions":
> > -------------------------------------------------------------- Hi, Thanks
> > for your suggestions, But i am getting Response from URL as below. I am
> > storing this response in sessionVariable. <?xml version="1.0"
> > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> http://www.w3.org/2001/vxml"
> > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> Manual
> > Entry, please press 1</prompt> <choice dtmf="1"
> > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
> > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> > engine and should be able to take user input,validated and submitted. All
> > business logic will be on Vxml backed system. CVP/Nuance has to execute
> > vxml input coming from bakend system. Please let me know. Thanks, Phani.
> --
> > To respond to this post, please click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> >
> > or simply reply to this email. -- Janine Graves
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> >
>
> or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 02-04-2012 11:32:17 PM
Instead of parsing and splitting, can't we execute vxml file from
callstudio.
On 02-Apr-2012 7:09 PM, "Phani Venigalla" <phani.venigalla@gmail.com> wrote:
> I have to use callstudio and nuance TTS for this project..
> Can't we execute dynamic vxml content generating from java in callstudio
>
> Phani
> On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
>> Janine Graves has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> Why are you using Studio and VXMLServer at all, if you have VXML being
>> created by an app server already? Why not just send that VXML to the
>> gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
>> Developer Community Forums wrote: Phani Venigalla has created a new message
>> in the forum "CVP - All Versions":
>> -------------------------------------------------------------- Hi, Thanks
>> for your suggestions, But i am getting Response from URL as below. I am
>> storing this response in sessionVariable. <?xml version="1.0"
>> encoding="UTF-8"?> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
>> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
>> value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
>> <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - Manual
>> Entry, please press 1</prompt> <choice dtmf="1"
>> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
>> Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
>> engine and should be able to take user input,validated and submitted. All
>> business logic will be on Vxml backed system. CVP/Nuance has to execute
>> vxml input coming from bakend system. Please let me know. Thanks, Phani. --
>> To respond to this post, please click the following link: <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309>
>> or simply reply to this email. -- Janine Graves
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
>> >
>>
>> or simply reply to this email.
>
>
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 07:35:33 PM
Hi,
Thanks for your suggestions,
But i am getting Response from URL as below. I am storing this response in sessionVariable.
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Record.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Exam Fail - Manual Entry, please press 1</prompt>
<choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual Entry</choice>
</menu>
</vxml>
This i need to read by using Nuance TTS engine and should be able to take user input,validated and submitted.
All business logic will be on Vxml backed system.
CVP/Nuance has to execute vxml input coming from bakend system.
Please let me know.
Thanks,
Phani.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 02-04-2012 07:50:16 PM
Why are you using Studio and VXMLServer at all, if you have VXML being created by an app server already? Why not just send that VXML to the gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Hi, Thanks for your suggestions, But i am getting Response from URL as below. I am storing this response in sessionVariable. <?xml version="1.0" encoding="UTF-8"?> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - Manual Entry, please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS engine and should be able to take user input,validated and submitted. All business logic will be on Vxml backed system. CVP/Nuance has to execute vxml input coming from bakend system. Please let me know. Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Janine Graves on 02-04-2012 07:53:54 PM
If you are using Studio, you must parse the URL response in some Java code and store the text that you want to speak into a variable.
For example, data.setSessionData("textToSpeak","Welcome to Track My Record. "+ "Please choose a flow sheet."+"For Exam Fail - Manual Entry, please press 1.");
Then speak this variable's value in a TTS box in a Menu or Form element.
Janine
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 02-04-2012 07:55:16 PM
Man, are you trying to play vxml here using TTS. Why ? You need to play the text content. Parse it and play it.
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 4:31 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: RE: Com.audium cannot be resolved
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Hi jannie,
Thanks its working.
If the response object contains VXML output will TTS able to play?
Do we need to write any custom code to generate vxml output in XML format to read in CallStudio using TTS.
Please let me know.
Thanks,
Phani.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5394116>
or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 02-04-2012 08:10:16 PM
I have to use callstudio and nuance TTS for this project..
Can't we execute dynamic vxml content generating from java in callstudio
Phani
On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Why are you using Studio and VXMLServer at all, if you have VXML being
> created by an app server already? Why not just send that VXML to the
> gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
> Developer Community Forums wrote: Phani Venigalla has created a new message
> in the forum "CVP - All Versions":
> -------------------------------------------------------------- Hi, Thanks
> for your suggestions, But i am getting Response from URL as below. I am
> storing this response in sessionVariable. <?xml version="1.0"
> encoding="UTF-8"?> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - Manual
> Entry, please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
> Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> engine and should be able to take user input,validated and submitted. All
> business logic will be on Vxml backed system. CVP/Nuance has to execute
> vxml input coming from bakend system. Please let me know. Thanks, Phani. --
> To respond to this post, please click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> >
>
> or simply reply to this email.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 02-04-2012 08:13:16 PM
You can definetely do that. You will need to write a java class that parses your vxml output and then put the text you require to be played t with TTS. You can store that as a session variable.
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 7:10 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
I have to use callstudio and nuance TTS for this project..
Can't we execute dynamic vxml content generating from java in callstudio
Phani
On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Why are you using Studio and VXMLServer at all, if you have VXML being
> created by an app server already? Why not just send that VXML to the
> gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
> Developer Community Forums wrote: Phani Venigalla has created a new message
> in the forum "CVP - All Versions":
> -------------------------------------------------------------- Hi, Thanks
> for your suggestions, But i am getting Response from URL as below. I am
> storing this response in sessionVariable. <?xml version="1.0"
> encoding="UTF-8"?> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - Manual
> Entry, please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
> Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> engine and should be able to take user input,validated and submitted. All
> business logic will be on Vxml backed system. CVP/Nuance has to execute
> vxml input coming from bakend system. Please let me know. Thanks, Phani. --
> To respond to this post, please click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346>
or simply reply to this email.
Subject: RE: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: GEOFFREY THOMPSON on 02-04-2012 08:27:16 PM
People use TTS is all sorts of different ways.
They look up a database, call a web service, pass down values from ICM and so on.
Do your back end stuff in an action element, all the parsing and so on and then just load up a session variable.
Back in the application, crank up an audio element and set the audio item (the TTS area) to Substitution on the session variable.
Regards,
Geoff
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 03-04-2012 12:42:16 AM
If you want to execute a vxml from studio, you can consider using VoiceXML insert element.
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 10:32 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Instead of parsing and splitting the code
Can I execute vxml content directly from callstudio...
On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> You can definetely do that. You will need to write a java class that
> parses your vxml output and then put the text you require to be played t
> with TTS. You can store that as a session variable.
> Hemal
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Monday, April 02, 2012 7:10 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> Portal (CVP) - CVP - A
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I have to use callstudio and nuance TTS for this project..
> Can't we execute dynamic vxml content generating from java in callstudio
>
> Phani
> On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Why are you using Studio and VXMLServer at all, if you have VXML being
> > created by an app server already? Why not just send that VXML to the
> > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
> > Developer Community Forums wrote: Phani Venigalla has created a new
> message
> > in the forum "CVP - All Versions":
> > -------------------------------------------------------------- Hi, Thanks
> > for your suggestions, But i am getting Response from URL as below. I am
> > storing this response in sessionVariable. <?xml version="1.0"
> > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> http://www.w3.org/2001/vxml"
> > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> Manual
> > Entry, please press 1</prompt> <choice dtmf="1"
> > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
> > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> > engine and should be able to take user input,validated and submitted. All
> > business logic will be on Vxml backed system. CVP/Nuance has to execute
> > vxml input coming from bakend system. Please let me know. Thanks, Phani.
> --
> > To respond to this post, please click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> >
> > or simply reply to this email. -- Janine Graves
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927>
or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 03-04-2012 10:32:44 AM
Hi,
How to check which version of Java in Cisco callstudio 8.0.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 03-04-2012 11:57:36 AM
Hi,
I am using VoiceXML insert element to execure dynamic VXML content
I am getting following error shown in activity log
,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure - Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,element,error,error.badfetch
Subject: RE: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 03-04-2012 03:02:22 PM
Hi,
I am using VoiceXML insert element to execure dynamic VXML content
I am getting following error shown in activity log
,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure - Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,element,error,error.badfetch
Let me know.
Thanks,
Phani.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 03-04-2012 04:15:16 PM
I am using VoiceXML insert element to execure dynamic VXML content
I am getting following error shown in activity log
,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
passed a variable with a name or value of "<?xml version="1.0"
encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
please press 1</prompt> <choice dtmf="1"
next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
Entry</choice> </menu></vxml>". *The use of the character """ may cause the
voice browser to encounter a parsing or ECMA script problem when the insert
element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
10:54:22.497,DynamicVxml,element,error,error.badfetch
On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> If you want to execute a vxml from studio, you can consider using VoiceXML
> insert element.
> Hemal
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Monday, April 02, 2012 10:32 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Instead of parsing and splitting the code
>
> Can I execute vxml content directly from callstudio...
> On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > You can definetely do that. You will need to write a java class that
> > parses your vxml output and then put the text you require to be played t
> > with TTS. You can store that as a session variable.
> > Hemal
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Monday, April 02, 2012 7:10 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> > Portal (CVP) - CVP - A
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > I have to use callstudio and nuance TTS for this project..
> > Can't we execute dynamic vxml content generating from java in callstudio
> >
> > Phani
> > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Janine Graves has created a new message in the forum "CVP - All
> > Versions":
> > >
> > > --------------------------------------------------------------
> > > Why are you using Studio and VXMLServer at all, if you have VXML being
> > > created by an app server already? Why not just send that VXML to the
> > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
> Cisco
> > > Developer Community Forums wrote: Phani Venigalla has created a new
> > message
> > > in the forum "CVP - All Versions":
> > > -------------------------------------------------------------- Hi,
> Thanks
> > > for your suggestions, But i am getting Response from URL as below. I am
> > > storing this response in sessionVariable. <?xml version="1.0"
> > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> > http://www.w3.org/2001/vxml"
> > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> > Manual
> > > Entry, please press 1</prompt> <choice dtmf="1"
> > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
> Manual
> > > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> > > engine and should be able to take user input,validated and submitted.
> All
> > > business logic will be on Vxml backed system. CVP/Nuance has to execute
> > > vxml input coming from bakend system. Please let me know. Thanks,
> Phani.
> > --
> > > To respond to this post, please click the following link: <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> > >
> > > or simply reply to this email. -- Janine Graves
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> >
>
> or simply reply to this email.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 03-04-2012 04:23:16 PM
Can’t you get rid of the double quotes around /mychartdt/inside.asp?mode=pefltdtl&id=1
Regards,
Geoff
--------------------------------------------------------------------
Geoff Thompson Unified Contact Center Practice
Email: geoff@hp.com HP Technology Consulting
Phone: +1.408.447.4297 Hewlett-Packard Company
Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
____________________________________________________________________
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Tuesday, April 03, 2012 1:15 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
I am using VoiceXML insert element to execure dynamic VXML content
I am getting following error shown in activity log
,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
passed a variable with a name or value of "<?xml version="1.0"
encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
please press 1</prompt> <choice dtmf="1"
next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
Entry</choice> </menu></vxml>". *The use of the character """ may cause the
voice browser to encounter a parsing or ECMA script problem when the insert
element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
10:54:22.497,DynamicVxml,element,error,error.badfetch
On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> If you want to execute a vxml from studio, you can consider using VoiceXML
> insert element.
> Hemal
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Monday, April 02, 2012 10:32 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Instead of parsing and splitting the code
>
> Can I execute vxml content directly from callstudio...
> On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > You can definetely do that. You will need to write a java class that
> > parses your vxml output and then put the text you require to be played t
> > with TTS. You can store that as a session variable.
> > Hemal
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Monday, April 02, 2012 7:10 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> > Portal (CVP) - CVP - A
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > I have to use callstudio and nuance TTS for this project..
> > Can't we execute dynamic vxml content generating from java in callstudio
> >
> > Phani
> > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Janine Graves has created a new message in the forum "CVP - All
> > Versions":
> > >
> > > --------------------------------------------------------------
> > > Why are you using Studio and VXMLServer at all, if you have VXML being
> > > created by an app server already? Why not just send that VXML to the
> > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
> Cisco
> > > Developer Community Forums wrote: Phani Venigalla has created a new
> > message
> > > in the forum "CVP - All Versions":
> > > -------------------------------------------------------------- Hi,
> Thanks
> > > for your suggestions, But i am getting Response from URL as below. I am
> > > storing this response in sessionVariable. <?xml version="1.0"
> > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> > http://www.w3.org/2001/vxml"
> > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> > Manual
> > > Entry, please press 1</prompt> <choice dtmf="1"
> > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
> Manual
> > > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> > > engine and should be able to take user input,validated and submitted.
> All
> > > business logic will be on Vxml backed system. CVP/Nuance has to execute
> > > vxml input coming from bakend system. Please let me know. Thanks,
> Phani.
> > --
> > > To respond to this post, please click the following link: <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> > >
> > > or simply reply to this email. -- Janine Graves
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469>
or simply reply to this email.
Subject: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 03-04-2012 05:00:16 PM
Is this a correct voicexml format to execute in VoiceXML insert element.
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"xml:lang="en-US">
<menu dtmf="true"> <property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
please press 1</prompt> <choice dtmf="1"
next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
Entry</choice> </menu></vxml>.
Or should i need to follow any standard procedure.
Thanks,
Phani.
On Tue, Apr 3, 2012 at 3:23 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Can’t you get rid of the double quotes around
> /mychartdt/inside.asp?mode=pefltdtl&id=1
>
> Regards,
> Geoff
> --------------------------------------------------------------------
> Geoff Thompson Unified Contact Center Practice
> Email: geoff@hp.com HP Technology Consulting
> Phone: +1.408.447.4297 Hewlett-Packard Company
> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> ____________________________________________________________________
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Tuesday, April 03, 2012 1:15 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I am using VoiceXML insert element to execure dynamic VXML content
>
> I am getting following error shown in activity log
>
> ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
> passed a variable with a name or value of "<?xml version="1.0"
> encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
> Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
> please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
> Entry</choice> </menu></vxml>". *The use of the character """ may cause the
> voice browser to encounter a parsing or ECMA script problem when the insert
> element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,element,error,error.badfetch
>
>
>
> On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > If you want to execute a vxml from studio, you can consider using
> VoiceXML
> > insert element.
> > Hemal
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Monday, April 02, 2012 10:32 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> > Portal (CVP) - CVP - All
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > Instead of parsing and splitting the code
> >
> > Can I execute vxml content directly from callstudio...
> > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Hemal Mehta has created a new message in the forum "CVP - All
> Versions":
> > >
> > > --------------------------------------------------------------
> > > You can definetely do that. You will need to write a java class that
> > > parses your vxml output and then put the text you require to be played
> t
> > > with TTS. You can store that as a session variable.
> > > Hemal
> > > ________________________________
> > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > > Sent: Monday, April 02, 2012 7:10 PM
> > > To: cdicuser@developer.cisco.com
> > > Subject: New Message from Phani Venigalla in Customer Voice Portal
> (CVP)
> > -
> > > CVP - All Versions: Re: New Message from Janine Graves in Customer
> Voice
> > > Portal (CVP) - CVP - A
> > >
> > > Phani Venigalla has created a new message in the forum "CVP - All
> > > Versions":
> > >
> > > --------------------------------------------------------------
> > > I have to use callstudio and nuance TTS for this project..
> > > Can't we execute dynamic vxml content generating from java in
> callstudio
> > >
> > > Phani
> > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> > > cdicuser@developer.cisco.com> wrote:
> > >
> > > > Janine Graves has created a new message in the forum "CVP - All
> > > Versions":
> > > >
> > > > --------------------------------------------------------------
> > > > Why are you using Studio and VXMLServer at all, if you have VXML
> being
> > > > created by an app server already? Why not just send that VXML to the
> > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
> > Cisco
> > > > Developer Community Forums wrote: Phani Venigalla has created a new
> > > message
> > > > in the forum "CVP - All Versions":
> > > > -------------------------------------------------------------- Hi,
> > Thanks
> > > > for your suggestions, But i am getting Response from URL as below. I
> am
> > > > storing this response in sessionVariable. <?xml version="1.0"
> > > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> > > http://www.w3.org/2001/vxml"
> > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> > > Manual
> > > > Entry, please press 1</prompt> <choice dtmf="1"
> > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
> > Manual
> > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
> TTS
> > > > engine and should be able to take user input,validated and submitted.
> > All
> > > > business logic will be on Vxml backed system. CVP/Nuance has to
> execute
> > > > vxml input coming from bakend system. Please let me know. Thanks,
> > Phani.
> > > --
> > > > To respond to this post, please click the following link: <
> > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> > > >
> > > > or simply reply to this email. -- Janine Graves
> > > > --
> > > > To respond to this post, please click the following link:
> > > >
> > > > <
> > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > > > >
> > > >
> > > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> > > >
> > >
> > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400479
> >
>
> or simply reply to this email.
Subject: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 03-04-2012 05:59:16 PM
Its not accepting double quote and single quote and &
How could we send to another URL with choice statement in this
scenario. its a typical voiceXML statement.
<choice dtmf="1"
next="/mychartdt/inside.asp?mode=pefltdtl&id=1">
First it gave double quotes then if i give single quote then its not
accepting single quote,
Thanks,
Phani.
On Tue, Apr 3, 2012 at 3:59 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> Is this a correct voicexml format to execute in VoiceXML insert element.
>
> <?xml version="1.0" encoding="UTF-8"?>
> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"xml:lang="en-US">
> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property>
> <prompt>Welcome to Track My Health.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
> Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
> please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
> Entry</choice> </menu></vxml>.
>
> Or should i need to follow any standard procedure.
>
> Thanks,
> Phani.
>
> On Tue, Apr 3, 2012 at 3:23 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
>> Versions":
>>
>> --------------------------------------------------------------
>> Can’t you get rid of the double quotes around
>> /mychartdt/inside.asp?mode=pefltdtl&id=1
>>
>> Regards,
>> Geoff
>> --------------------------------------------------------------------
>> Geoff Thompson Unified Contact Center Practice
>> Email: geoff@hp.com HP Technology Consulting
>> Phone: +1.408.447.4297 Hewlett-Packard Company
>> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
>> ____________________________________________________________________
>>
>> From: Cisco Developer Community Forums [mailto:
>> cdicuser@developer.cisco.com]
>> Sent: Tuesday, April 03, 2012 1:15 PM
>> To: cdicuser@developer.cisco.com
>> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
>> - CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
>> Portal (CVP) - CVP - All
>>
>> Phani Venigalla has created a new message in the forum "CVP - All
>> Versions":
>>
>> --------------------------------------------------------------
>> I am using VoiceXML insert element to execure dynamic VXML content
>>
>> I am getting following error shown in activity log
>>
>> ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
>> passed a variable with a name or value of "<?xml version="1.0"
>> encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
>> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
>> value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
>> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
>> Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
>> please press 1</prompt> <choice dtmf="1"
>> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
>> Entry</choice> </menu></vxml>". *The use of the character """ may cause
>> the
>> voice browser to encounter a parsing or ECMA script problem when the
>> insert
>> element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
>> 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
>> 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
>> 10:54:22.497,DynamicVxml,element,error,error.badfetch
>>
>>
>>
>> On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
>> cdicuser@developer.cisco.com> wrote:
>>
>> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
>> >
>> > --------------------------------------------------------------
>> > If you want to execute a vxml from studio, you can consider using
>> VoiceXML
>> > insert element.
>> > Hemal
>> > ________________________________
>> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
>> > Sent: Monday, April 02, 2012 10:32 PM
>> > To: cdicuser@developer.cisco.com
>> > Subject: New Message from Phani Venigalla in Customer Voice Portal
>> (CVP) -
>> > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
>> > Portal (CVP) - CVP - All
>> >
>> > Phani Venigalla has created a new message in the forum "CVP - All
>> > Versions":
>> >
>> > --------------------------------------------------------------
>> > Instead of parsing and splitting the code
>> >
>> > Can I execute vxml content directly from callstudio...
>> > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
>> > cdicuser@developer.cisco.com> wrote:
>> >
>> > > Hemal Mehta has created a new message in the forum "CVP - All
>> Versions":
>> > >
>> > > --------------------------------------------------------------
>> > > You can definetely do that. You will need to write a java class that
>> > > parses your vxml output and then put the text you require to be
>> played t
>> > > with TTS. You can store that as a session variable.
>> > > Hemal
>> > > ________________________________
>> > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
>> > > Sent: Monday, April 02, 2012 7:10 PM
>> > > To: cdicuser@developer.cisco.com
>> > > Subject: New Message from Phani Venigalla in Customer Voice Portal
>> (CVP)
>> > -
>> > > CVP - All Versions: Re: New Message from Janine Graves in Customer
>> Voice
>> > > Portal (CVP) - CVP - A
>> > >
>> > > Phani Venigalla has created a new message in the forum "CVP - All
>> > > Versions":
>> > >
>> > > --------------------------------------------------------------
>> > > I have to use callstudio and nuance TTS for this project..
>> > > Can't we execute dynamic vxml content generating from java in
>> callstudio
>> > >
>> > > Phani
>> > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
>> > > cdicuser@developer.cisco.com> wrote:
>> > >
>> > > > Janine Graves has created a new message in the forum "CVP - All
>> > > Versions":
>> > > >
>> > > > --------------------------------------------------------------
>> > > > Why are you using Studio and VXMLServer at all, if you have VXML
>> being
>> > > > created by an app server already? Why not just send that VXML to the
>> > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
>> > Cisco
>> > > > Developer Community Forums wrote: Phani Venigalla has created a new
>> > > message
>> > > > in the forum "CVP - All Versions":
>> > > > -------------------------------------------------------------- Hi,
>> > Thanks
>> > > > for your suggestions, But i am getting Response from URL as below.
>> I am
>> > > > storing this response in sessionVariable. <?xml version="1.0"
>> > > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
>> > > http://www.w3.org/2001/vxml"
>> > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
>> > > > value="dtmf"></property> <prompt>Welcome to Track My
>> Record.</prompt>
>> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
>> > > Manual
>> > > > Entry, please press 1</prompt> <choice dtmf="1"
>> > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
>> > Manual
>> > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
>> TTS
>> > > > engine and should be able to take user input,validated and
>> submitted.
>> > All
>> > > > business logic will be on Vxml backed system. CVP/Nuance has to
>> execute
>> > > > vxml input coming from bakend system. Please let me know. Thanks,
>> > Phani.
>> > > --
>> > > > To respond to this post, please click the following link: <
>> > > >
>> > >
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
>> > > >
>> > > > or simply reply to this email. -- Janine Graves
>> > > > --
>> > > > To respond to this post, please click the following link:
>> > > >
>> > > > <
>> > > >
>> > >
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
>> > > > >
>> > > >
>> > > > or simply reply to this email.
>> > > --
>> > > To respond to this post, please click the following link:
>> > >
>> > > <
>> > >
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
>> > > >
>> > >
>> > > or simply reply to this email.
>> > > --
>> > > To respond to this post, please click the following link:
>> > >
>> > > <
>> > >
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
>> > > >
>> > >
>> > > or simply reply to this email.
>> > --
>> > To respond to this post, please click the following link:
>> >
>> > <
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
>> > >
>> >
>> > or simply reply to this email.
>> > --
>> > To respond to this post, please click the following link:
>> >
>> > <
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
>> > >
>> >
>> > or simply reply to this email.
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
>> >
>>
>> or simply reply to this email.
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400479
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 03-04-2012 07:30:36 PM
Can anybody tell me why the VXML insert element is giving hard time
Hers ia my query..
Hi,
I am using Cisco callstudio 8.0. I am trying to execute static voicexml but its giving errors as below.
The vxml content i am trying to execute is
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press 1</prompt>
<choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice>
</menu>
</vxml>
The log shown below.
vxmlInsert,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure - Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.
10.9.13.79.1333483533904.494.MyMercy_Dev,04/03/2012 15:05:50.951,vxmlInsert,interaction,audio_group,initial_audio_group
10.9.13.79.1333483533904.494.MyMercy_Dev,04/03/2012 15:05:50.966,vxmlInsert,element,error,error.badfetch.http.404
Thanks,
Phani
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 03-04-2012 11:58:16 PM
Hi Hemal,
I even tried without the <choice dtmf="1" next="test.vxml"</choice> the
line. Still getting error
The use of the character """ may cause the voice browser to encounter a
parsing or ECMA script problem when the insert element is visited.
Let me know what need to modify to work with VxmlInsert element , The user
guide is confusing..
Please send me the working sample so that i can modify my end.
Thanks,
Phani.
On Tue, Apr 3, 2012 at 10:03 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Yes, make sure as Janine stated. I checked the syntax of the vxml code
> itself:
> <?xml version="1.0" encoding="UTF-8"?>
> <vxml version="2.1">
> <menu dtmf="true">
> <property name="inputmodes" value="dtmf"></property>
> <prompt>Welcome to Track My Health.</prompt>
> <prompt>Please choose a flow sheet.</prompt>
> <prompt>For Heart Failure - Manual Entry, please press 1</prompt>
> <choice dtmf="1" next="test.vxml"</choice>
> </menu>
> </vxml>
>
> This code itself seems ok from syntax perspective. What is the vxml
> gateway version u are using > The voice browser for some reason is not
> liking it.
> Meanwhile remove this line just for testing purposes or just add:
> <choice dtmf="1" next="test.vxml"</choice> and point to a simple test.vxml
> file. See what happens.
> Hemal
>
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Tuesday, April 03, 2012 8:41 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Janine Graves in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Phani Venigalla in Customer Voice
> Portal (CVP) - CVP -
>
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Did you read in the Studio Users Guide the pages about what has to be
> included in your Vxml Insert for it to work? Try reading those pages and
> modifying your code. Your VXML must be written as a subdialog and there are
> many other requirements. I actually never got VXML Insert to work, but
> sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community
> Forums wrote: Phani Venigalla has created a new message in the forum "CVP -
> All Versions":
> -------------------------------------------------------------- I am using
> VoiceXML insert element to execure dynamic VXML content I am getting
> following error shown in activity log ,DynamicVxml,element,warning,WARNING:
> The VoiceXML Insert element was passed a variable with a name or value of
> "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="
> http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true">
> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to
> Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt>
> <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#>-
> Manual Entry please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
> Entry</choice> </menu></vxml>". *The use of the character """ may cause the
> voice browser to encounter a parsing or ECMA script problem when the insert
> element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2, 2012
> at 11:42 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new
> message in the forum "CVP - All Versions": > >
> -------------------------------------------------------------- > If you
> want to execute a vxml from studio, you can consider using VoiceXML >
> insert element. > Hemal > ________________________________ > From: Cisco
> Developer Community Forums [cdicuser@developer.cisco.com] > Sent: Monday,
> April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject: New
> Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP - All
> Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal (CVP)
> - CVP - All > > Phani Venigalla has created a new message in the forum "CVP
> - All > Versions": > >
> -------------------------------------------------------------- > Instead of
> parsing and splitting the code > > Can I execute vxml content directly from
> callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums"
> < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has created a
> new message in the forum "CVP - All Versions": > > > >
> -------------------------------------------------------------- > > You can
> definetely do that. You will need to write a java class that > > parses
> your vxml output and then put the text you require to be played t > > with
> TTS. You can store that as a session variable. > > Hemal > >
> ________________________________ > > From: Cisco Developer Community Forums
> [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10 PM >
> > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani
> Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions: Re:
> New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP - A
> > > > > Phani Venigalla has created a new message in the forum "CVP - All >
> > Versions": > > > >
> -------------------------------------------------------------- > > I have
> to use callstudio and nuance TTS for this project.. > > Can't we execute
> dynamic vxml content generating from java in callstudio > > > > Phani > >
> On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > >
> cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has created
> a new message in the forum "CVP - All > > Versions": > > > > > >
> -------------------------------------------------------------- > > > Why
> are you using Studio and VXMLServer at all, if you have VXML being > > >
> created by an app server already? Why not just send that VXML to the > > >
> gateway, have the gateway return the response? On 4/2/2012 7:35 PM, > Cisco
> > > > Developer Community Forums wrote: Phani Venigalla has created a new >
> > message > > > in the forum "CVP - All Versions": > > >
> -------------------------------------------------------------- Hi, > Thanks
> > > > for your suggestions, But i am getting Response from URL as below. I
> am > > > storing this response in sessionVariable. <?xml version="1.0" > >
> > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > >
> http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu dtmf="true">
> <property name="inputmodes" > > > value="dtmf"></property> <prompt>Welcome
> to Track My Record.</prompt> > > > <prompt>Please choose a flow
> sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please
> press 1</prompt> <choice dtmf="1" > > >
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - > Manual
> > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
> TTS > > > engine and should be able to take user input,validated and
> submitted. > All > > > business logic will be on Vxml backed system.
> CVP/Nuance has to execute > > > vxml input coming from bakend system.
> Please let me know. Thanks, > Phani. > > -- > > > To respond to this post,
> please click the following link: < > > > > > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309> > > > > > or simply reply to this email. -- Janine Graves > > > -- > > >
> To respond to this post, please click the following link: > > > > > > < > >
> > > > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324> > > > > > > > > > or simply reply to this email. > > -- > > To respond to
> this post, please click the following link: > > > > < > > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346> > > > > > > or simply reply to this email. > > -- > > To respond to this
> post, please click the following link: > > > > < > > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348> > > > > > > or simply reply to this email. > -- > To respond to this
> post, please click the following link: > > < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927> > > > or simply reply to this email. > -- > To respond to this post,
> please click the following link: > > < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596> > > > or simply reply to this email. -- To respond to this post, please
> click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402909
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402959
> >
>
> or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 04-04-2012 12:27:16 AM
Hi,
Please let me know what need to be modified in Vxml code to work with
Vxmlinsert element.
Thanks,
Phani.
On Tue, Apr 3, 2012 at 11:10 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Its Cisco Unifed voiceXML 2.1 Gateway
>
> On Tue, Apr 3, 2012 at 10:58 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > Hi Hemal,
> >
> > I even tried without the <choice dtmf="1" next="test.vxml"</choice> the
> > line. Still getting error
> >
> >
> > The use of the character """ may cause the voice browser to encounter a
> > parsing or ECMA script problem when the insert element is visited.
> >
> > Let me know what need to modify to work with VxmlInsert element , The
> user
> > guide is confusing..
> >
> > Please send me the working sample so that i can modify my end.
> >
> > Thanks,
> > Phani.
> >
> > On Tue, Apr 3, 2012 at 10:03 PM, Cisco Developer Community Forums <
> >
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Hemal Mehta has created a new message in the forum "CVP - All
> Versions":
> > >
> > > --------------------------------------------------------------
> > > Yes, make sure as Janine stated. I checked the syntax of the vxml code
> > > itself:
> >
> > > <?xml version="1.0" encoding="UTF-8"?>
> > > <vxml version="2.1">
> > > <menu dtmf="true">
> > > <property name="inputmodes" value="dtmf"></property>
> > > <prompt>Welcome to Track My Health.</prompt>
> > > <prompt>Please choose a flow sheet.</prompt>
> > > <prompt>For Heart Failure - Manual Entry, please press 1</prompt>
> > > <choice dtmf="1" next="test.vxml"</choice>
> > > </menu>
> > > </vxml>
> > >
> > > This code itself seems ok from syntax perspective. What is the vxml
> > > gateway version u are using > The voice browser for some reason is not
> > > liking it.
> > > Meanwhile remove this line just for testing purposes or just add:
> > > <choice dtmf="1" next="test.vxml"</choice> and point to a simple
> > test.vxml
> > > file. See what happens.
> >
> > > Hemal
> > >
> > > ________________________________
> > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > > Sent: Tuesday, April 03, 2012 8:41 PM
> > > To: cdicuser@developer.cisco.com
> > > Subject: New Message from Janine Graves in Customer Voice Portal (CVP)
> -
> > > CVP - All Versions: Re: New Message from Phani Venigalla in Customer
> > Voice
> >
> > > Portal (CVP) - CVP -
> > >
> > > Janine Graves has created a new message in the forum "CVP - All
> > Versions":
> > >
> > > --------------------------------------------------------------
> > > Did you read in the Studio Users Guide the pages about what has to be
> > > included in your Vxml Insert for it to work? Try reading those pages
> and
> > > modifying your code. Your VXML must be written as a subdialog and there
> > are
> > > many other requirements. I actually never got VXML Insert to work, but
> > > sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community
> >
> > > Forums wrote: Phani Venigalla has created a new message in the forum
> > "CVP -
> > > All Versions":
> > > -------------------------------------------------------------- I am
> > using
> >
> > > VoiceXML insert element to execure dynamic VXML content I am getting
> > > following error shown in activity log
> > ,DynamicVxml,element,warning,WARNING:
> > > The VoiceXML Insert element was passed a variable with a name or value
> of
> > > "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="
> > > http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true">
> > > <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to
> > > Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt>
> > > <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#
> >-
> > > Manual Entry please press 1</prompt> <choice dtmf="1"
> > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure -
> > Manual
> > > Entry</choice> </menu></vxml>". *The use of the character """ may cause
> > the
> > > voice browser to encounter a parsing or ECMA script problem when the
> > insert
> > > element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> > > 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> > > 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> > > 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2,
> 2012
> > > at 11:42 PM, Cisco Developer Community Forums <
> > > cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new
> > > message in the forum "CVP - All Versions": > >
> > > -------------------------------------------------------------- > If you
> > > want to execute a vxml from studio, you can consider using VoiceXML >
> > > insert element. > Hemal > ________________________________ > From:
> Cisco
> > > Developer Community Forums [cdicuser@developer.cisco.com] > Sent:
> > Monday,
> > > April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject:
> > New
> > > Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP -
> All
> > > Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal
> > (CVP)
> > > - CVP - All > > Phani Venigalla has created a new message in the forum
> > "CVP
> > > - All > Versions": > >
> > > -------------------------------------------------------------- >
> Instead
> > of
> > > parsing and splitting the code > > Can I execute vxml content directly
> > from
> > > callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community
> > Forums"
> > > < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has
> created a
> > > new message in the forum "CVP - All Versions": > > > >
> > > -------------------------------------------------------------- > > You
> > can
> > > definetely do that. You will need to write a java class that > > parses
> > > your vxml output and then put the text you require to be played t > >
> > with
> > > TTS. You can store that as a session variable. > > Hemal > >
> > > ________________________________ > > From: Cisco Developer Community
> > Forums
> > > [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10
> PM
> > >
> > > > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani
> > > Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions:
> Re:
> > > New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP
> > - A
> > > > > > > Phani Venigalla has created a new message in the forum "CVP -
> > All >
> > > > Versions": > > > >
> > > -------------------------------------------------------------- > > I
> have
> > > to use callstudio and nuance TTS for this project.. > > Can't we
> execute
> > > dynamic vxml content generating from java in callstudio > > > > Phani
> > >
> > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > >
> > > cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has
> created
> > > a new message in the forum "CVP - All > > Versions": > > > > > >
> > > -------------------------------------------------------------- > > >
> Why
> > > are you using Studio and VXMLServer at all, if you have VXML being > >
> >
> > > created by an app server already? Why not just send that VXML to the >
> >
> > >
> > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, >
> > Cisco
> > > > > > Developer Community Forums wrote: Phani Venigalla has created a
> > new >
> > > > message > > > in the forum "CVP - All Versions": > > >
> > > -------------------------------------------------------------- Hi, >
> > Thanks
> > > > > > for your suggestions, But i am getting Response from URL as
> below.
> > I
> > > am > > > storing this response in sessionVariable. <?xml version="1.0"
> >
> > >
> > > > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > >
> > > http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu
> dtmf="true">
> > > <property name="inputmodes" > > > value="dtmf"></property>
> > <prompt>Welcome
> > > to Track My Record.</prompt> > > > <prompt>Please choose a flow
> > > sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please
> > > press 1</prompt> <choice dtmf="1" > > >
> > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - >
> > Manual
> > > > > > Entry</choice> </menu> </vxml> This i need to read by using
> Nuance
> > > TTS > > > engine and should be able to take user input,validated and
> > > submitted. > All > > > business logic will be on Vxml backed system.
> > > CVP/Nuance has to execute > > > vxml input coming from bakend system.
> > > Please let me know. Thanks, > Phani. > > -- > > > To respond to this
> > post,
> > > please click the following link: < > > > > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> >
> > > > > > > or simply reply to this email. -- Janine Graves > > > -- > > >
> > > To respond to this post, please click the following link: > > > > > > <
> > > >
> > > > > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> >
> > > > > > > > > > > or simply reply to this email. > > -- > > To respond to
> > > this post, please click the following link: > > > > < > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> >
> > > > > > > > or simply reply to this email. > > -- > > To respond to this
> > > post, please click the following link: > > > > < > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> >
> > > > > > > > or simply reply to this email. > -- > To respond to this
> > > post, please click the following link: > > < >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> >
> > > > > or simply reply to this email. > -- > To respond to this post,
> > > please click the following link: > > < >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> >
> > > > > or simply reply to this email. -- To respond to this post, please
> > > click the following link: <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
> > >
> > > or simply reply to this email. -- Janine Graves
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402909
> >
> > > >
> > >
> > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402959
> >
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400996
> >
> >
> >
> >
> > or simply reply to this email.
> >
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5403074
> >
>
> or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Paul Tindall on 04-04-2012 05:19:36 AM
Some VXML Insert examples attached. The Play RTSP one is the simplest one to use as a start template. The transfer one shows how to access session variables in the user-built VoiceXML, the one that returns guid and SIP header info shows how to return and log element data. Pay particular attention to the namelists (declaration and submit), exit state assignments and the way session and element data is passed/referenced and you should be OK. If you just point your VoiceXML Insert Element settings at the filename, for example, just "playrtsp.vxml" then it will be retrieved from the Tomcat/webapps/CVP. Hope that helps.
Paul
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 04-04-2012 06:21:16 AM
What are the other ways to execute vxml files from callstudio.
On 04-Apr-2012 4:20 AM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Some VXML Insert examples attached. The Play RTSP one is the simplest one
> to use as a start template. The transfer one shows how to access session
> variables in the user-built VoiceXML, the one that returns guid and SIP
> header info shows how to return and log element data. Pay particular
> attention to the namelists (declaration and submit), exit state assignments
> and the way session and element data is passed/referenced and you should be
> OK. If you just point your VoiceXML Insert Element settings at the
> filename, for example, just "playrtsp.vxml" then it will be retrieved from
> the Tomcat/webapps/CVP. Hope that helps.
>
> Paul
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5401463
> >
>
> or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Paul Tindall on 04-04-2012 06:55:09 AM
Hi,
Thanks for your suggestions,
But i am getting Response from URL as below. I am storing this response in sessionVariable.
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Record.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Exam Fail - Manual Entry, please press 1</prompt>
<choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual Entry</choice>
</menu>
</vxml>
This i need to read by using Nuance TTS engine and should be able to take user input,validated and submitted.
All business logic will be on Vxml backed system.
CVP/Nuance has to execute vxml input coming from bakend system.
Please let me know.
Thanks,
Phani.
Subject: RE: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP
Replied by: Paul Tindall on 04-04-2012 06:58:26 AM
No idea what happened on previous post but this is what should have happened -----
Using Studio and CVP VoiceXML Server your options are:
1. Dynamic VoiceXML generated by the Studio application using custom voice elements to build your own VoiceXML dynamically
2. Hand crafted VoiceXML that conforms to the subdialog format required by the VoiceXML Insert Element
3. Passing control to an external VoiceXML sub-dialogue using the Subdialog Invoke Element
From ICM script:
Invoke external VoiceXML sub-dialogue using the microapp "GS,filename.vxml,V"
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 11:09:57 AM
hi Paul,
Is it necessary to include this statement:
return namelist="audium_exit_state audium_vxmlLog audium_hotlink audium_hotevent audium_error audium_action" />
If so what i need to configure in VXMLInsert element.
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Paul Tindall on 04-04-2012 11:50:29 AM
The notes I have state that the audium_* variables have to be present and omitting them isn't something I've ever bothered testing. The audium_exit_state variable is the only one you need to pay particular attention to with regard to the element settings. Any value you return in audium_exit_state must have a matching exit state defined in the VoiceXML Insert element settings.
Paul
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 12:10:48 PM
I can expain my scenario here
I am getting below output in
session variable called "{Data.Session.Flowsheets}" the same varable i am assigning as a source in VXMLINSERT element.
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press 1</prompt>
</menu>
</vxml>
Shall i need to give server address in "application=" i have given as "http://10.9.13.79/CVP/VXMLServer/Tomcat/webapps/CVP/FlowSheet.vxml"
<vxml version="2.0" application="/CVP/Server?audium_vxml_root=true&calling_into=playrtsp&namelist=element_log_value">
In the example you have given above playrtsp is that a vxml file? if yee then where do i need to create this file.
Thanks,
Phani.
Subject: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 03-04-2012 07:55:16 PM
Hi Geoff,
I dont know whats wrong in the code, I am not able to execute simple
voiceXML using VXMLInsert element.
Thanks,
Phani.
On Tue, Apr 3, 2012 at 3:23 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Can’t you get rid of the double quotes around
> /mychartdt/inside.asp?mode=pefltdtl&id=1
>
> Regards,
> Geoff
> --------------------------------------------------------------------
> Geoff Thompson Unified Contact Center Practice
> Email: geoff@hp.com HP Technology Consulting
> Phone: +1.408.447.4297 Hewlett-Packard Company
> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> ____________________________________________________________________
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Tuesday, April 03, 2012 1:15 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I am using VoiceXML insert element to execure dynamic VXML content
>
> I am getting following error shown in activity log
>
> ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
> passed a variable with a name or value of "<?xml version="1.0"
> encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
> Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
> please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
> Entry</choice> </menu></vxml>". *The use of the character """ may cause the
> voice browser to encounter a parsing or ECMA script problem when the insert
> element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,element,error,error.badfetch
>
>
>
> On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > If you want to execute a vxml from studio, you can consider using
> VoiceXML
> > insert element.
> > Hemal
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Monday, April 02, 2012 10:32 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> > Portal (CVP) - CVP - All
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > Instead of parsing and splitting the code
> >
> > Can I execute vxml content directly from callstudio...
> > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Hemal Mehta has created a new message in the forum "CVP - All
> Versions":
> > >
> > > --------------------------------------------------------------
> > > You can definetely do that. You will need to write a java class that
> > > parses your vxml output and then put the text you require to be played
> t
> > > with TTS. You can store that as a session variable.
> > > Hemal
> > > ________________________________
> > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > > Sent: Monday, April 02, 2012 7:10 PM
> > > To: cdicuser@developer.cisco.com
> > > Subject: New Message from Phani Venigalla in Customer Voice Portal
> (CVP)
> > -
> > > CVP - All Versions: Re: New Message from Janine Graves in Customer
> Voice
> > > Portal (CVP) - CVP - A
> > >
> > > Phani Venigalla has created a new message in the forum "CVP - All
> > > Versions":
> > >
> > > --------------------------------------------------------------
> > > I have to use callstudio and nuance TTS for this project..
> > > Can't we execute dynamic vxml content generating from java in
> callstudio
> > >
> > > Phani
> > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> > > cdicuser@developer.cisco.com> wrote:
> > >
> > > > Janine Graves has created a new message in the forum "CVP - All
> > > Versions":
> > > >
> > > > --------------------------------------------------------------
> > > > Why are you using Studio and VXMLServer at all, if you have VXML
> being
> > > > created by an app server already? Why not just send that VXML to the
> > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
> > Cisco
> > > > Developer Community Forums wrote: Phani Venigalla has created a new
> > > message
> > > > in the forum "CVP - All Versions":
> > > > -------------------------------------------------------------- Hi,
> > Thanks
> > > > for your suggestions, But i am getting Response from URL as below. I
> am
> > > > storing this response in sessionVariable. <?xml version="1.0"
> > > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> > > http://www.w3.org/2001/vxml"
> > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> > > Manual
> > > > Entry, please press 1</prompt> <choice dtmf="1"
> > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
> > Manual
> > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
> TTS
> > > > engine and should be able to take user input,validated and submitted.
> > All
> > > > business logic will be on Vxml backed system. CVP/Nuance has to
> execute
> > > > vxml input coming from bakend system. Please let me know. Thanks,
> > Phani.
> > > --
> > > > To respond to this post, please click the following link: <
> > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> > > >
> > > > or simply reply to this email. -- Janine Graves
> > > > --
> > > > To respond to this post, please click the following link:
> > > >
> > > > <
> > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > > > >
> > > >
> > > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> > > >
> > >
> > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400479
> >
>
> or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 03-04-2012 09:41:16 PM
Did you read in the Studio Users Guide the pages about what has to be included in your Vxml Insert for it to work? Try reading those pages and modifying your code. Your VXML must be written as a subdialog and there are many other requirements. I actually never got VXML Insert to work, but sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I am using VoiceXML insert element to execure dynamic VXML content I am getting following error shown in activity log ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". *The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > If you want to execute a vxml from studio, you can consider using VoiceXML > insert element. > Hemal > ________________________________ > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com] > Sent: Monday, April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal (CVP) - CVP - All > > Phani Venigalla has created a new message in the forum "CVP - All > Versions": > > -------------------------------------------------------------- > Instead of parsing and splitting the code > > Can I execute vxml content directly from callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has created a new message in the forum "CVP - All Versions": > > > > -------------------------------------------------------------- > > You can definetely do that. You will need to write a java class that > > parses your vxml output and then put the text you require to be played t > > with TTS. You can store that as a session variable. > > Hemal > > ________________________________ > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10 PM > > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions: Re: New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP - A > > > > Phani Venigalla has created a new message in the forum "CVP - All > > Versions": > > > > -------------------------------------------------------------- > > I have to use callstudio and nuance TTS for this project.. > > Can't we execute dynamic vxml content generating from java in callstudio > > > > Phani > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > > cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has created a new message in the forum "CVP - All > > Versions": > > > > > > -------------------------------------------------------------- > > > Why are you using Studio and VXMLServer at all, if you have VXML being > > > created by an app server already? Why not just send that VXML to the > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, > Cisco > > > Developer Community Forums wrote: Phani Venigalla has created a new > > message > > > in the forum "CVP - All Versions": > > > -------------------------------------------------------------- Hi, > Thanks > > > for your suggestions, But i am getting Response from URL as below. I am > > > storing this response in sessionVariable. <?xml version="1.0" > > > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > > http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" > > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please press 1</prompt> <choice dtmf="1" > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - > Manual > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS > > > engine and should be able to take user input,validated and submitted. > All > > > business logic will be on Vxml backed system. CVP/Nuance has to execute > > > vxml input coming from bakend system. Please let me know. Thanks, > Phani. > > -- > > > To respond to this post, please click the following link: < > > > > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309 > > > > > > or simply reply to this email. -- Janine Graves > > > -- > > > To respond to this post, please click the following link: > > > > > > < > > > > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324 > > > > > > > > > > or simply reply to this email. > > -- > > To respond to this post, please click the following link: > > > > < > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346 > > > > > > > or simply reply to this email. > > -- > > To respond to this post, please click the following link: > > > > < > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348 > > > > > > > or simply reply to this email. > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927 > > > > or simply reply to this email. > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469> or simply reply to this email. -- Janine Graves
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Hemal Mehta on 03-04-2012 11:03:16 PM
Yes, make sure as Janine stated. I checked the syntax of the vxml code itself:
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press 1</prompt>
<choice dtmf="1" next="test.vxml"</choice>
</menu>
</vxml>
This code itself seems ok from syntax perspective. What is the vxml gateway version u are using > The voice browser for some reason is not liking it.
Meanwhile remove this line just for testing purposes or just add:
<choice dtmf="1" next="test.vxml"</choice> and point to a simple test.vxml file. See what happens.
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Tuesday, April 03, 2012 8:41 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Janine Graves has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Did you read in the Studio Users Guide the pages about what has to be included in your Vxml Insert for it to work? Try reading those pages and modifying your code. Your VXML must be written as a subdialog and there are many other requirements. I actually never got VXML Insert to work, but sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I am using VoiceXML insert element to execure dynamic VXML content I am getting following error shown in activity log ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". *The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > If you want to execute a vxml from studio, you can consider using VoiceXML > insert element. > Hemal > ________________________________ > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com] > Sent: Monday, April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal (CVP) - CVP - All > > Phani Venigalla has created a new message in the forum "CVP - All > Versions": > > -------------------------------------------------------------- > Instead of parsing and splitting the code > > Can I execute vxml content directly from callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has created a new message in the forum "CVP - All Versions": > > > > -------------------------------------------------------------- > > You can definetely do that. You will need to write a java class that > > parses your vxml output and then put the text you require to be played t > > with TTS. You can store that as a session variable. > > Hemal > > ________________________________ > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10 PM > > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions: Re: New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP - A > > > > Phani Venigalla has created a new message in the forum "CVP - All > > Versions": > > > > -------------------------------------------------------------- > > I have to use callstudio and nuance TTS for this project.. > > Can't we execute dynamic vxml content generating from java in callstudio > > > > Phani > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > > cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has created a new message in the forum "CVP - All > > Versions": > > > > > > -------------------------------------------------------------- > > > Why are you using Studio and VXMLServer at all, if you have VXML being > > > created by an app server already? Why not just send that VXML to the > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, > Cisco > > > Developer Community Forums wrote: Phani Venigalla has created a new > > message > > > in the forum "CVP - All Versions": > > > -------------------------------------------------------------- Hi, > Thanks > > > for your suggestions, But i am getting Response from URL as below. I am > > > storing this response in sessionVariable. <?xml version="1.0" > > > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > > http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" > > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please press 1</prompt> <choice dtmf="1" > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - > Manual > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS > > > engine and should be able to take user input,validated and submitted. > All > > > business logic will be on Vxml backed system. CVP/Nuance has to execute > > > vxml input coming from bakend system. Please let me know. Thanks, > Phani. > > -- > > > To respond to this post, please click the following link: < > > > > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309 > > > > > > or simply reply to this email. -- Janine Graves > > > -- > > > To respond to this post, please click the following link: > > > > > > < > > > > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324 > > > > > > > > > > or simply reply to this email. > > -- > > To respond to this post, please click the following link: > > > > < > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346 > > > > > > > or simply reply to this email. > > -- > > To respond to this post, please click the following link: > > > > < > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348 > > > > > > > or simply reply to this email. > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927 > > > > or simply reply to this email. > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469> or simply reply to this email. -- Janine Graves
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402909>
or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 04-04-2012 12:10:16 AM
Its Cisco Unifed voiceXML 2.1 Gateway
On Tue, Apr 3, 2012 at 10:58 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Hi Hemal,
>
> I even tried without the <choice dtmf="1" next="test.vxml"</choice> the
> line. Still getting error
>
>
> The use of the character """ may cause the voice browser to encounter a
> parsing or ECMA script problem when the insert element is visited.
>
> Let me know what need to modify to work with VxmlInsert element , The user
> guide is confusing..
>
> Please send me the working sample so that i can modify my end.
>
> Thanks,
> Phani.
>
> On Tue, Apr 3, 2012 at 10:03 PM, Cisco Developer Community Forums <
>
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > Yes, make sure as Janine stated. I checked the syntax of the vxml code
> > itself:
>
> > <?xml version="1.0" encoding="UTF-8"?>
> > <vxml version="2.1">
> > <menu dtmf="true">
> > <property name="inputmodes" value="dtmf"></property>
> > <prompt>Welcome to Track My Health.</prompt>
> > <prompt>Please choose a flow sheet.</prompt>
> > <prompt>For Heart Failure - Manual Entry, please press 1</prompt>
> > <choice dtmf="1" next="test.vxml"</choice>
> > </menu>
> > </vxml>
> >
> > This code itself seems ok from syntax perspective. What is the vxml
> > gateway version u are using > The voice browser for some reason is not
> > liking it.
> > Meanwhile remove this line just for testing purposes or just add:
> > <choice dtmf="1" next="test.vxml"</choice> and point to a simple
> test.vxml
> > file. See what happens.
>
> > Hemal
> >
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Tuesday, April 03, 2012 8:41 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Janine Graves in Customer Voice Portal (CVP) -
> > CVP - All Versions: Re: New Message from Phani Venigalla in Customer
> Voice
>
> > Portal (CVP) - CVP -
> >
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Did you read in the Studio Users Guide the pages about what has to be
> > included in your Vxml Insert for it to work? Try reading those pages and
> > modifying your code. Your VXML must be written as a subdialog and there
> are
> > many other requirements. I actually never got VXML Insert to work, but
> > sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community
>
> > Forums wrote: Phani Venigalla has created a new message in the forum
> "CVP -
> > All Versions":
> > -------------------------------------------------------------- I am
> using
>
> > VoiceXML insert element to execure dynamic VXML content I am getting
> > following error shown in activity log
> ,DynamicVxml,element,warning,WARNING:
> > The VoiceXML Insert element was passed a variable with a name or value of
> > "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="
> > http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true">
> > <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to
> > Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt>
> > <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#>-
> > Manual Entry please press 1</prompt> <choice dtmf="1"
> > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure -
> Manual
> > Entry</choice> </menu></vxml>". *The use of the character """ may cause
> the
> > voice browser to encounter a parsing or ECMA script problem when the
> insert
> > element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> > 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> > 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> > 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2, 2012
> > at 11:42 PM, Cisco Developer Community Forums <
> > cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new
> > message in the forum "CVP - All Versions": > >
> > -------------------------------------------------------------- > If you
> > want to execute a vxml from studio, you can consider using VoiceXML >
> > insert element. > Hemal > ________________________________ > From: Cisco
> > Developer Community Forums [cdicuser@developer.cisco.com] > Sent:
> Monday,
> > April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject:
> New
> > Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP - All
> > Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal
> (CVP)
> > - CVP - All > > Phani Venigalla has created a new message in the forum
> "CVP
> > - All > Versions": > >
> > -------------------------------------------------------------- > Instead
> of
> > parsing and splitting the code > > Can I execute vxml content directly
> from
> > callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community
> Forums"
> > < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has created a
> > new message in the forum "CVP - All Versions": > > > >
> > -------------------------------------------------------------- > > You
> can
> > definetely do that. You will need to write a java class that > > parses
> > your vxml output and then put the text you require to be played t > >
> with
> > TTS. You can store that as a session variable. > > Hemal > >
> > ________________________________ > > From: Cisco Developer Community
> Forums
> > [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10 PM
> >
> > > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani
> > Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions: Re:
> > New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP
> - A
> > > > > > Phani Venigalla has created a new message in the forum "CVP -
> All >
> > > Versions": > > > >
> > -------------------------------------------------------------- > > I have
> > to use callstudio and nuance TTS for this project.. > > Can't we execute
> > dynamic vxml content generating from java in callstudio > > > > Phani > >
> > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > >
> > cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has created
> > a new message in the forum "CVP - All > > Versions": > > > > > >
> > -------------------------------------------------------------- > > > Why
> > are you using Studio and VXMLServer at all, if you have VXML being > > >
> > created by an app server already? Why not just send that VXML to the > >
> >
> > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, >
> Cisco
> > > > > Developer Community Forums wrote: Phani Venigalla has created a
> new >
> > > message > > > in the forum "CVP - All Versions": > > >
> > -------------------------------------------------------------- Hi, >
> Thanks
> > > > > for your suggestions, But i am getting Response from URL as below.
> I
> > am > > > storing this response in sessionVariable. <?xml version="1.0" >
> >
> > > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > >
> > http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu dtmf="true">
> > <property name="inputmodes" > > > value="dtmf"></property>
> <prompt>Welcome
> > to Track My Record.</prompt> > > > <prompt>Please choose a flow
> > sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please
> > press 1</prompt> <choice dtmf="1" > > >
> > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - >
> Manual
> > > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
> > TTS > > > engine and should be able to take user input,validated and
> > submitted. > All > > > business logic will be on Vxml backed system.
> > CVP/Nuance has to execute > > > vxml input coming from bakend system.
> > Please let me know. Thanks, > Phani. > > -- > > > To respond to this
> post,
> > please click the following link: < > > > > > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309>
> > > > > > or simply reply to this email. -- Janine Graves > > > -- > > >
> > To respond to this post, please click the following link: > > > > > > <
> > >
> > > > > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324>
> > > > > > > > > > or simply reply to this email. > > -- > > To respond to
> > this post, please click the following link: > > > > < > > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346>
> > > > > > > or simply reply to this email. > > -- > > To respond to this
> > post, please click the following link: > > > > < > > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348>
> > > > > > > or simply reply to this email. > -- > To respond to this
> > post, please click the following link: > > < >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927>
> > > > or simply reply to this email. > -- > To respond to this post,
> > please click the following link: > > < >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596>
> > > > or simply reply to this email. -- To respond to this post, please
> > click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
> >
> > or simply reply to this email. -- Janine Graves
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402909
>
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402959
>
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400996>
>
>
>
> or simply reply to this email.
>
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 04-04-2012 12:01:16 PM
I think VoiceXML insert will not work for me.
Please let me know how to use Subdialog Invoke
I just need to excute somefile.vxml.
Thanks,
Phani.
On Wed, Apr 4, 2012 at 10:50 AM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> The notes I have state that the audium_* variables have to be present and
> omitting them isn't something I've ever bothered testing. The
> audium_exit_state variable is the only one you need to pay particular
> attention to with regard to the element settings. Any value you return in
> audium_exit_state must have a matching exit state defined in the VoiceXML
> Insert element settings.
>
> Paul
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402249
> >
>
> or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Paul Tindall on 04-04-2012 12:24:39 PM
You can't just use a variable containing the VoiceXML. The source must resolve to something/somewhere that the VoiceXML gateway can access via the URI in a <subdialog> element. By default, if the source VoiceXML document is set in the element as "my_vxml_doc.vxml" it will physically need to exist as ... Tomcat/webapps/CVP/my_vxml_doc.vxml.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 12:37:27 PM
If i use Subdialoginvoke where should i place my vxml files to assign as SubdialogURI.
I kept voiceXML file in thiis path http://10.9.13.79/CVP/VXMLServer/Tomcat/webapps/CVP/Flowsheet.vxml and Local application as Flase
The Flowsheet.vxml looks like
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press 1</prompt>
</menu>
</vxml>
Thnaks,
Phani/.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Paul Tindall on 04-04-2012 01:16:15 PM
You can specify either absolute or relative locations, it just has to be accessible to the VoiceXML gateway. If you use a relative location then I believe it will be relative to ...Tomcat/webapps/CVP/ just as it would for VoiceXML Insert. To be certain you can check the location the VoiceXML session is trying to access in a number of ways: sho http client hist, trace from debug http client msg, CVP sniffer trace, etc
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 04-04-2012 01:25:16 PM
Suppose i had a HelloWorld.vxml files in another server like in this url
http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets
How to specify this url in subdialog invoke element.
Do i need to follow same procedure as VXML insert as below.
<vxml version="2.0" application="/CVP/Server?audium_vxml_root=true*&*
calling_into=playrtsp*&*namelist=element_log_value">
On Wed, Apr 4, 2012 at 12:16 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> You can specify either absolute or relative locations, it just has to be
> accessible to the VoiceXML gateway. If you use a relative location then I
> believe it will be relative to ...Tomcat/webapps/CVP/ just as it would for
> VoiceXML Insert. To be certain you can check the location the VoiceXML
> session is trying to access in a number of ways: sho http client hist,
> trace from debug http client msg, CVP sniffer trace, etc
>
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404784>
>
>
>
> or simply reply to this email.
>
Subject: RE: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP
Replied by: Paul Tindall on 04-04-2012 01:35:15 PM
Set the element subdialog URI to the absolute location http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or whatever your specific example is. Just make sure w7-w8n943q1.smrcy.com is accessible to the VoiceXML gateway. Provided it's a valid VoiceXML subdialog, you don't have the same constraints on its format as you do with VoiceXML Insert.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 04-04-2012 01:46:16 PM
http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/ This URL is giving the
following response
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press
1</prompt>
</menu>
</vxml>
But in CVP activitylog it shown error.badfetch.405
Phani.
On Wed, Apr 4, 2012 at 12:40 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> So
>
> If the HelloWorld.vxml contains below format will it works
>
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <vxml version="2.1">
>
> <menu dtmf="true">
>
> <property name="inputmodes" value="dtmf"></property>
>
> <prompt>Welcome to Track My Health.</prompt>
>
> <prompt>Please choose a flow sheet.</prompt>
>
> <prompt>For Heart Failure - Manual Entry, please press
> 1</prompt>
>
> </menu>
>
> </vxml>
>
>
>
> Let me know
>
> Thanks,
>
> Phani.
>
>
> On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
>
> cdicuser@developer.cisco.com> wrote:
>
> > Paul Tindall has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > Set the element subdialog URI to the absolute location
> > http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> > whatever your specific example is. Just make sure
> w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a
> valid VoiceXML
> > subdialog, you don't have the same constraints on its format as you do
> with
> > VoiceXML Insert.
>
> >
> >
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796>
>
>
> >
> >
> >
> > or simply reply to this email.
> >
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490>
>
>
>
> or simply reply to this email.
>
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 04-04-2012 02:06:16 PM
Hi Hemal,
Where do i check that what versions of IOS gateway i am using.
Phani.
On Wed, Apr 4, 2012 at 12:56 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> The vxml syntax is fine and the vxml browser should not throw any errors.
> What version of IOS gateway do you have ?
>
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Wednesday, April 04, 2012 12:40 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Paul Tindall in Customer Voice
> Portal (CVP) - CVP - Al
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> So
>
> If the HelloWorld.vxml contains below format will it works
>
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <vxml version="2.1">
>
> <menu dtmf="true">
>
> <property name="inputmodes" value="dtmf"></property>
>
> <prompt>Welcome to Track My Health.</prompt>
>
> <prompt>Please choose a flow sheet.</prompt>
>
> <prompt>For Heart Failure - Manual Entry, please press
> 1</prompt>
>
> </menu>
>
> </vxml>
>
>
>
> Let me know
>
> Thanks,
>
> Phani.
>
>
> On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Paul Tindall has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > Set the element subdialog URI to the absolute location
> > http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> > whatever your specific example is. Just make sure
> w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a
> valid VoiceXML
> > subdialog, you don't have the same constraints on its format as you do
> with
> > VoiceXML Insert.
> >
> >
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796
> >
> >
> >
> >
> > or simply reply to this email.
> >
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406520
> >
>
> or simply reply to this email.
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Hemal Mehta on 04-04-2012 02:17:16 PM
Yes, vxml is fine. Badfetch is showing something else
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, April 04, 2012 1:10 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Janine Graves has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
I used the vxml code below and put the code into a file C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72)
In the Subdialog invoke element I configured
SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml
Local Application:false
(I left Parameter and Return Value empty)
This all worked just fine.
test.vxml:
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<prompt>Enter some digits</prompt>
<filled>
you entered <value expr="test"/>
<return/>
</filled>
</field>
</form>
</vxml>
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 02:39:16 PM
Why don't you just try replacing your menu with my code below. Perhaps the gateway doesn't like a menu with 1 option. Also you need a return statement or your license will be hung on VxmlServer for 30 minutes. When I omit the return statement, my subdialog invoke works, but I do get an error in the log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I follow the same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxml I tested the by accessing from Internet explorer the vxml file is getting shown. I tried with LoacalApplication : True and False. Call gets dropped at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > I used the vxml code below and put the code into a file > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > In the Subdialog invoke element I configured > SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left Parameter and Return Value empty) > > This all worked just fine. > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field name="test" type="digits"> > <property name="inputmodes" value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > you entered <value expr="test"/> > <return/> > </filled> > </field> > </form> > </vxml> > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 02:47:16 PM
I am using your code only...I did what ever you suggeested in the previous
discussions.
On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Why don't you just try replacing your menu with my code below. Perhaps the
> gateway doesn't like a menu with 1 option. Also you need a return statement
> or your license will be hung on VxmlServer for 30 minutes. When I omit the
> return statement, my subdialog invoke works, but I do get an error in the
> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani
> Venigalla has created a new message in the forum "CVP - All Versions":
> -------------------------------------------------------------- I follow the
> same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from Internet explorer the vxml file is getting
> shown. I tried with LoacalApplication : True and False. Call gets dropped
> at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr
> 4, 2012 at 1:09 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
> message in the forum "CVP - All Versions": > >
> -------------------------------------------------------------- > I used the
> vxml code below and put the code into a file >
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
> > In the Subdialog invoke element I configured > SubdialogUIR:
> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left
> Parameter and Return Value empty) > > This all worked just fine. > >
> test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field
> name="test" type="digits"> > <property name="inputmodes"
> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
> you entered <value expr="test"/> > <return/> > </filled> > </field> >
> </form> > </vxml> > -- > To respond to this post, please click the
> following link: > > < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> > > > or simply reply to this email. -- To respond to this post, please
> click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933
> >
>
> or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 02:57:16 PM
Before the subdialog invoke i used audio element saying " Please select
from following".. then in subdialog invoke i am calling your code.,
I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well.
On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> With my code, you don't hear the TTS speaking from the test.vxml code? It
> works on my CVP8 system. What version of Studio and VXmlServer do you
> have?Back in CVP 7, you needed an Audio element to play to caller (say
> hello or something) before using a Subdialog Invoke element. On 4/4/2012
> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
> created a new message in the forum "CVP - All Versions":
> -------------------------------------------------------------- I am using
> your code only...I did what ever you suggeested in the previous
> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created
> a new message in the forum "CVP - All Versions": > >
> -------------------------------------------------------------- > Why don't
> you just try replacing your menu with my code below. Perhaps the > gateway
> doesn't like a menu with 1 option. Also you need a return statement > or
> your license will be hung on VxmlServer for 30 minutes. When I omit the >
> return statement, my subdialog invoke works, but I do get an error in the >
> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani >
> Venigalla has created a new message in the forum "CVP - All Versions": >
> -------------------------------------------------------------- I follow the
> > same and gave Subdialog URI as
> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from
> Internet explorer the vxml file is getting > shown. I tried with
> LoacalApplication : True and False. Call gets dropped > at the Subdialog
> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at
> 1:09 PM, Cisco Developer Community Forums < > cdicuser@developer.cisco.com>
> wrote: > Janine Graves has created a new > message in the forum "CVP - All
> Versions": > > >
> -------------------------------------------------------------- > I used the
> > vxml code below and put the code into a file > >
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left
> > Parameter and Return Value empty) > > This all worked just fine. > > >
> test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field
> > name="test" type="digits"> > <property name="inputmodes" >
> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
> > you entered <value expr="test"/> > <return/> > </filled> > </field> > >
> </form> > </vxml> > -- > To respond to this post, please click the >
> following link: > > < > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
> > > > or simply reply to this email. -- To respond to this post, please >
> click the following link: < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
> > or simply reply to this email. -- Janine Graves > -- > To respond to this
> post, please click the following link: > > < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please
> click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667
> >
>
> or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 03:59:16 PM
I placed audio file insted of TTS it played but after sometime i tried to
excute then its silent again...
On Wed, Apr 4, 2012 at 2:11 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I configured "test" in return value.
>
> I am not understanding why its getting so longer to show in activity log.
>
> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla <
> phani.venigalla@gmail.com> wrote:
>
>> Before the subdialog invoke i used audio element saying " Please select
>> from following".. then in subdialog invoke i am calling your code.,
>>
>> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well.
>>
>> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums <
>> cdicuser@developer.cisco.com> wrote:
>>
>>> Janine Graves has created a new message in the forum "CVP - All
>>> Versions":
>>>
>>> --------------------------------------------------------------
>>> With my code, you don't hear the TTS speaking from the test.vxml code?
>>> It works on my CVP8 system. What version of Studio and VXmlServer do you
>>> have?Back in CVP 7, you needed an Audio element to play to caller (say
>>> hello or something) before using a Subdialog Invoke element. On 4/4/2012
>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
>>> created a new message in the forum "CVP - All Versions":
>>> -------------------------------------------------------------- I am using
>>> your code only...I did what ever you suggeested in the previous
>>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
>>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has
>>> created a new message in the forum "CVP - All Versions": > >
>>> -------------------------------------------------------------- > Why don't
>>> you just try replacing your menu with my code below. Perhaps the > gateway
>>> doesn't like a menu with 1 option. Also you need a return statement > or
>>> your license will be hung on VxmlServer for 30 minutes. When I omit the >
>>> return statement, my subdialog invoke works, but I do get an error in the >
>>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani >
>>> Venigalla has created a new message in the forum "CVP - All Versions": >
>>> -------------------------------------------------------------- I follow the
>>> > same and gave Subdialog URI as
>>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from
>>> Internet explorer the vxml file is getting > shown. I tried with
>>> LoacalApplication : True and False. Call gets dropped > at the Subdialog
>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at
>>> 1:09 PM, Cisco Developer Community Forums < >
>>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
>>> > message in the forum "CVP - All Versions": > > >
>>> -------------------------------------------------------------- > I used the
>>> > vxml code below and put the code into a file > >
>>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
>>> left > Parameter and Return Value empty) > > This all worked just fine. > >
>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> >
>>> <field > name="test" type="digits"> > <property name="inputmodes" >
>>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
>>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > >
>>> </form> > </vxml> > -- > To respond to this post, please click the >
>>> following link: > > < > >
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
>>> > > > or simply reply to this email. -- To respond to this post, please >
>>> click the following link: < >
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
>>> > or simply reply to this email. -- Janine Graves > -- > To respond to this
>>> post, please click the following link: > > < >
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please
>>> click the following link: <
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
>>> or simply reply to this email. -- Janine Graves
>>> --
>>> To respond to this post, please click the following link:
>>>
>>> <
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667
>>> >
>>>
>>> or simply reply to this email.
>>
>>
>>
>
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 04-04-2012 04:48:16 PM
All you need to do is deploy your app with new settings of lower timeout value and just test again, u will see the results in few mins
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, April 04, 2012 3:43 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
there are still some files showing zero bytes in Activity log..Shall wait
till those files update for testing agian...
On Wed, Apr 4, 2012 at 3:38 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Go into the Studio application, right click on the app name in the
> Navigator window, go to Properties > Call Studio > General Settings. Change
> the SessionTimeout to 3 - then it'll log after 3 minutes if the license 'is
> hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM, Cisco
> Developer Community Forums wrote: Phani Venigalla has created a new message
> in the forum "CVP - All Versions":
> -------------------------------------------------------------- Its keep on
> sending in error log VoiceXML Session timeout occurred at element Subdialog
> Invoke_01: A session has timed out after 30 minutes. This is most likely
> caused by a start of call class or action element at the top of the
> callflow not completing before the voice browser's fetch timeout occurred.
> To resolve it ensure this class executes in a timely manner or run it in
> the background. Session timeouts may also occur under high load or if there
> are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at
> 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed
> audio file insted of TTS it played but after sometime i tried to > excute
> then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani
> Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test"
> in return value. >> >> I am not understanding why its getting so longer to
> show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla
> < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog invoke
> i used audio element saying " Please select >>> from following".. then in
> subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1) and
> vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at
> 1:51 PM, Cisco Developer Community Forums < >>>
> cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created a
> new message in the forum "CVP - All >>>> Versions": >>>> >>>>
> -------------------------------------------------------------- >>>> With my
> code, you don't hear the TTS speaking from the test.vxml code? >>>> It
> works on my CVP8 system. What version of Studio and VXmlServer do you >>>>
> have?Back in CVP 7, you needed an Audio element to play to caller (say >>>>
> hello or something) before using a Subdialog Invoke element. On 4/4/2012
> >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
> >>>> created a new message in the forum "CVP - All Versions": >>>>
> -------------------------------------------------------------- I am using
> >>>> your code only...I did what ever you suggeested in the previous >>>>
> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community >>>>
> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>>
> created a new message in the forum "CVP - All Versions": > > >>>>
> -------------------------------------------------------------- > Why don't
> >>>> you just try replacing your menu with my code below. Perhaps the >
> gateway >>>> doesn't like a menu with 1 option. Also you need a return
> statement > or >>>> your license will be hung on VxmlServer for 30 minutes.
> When I omit the > >>>> return statement, my subdialog invoke works, but I
> do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer
> Community Forums wrote: Phani > >>>> Venigalla has created a new message in
> the forum "CVP - All Versions": > >>>>
> -------------------------------------------------------------- I follow the
> >>>> > same and gave Subdialog URI as >>>>
> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>>
> from Internet explorer the vxml file is getting > shown. I tried with >>>>
> LoacalApplication : True and False. Call gets dropped > at the Subdialog
> >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012
> at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>>
> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
> >>>> > message in the forum "CVP - All Versions": > > > >>>>
> -------------------------------------------------------------- > I used the
> >>>> > vxml code below and put the code into a file > > >>>>
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
> >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
> >>>> left > Parameter and Return Value empty) > > This all worked just
> fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0">
> > <form> > >>>> <field > name="test" type="digits"> > <property
> name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some
> digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> >
> <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To
> respond to this post, please click the > >>>> following link: > > < > >
> >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
> >>>> > > > or simply reply to this email. -- To respond to this post,
> please > >>>> click the following link: < > >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
> >>>> > or simply reply to this email. -- Janine Graves > -- > To respond to
> this >>>> post, please click the following link: > > < > >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933>
> > > > or simply reply to this email. -- To respond to this post, please
> >>>> click the following link: < >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
> >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To
> respond to this post, please click the following link: >>>> >>>> < >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667>>>> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To
> respond to this post, please click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406907
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406915>
or simply reply to this email.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 04-04-2012 05:11:16 PM
This time it shows this message
ubdialog Invoke_01,element,warning,A session has timed out after 3 minutes.
This is most likely caused by a start of call class or action element at
the top of the callflow not completing before the voice browser's fetch
timeout occurred. To resolve it ensure this class executes in a timely
manner or run it in the background. Session timeouts may also occur under
high load or if there are issues with a load balancer or voice browser.
10.9.13.79.1333573206723.561.MyMercy_Dev,04/04/2012
16:03:45.880,,end,how,app_session_complete
10.9.13.79.1333573206723.561.MyMercy_Dev,04/04/2012
16:03:45.880,,end,result,timeout
But the functionality doesn't work.
On Wed, Apr 4, 2012 at 3:48 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> All you need to do is deploy your app with new settings of lower timeout
> value and just test again, u will see the results in few mins
>
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Wednesday, April 04, 2012 3:43 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> Portal (CVP) - CVP - A
>
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> there are still some files showing zero bytes in Activity log..Shall wait
> till those files update for testing agian...
>
> On Wed, Apr 4, 2012 at 3:38 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Go into the Studio application, right click on the app name in the
> > Navigator window, go to Properties > Call Studio > General Settings.
> Change
> > the SessionTimeout to 3 - then it'll log after 3 minutes if the license
> 'is
> > hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM,
> Cisco
> > Developer Community Forums wrote: Phani Venigalla has created a new
> message
>
> > in the forum "CVP - All Versions":
> > -------------------------------------------------------------- Its keep
> on
> > sending in error log VoiceXML Session timeout occurred at element
> Subdialog
> > Invoke_01: A session has timed out after 30 minutes. This is most likely
> > caused by a start of call class or action element at the top of the
> > callflow not completing before the voice browser's fetch timeout
> occurred.
> > To resolve it ensure this class executes in a timely manner or run it in
> > the background. Session timeouts may also occur under high load or if
> there
> > are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at
> > 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed
> > audio file insted of TTS it played but after sometime i tried to > excute
> > then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani
> > Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test"
> > in return value. >> >> I am not understanding why its getting so longer
> to
> > show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani
> Venigalla
> > < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog
> invoke
> > i used audio element saying " Please select >>> from following".. then in
> > subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1)
> and
> > vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at
> > 1:51 PM, Cisco Developer Community Forums < >>>
> > cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created
> a
>
> > new message in the forum "CVP - All >>>> Versions": >>>> >>>>
> > -------------------------------------------------------------- >>>> With
> my
> > code, you don't hear the TTS speaking from the test.vxml code? >>>> It
> > works on my CVP8 system. What version of Studio and VXmlServer do you
> >>>>
> > have?Back in CVP 7, you needed an Audio element to play to caller (say
> >>>>
> > hello or something) before using a Subdialog Invoke element. On 4/4/2012
> > >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla
> has
>
> > >>>> created a new message in the forum "CVP - All Versions": >>>>
> > -------------------------------------------------------------- I am using
> > >>>> your code only...I did what ever you suggeested in the previous >>>>
> > discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
> >>>>
> > Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>>
>
> > created a new message in the forum "CVP - All Versions": > > >>>>
> > -------------------------------------------------------------- > Why
> don't
> > >>>> you just try replacing your menu with my code below. Perhaps the >
> > gateway >>>> doesn't like a menu with 1 option. Also you need a return
> > statement > or >>>> your license will be hung on VxmlServer for 30
> minutes.
> > When I omit the > >>>> return statement, my subdialog invoke works, but I
> > do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer
> > Community Forums wrote: Phani > >>>> Venigalla has created a new message
> in
>
> > the forum "CVP - All Versions": > >>>>
> > -------------------------------------------------------------- I follow
> the
> > >>>> > same and gave Subdialog URI as >>>>
> > http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>>
> > from Internet explorer the vxml file is getting > shown. I tried with
> >>>>
> > LoacalApplication : True and False. Call gets dropped > at the Subdialog
> > >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012
> > at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>>
> > cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
>
> > >>>> > message in the forum "CVP - All Versions": > > > >>>>
> > -------------------------------------------------------------- > I used
> the
> > >>>> > vxml code below and put the code into a file > > >>>>
> > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address
> 10.1.78.72) >
> > >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> > >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
> > >>>> left > Parameter and Return Value empty) > > This all worked just
> > fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml
> version="2.0">
> > > <form> > >>>> <field > name="test" type="digits"> > <property
> > name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some
> > digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> >
> > <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To
>
> > respond to this post, please click the > >>>> following link: > > < > >
> > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
>
>
> > >>>> > > > or simply reply to this email. -- To respond to this post,
> > please > >>>> click the following link: < > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589
> >
> > >>>> > or simply reply to this email. -- Janine Graves > -- > To respond
> to
>
> > this >>>> post, please click the following link: > > < > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933>
>
>
> > > > > or simply reply to this email. -- To respond to this post, please
> > >>>> click the following link: < >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957
> >
> > >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To
>
> > respond to this post, please click the following link: >>>> >>>> < >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667>>>>
> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To
>
> > respond to this post, please click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872
> >
> > or simply reply to this email. -- Janine Graves
>
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406907
>
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406915>
>
>
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405280>
>
>
>
> or simply reply to this email.
>
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 06:03:32 PM
For some reason i couldn't able to execute he Subdialog Invoke. Its juat simple VXML file. I dont know its not getting access the URL.
Please help me to work this.
Its keep on giving this error in Error log and Activity log.
0.9.13.79.1333576343952.570.MyMercy_Dev,04/04/2012 16:56:15.889,A VoiceXML Session timeout occurred at element Subdialog Invoke_01: A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 07:20:15 PM
Why don't you just try replacing your menu with my code below. Perhaps the gateway doesn't like a menu with 1 option. Also you need a return statement or your license will be hung on VxmlServer for 30 minutes. When I omit the return statement, my subdialog invoke works, but I do get an error in the log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I follow the same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxml I tested the by accessing from Internet explorer the vxml file is getting shown. I tried with LoacalApplication : True and False. Call gets dropped at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > I used the vxml code below and put the code into a file > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > In the Subdialog invoke element I configured > SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left Parameter and Return Value empty) > > This all worked just fine. > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field name="test" type="digits"> > <property name="inputmodes" value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > you entered <value expr="test"/> > <return/> > </filled> > </field> > </form> > </vxml> > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> or simply reply to this email. -- Janine Graves
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 04-04-2012 07:33:16 PM
Hey Phani Venigalla,
What sort of email client are you using?
Your posts to the forum through your email client come to me as just one line – no line breaks, no paragraphs etc. Very hard to read. Can you rectify this please?
Regards,
Geoff
--------------------------------------------------------------------
Geoff Thompson Unified Contact Center Practice
Email: geoff@hp.com HP Technology Consulting
Phone: +1.408.447.4297 Hewlett-Packard Company
Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
____________________________________________________________________
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 04-04-2012 07:45:16 PM
Why are you posting twice?
Regards,
Geoff
Subject: Pls unregister me from forum
Replied by: ERWAN TJIA on 04-04-2012 07:45:17 PM
Sent from my iPhone
On 2012-04-04, at 5:42 PM, "Cisco Developer Community Forums" <cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> I am using Gmail and just publishing in Cisco forums.
>
> On Wed, Apr 4, 2012 at 6:33 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > Hey Phani Venigalla,
> >
> > What sort of email client are you using?
> >
> > Your posts to the forum through your email client come to me as just one
> > line – no line breaks, no paragraphs etc. Very hard to read. Can you
> > rectify this please?
> >
> > Regards,
> > Geoff
> > --------------------------------------------------------------------
> > Geoff Thompson Unified Contact Center Practice
> > Email: geoff@hp.com HP Technology Consulting
> > Phone: +1.408.447.4297 Hewlett-Packard Company
> > Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> > ____________________________________________________________________
> > --
> > To respond to this post, please click the following link:
> >
> > <
> > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405517
> > >
> >
> > or simply reply to this email.
>
>
> This is my issue with subdialoginvoke
>
> I could able to execute once subdialoginvoke element but later its keep on giving this erroe
>
> 10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,Subdialog Invoke_01,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
> 10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,,end,how,app_session_complete
>
> Let me know whats wrong with it
>
> Thanks,
> Phani
>
> --
> To respond to this post, please click the following link:
>
> <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5407191>
>
> or simply reply to this email.
Subject: Re: New Message from ERWAN TJIA in Customer Voice Portal (CVP) - CVP - All
Replied by: ERWAN TJIA on 04-04-2012 07:48:16 PM
Anyone know how to unregister from this forum? So nor spam by the email from here.
Tks
Sent from my iPhone
On 2012-04-04, at 5:46 PM, "Cisco Developer Community Forums" <cdicuser@developer.cisco.com> wrote:
> ERWAN TJIA has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Sent from my iPhone
>
> On 2012-04-04, at 5:42 PM, "Cisco Developer Community Forums" <cdicuser@developer.cisco.com> wrote:
>
> > Phani Venigalla has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > I am using Gmail and just publishing in Cisco forums.
> >
> > On Wed, Apr 4, 2012 at 6:33 PM, Cisco Developer Community Forums <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> > > Versions":
> > >
> > > --------------------------------------------------------------
> > > Hey Phani Venigalla,
> > >
> > > What sort of email client are you using?
> > >
> > > Your posts to the forum through your email client come to me as just one
> > > line – no line breaks, no paragraphs etc. Very hard to read. Can you
> > > rectify this please?
> > >
> > > Regards,
> > > Geoff
> > > --------------------------------------------------------------------
> > > Geoff Thompson Unified Contact Center Practice
> > > Email: geoff@hp.com HP Technology Consulting
> > > Phone: +1.408.447.4297 Hewlett-Packard Company
> > > Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> > > ____________________________________________________________________
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405517
> > > >
> > >
> > > or simply reply to this email.
> >
> >
> > This is my issue with subdialoginvoke
> >
> > I could able to execute once subdialoginvoke element but later its keep on giving this erroe
> >
> > 10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,Subdialog Invoke_01,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
> > 10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,,end,how,app_session_complete
> >
> > Let me know whats wrong with it
> >
> > Thanks,
> > Phani
> >
> > --
> > To respond to this post, please click the following link:
> >
> > <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5407191>
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405535>
>
> or simply reply to this email.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 04-04-2012 08:38:16 PM
Phani Venigalla what’s the point of your post? Didn’t you read my previous post about trying to make the forum less like spam?
You have quoted Janine’s unreadable post to make another unreadable post - and have added no words of you own. It’s becoming tiresome.
Regards,
Geoff
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 04-04-2012 01:40:16 PM
So
If the HelloWorld.vxml contains below format will it works
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press
1</prompt>
</menu>
</vxml>
Let me know
Thanks,
Phani.
On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Set the element subdialog URI to the absolute location
> http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> whatever your specific example is. Just make sure w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a valid VoiceXML
> subdialog, you don't have the same constraints on its format as you do with
> VoiceXML Insert.
>
>
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796>
>
>
>
> or simply reply to this email.
>
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 04-04-2012 01:56:16 PM
The vxml syntax is fine and the vxml browser should not throw any errors. What version of IOS gateway do you have ?
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, April 04, 2012 12:40 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
So
If the HelloWorld.vxml contains below format will it works
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press
1</prompt>
</menu>
</vxml>
Let me know
Thanks,
Phani.
On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Set the element subdialog URI to the absolute location
> http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> whatever your specific example is. Just make sure w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a valid VoiceXML
> subdialog, you don't have the same constraints on its format as you do with
> VoiceXML Insert.
>
>
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796>
>
>
>
> or simply reply to this email.
>
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490>
or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 04-04-2012 02:09:34 PM
I used the vxml code below and put the code into a file C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72)
In the Subdialog invoke element I configured
SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml
Local Application:false
(I left Parameter and Return Value empty)
This all worked just fine.
test.vxml:
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<prompt>Enter some digits</prompt>
<filled>
you entered <value expr="test"/>
<return/>
</filled>
</field>
</form>
</vxml>
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 04-04-2012 02:16:16 PM
Run show version on vxml gateway.
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, April 04, 2012 1:06 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Hi Hemal,
Where do i check that what versions of IOS gateway i am using.
Phani.
On Wed, Apr 4, 2012 at 12:56 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> The vxml syntax is fine and the vxml browser should not throw any errors.
> What version of IOS gateway do you have ?
>
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Wednesday, April 04, 2012 12:40 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Paul Tindall in Customer Voice
> Portal (CVP) - CVP - Al
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> So
>
> If the HelloWorld.vxml contains below format will it works
>
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <vxml version="2.1">
>
> <menu dtmf="true">
>
> <property name="inputmodes" value="dtmf"></property>
>
> <prompt>Welcome to Track My Health.</prompt>
>
> <prompt>Please choose a flow sheet.</prompt>
>
> <prompt>For Heart Failure - Manual Entry, please press
> 1</prompt>
>
> </menu>
>
> </vxml>
>
>
>
> Let me know
>
> Thanks,
>
> Phani.
>
>
> On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Paul Tindall has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > Set the element subdialog URI to the absolute location
> > http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> > whatever your specific example is. Just make sure
> w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a
> valid VoiceXML
> > subdialog, you don't have the same constraints on its format as you do
> with
> > VoiceXML Insert.
> >
> >
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796
> >
> >
> >
> >
> > or simply reply to this email.
> >
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406520
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404867>
or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 02:27:17 PM
I follow the same and gave Subdialog URI as
http://10.9.13.79:7000/CVP/FlowSheet.vxml
I tested the by accessing from Internet explorer the vxml file is getting
shown.
I tried with LoacalApplication : True and False.
Call gets dropped at the Subdialog Invoke and Activity log file shown Zero
bytes.
On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> I used the vxml code below and put the code into a file
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72)
>
> In the Subdialog invoke element I configured
> SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml
> Local Application:false
> (I left Parameter and Return Value empty)
>
> This all worked just fine.
>
> test.vxml:
> <?xml version="1.0"?>
> <vxml version="2.0">
> <form>
> <field name="test" type="digits">
> <property name="inputmodes" value="dtmf"></property>
> <prompt>Enter some digits</prompt>
> <filled>
> you entered <value expr="test"/>
> <return/>
> </filled>
> </field>
> </form>
> </vxml>
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548
> >
>
> or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 02:35:16 PM
This is the error i am getting in log
nvoke_01,element,warning,A session has timed out after 30 minutes. This is
most likely caused by a start of call class or action element at the top of
the callflow not completing before the voice browser's fetch timeout
occurred. To resolve it ensure this class executes in a timely manner or
run it in the background. Session timeouts may also occur under high load
or if there are issues with a load balancer or voice browser.
10.9.13.79.1333556623833.520.MyMercy_Dev,04/04/2012
11:54:15.880,,end,how,app_session_complete
On Wed, Apr 4, 2012 at 1:26 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I follow the same and gave Subdialog URI as
> http://10.9.13.79:7000/CVP/FlowSheet.vxml
>
> I tested the by accessing from Internet explorer the vxml file is getting
> shown.
>
> I tried with LoacalApplication : True and False.
>
> Call gets dropped at the Subdialog Invoke and Activity log file shown Zero
> bytes.
>
>
>
> On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> Janine Graves has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> I used the vxml code below and put the code into a file
>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72)
>>
>> In the Subdialog invoke element I configured
>> SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml
>> Local Application:false
>> (I left Parameter and Return Value empty)
>>
>> This all worked just fine.
>>
>> test.vxml:
>> <?xml version="1.0"?>
>> <vxml version="2.0">
>> <form>
>> <field name="test" type="digits">
>> <property name="inputmodes" value="dtmf"></property>
>> <prompt>Enter some digits</prompt>
>> <filled>
>> you entered <value expr="test"/>
>> <return/>
>> </filled>
>> </field>
>> </form>
>> </vxml>
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 02:46:16 PM
that's because your code doesn't have a return statement. On 4/4/2012 12:35 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- This is the error i am getting in log nvoke_01,element,warning,A session has timed out after 30 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser. 10.9.13.79.1333556623833.520.MyMercy_Dev,04/04/2012 11:54:15.880,,end,how,app_session_complete On Wed, Apr 4, 2012 at 1:26 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I follow the same and gave Subdialog URI as > http://10.9.13.79:7000/CVP/FlowSheet.vxml > > I tested the by accessing from Internet explorer the vxml file is getting > shown. > > I tried with LoacalApplication : True and False. > > Call gets dropped at the Subdialog Invoke and Activity log file shown Zero > bytes. > > > > On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums < > cdicuser@developer.cisco.com> wrote: > >> Janine Graves has created a new message in the forum "CVP - All Versions": >> >> -------------------------------------------------------------- >> I used the vxml code below and put the code into a file >> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >> >> In the Subdialog invoke element I configured >> SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml >> Local Application:false >> (I left Parameter and Return Value empty) >> >> This all worked just fine. >> >> test.vxml: >> <?xml version="1.0"?> >> <vxml version="2.0"> >> <form> >> <field name="test" type="digits"> >> <property name="inputmodes" value="dtmf"></property> >> <prompt>Enter some digits</prompt> >> <filled> >> you entered <value expr="test"/> >> <return/> >> </filled> >> </field> >> </form> >> </vxml> >> -- >> To respond to this post, please click the following link: >> >> < >> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548 >> > >> >> or simply reply to this email. > > > -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406620> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 02:51:16 PM
With my code, you don't hear the TTS speaking from the test.vxml code? It works on my CVP8 system. What version of Studio and VXmlServer do you have?Back in CVP 7, you needed an Audio element to play to caller (say hello or something) before using a Subdialog Invoke element. On 4/4/2012 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I am using your code only...I did what ever you suggeested in the previous discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > Why don't you just try replacing your menu with my code below. Perhaps the > gateway doesn't like a menu with 1 option. Also you need a return statement > or your license will be hung on VxmlServer for 30 minutes. When I omit the > return statement, my subdialog invoke works, but I do get an error in the > log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani > Venigalla has created a new message in the forum "CVP - All Versions": > -------------------------------------------------------------- I follow the > same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from Internet explorer the vxml file is getting > shown. I tried with LoacalApplication : True and False. Call gets dropped > at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at 1:09 PM, Cisco Developer Community Forums < > cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new > message in the forum "CVP - All Versions": > > > -------------------------------------------------------------- > I used the > vxml code below and put the code into a file > > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > > In the Subdialog invoke element I configured > SubdialogUIR: > http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left > Parameter and Return Value empty) > > This all worked just fine. > > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field > name="test" type="digits"> > <property name="inputmodes" > value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > > you entered <value expr="test"/> > <return/> > </filled> > </field> > > </form> > </vxml> > -- > To respond to this post, please click the > following link: > > < > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> > > > or simply reply to this email. -- To respond to this post, please > click the following link: < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> > or simply reply to this email. -- Janine Graves > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 02:53:16 PM
Also, back on CVP7, you HAD to return a variable in the return statement and then configure that variable name in the SubdialogInvoke element on the Return setting line. On 4/4/2012 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I am using your code only...I did what ever you suggeested in the previous discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > Why don't you just try replacing your menu with my code below. Perhaps the > gateway doesn't like a menu with 1 option. Also you need a return statement > or your license will be hung on VxmlServer for 30 minutes. When I omit the > return statement, my subdialog invoke works, but I do get an error in the > log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani > Venigalla has created a new message in the forum "CVP - All Versions": > -------------------------------------------------------------- I follow the > same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from Internet explorer the vxml file is getting > shown. I tried with LoacalApplication : True and False. Call gets dropped > at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at 1:09 PM, Cisco Developer Community Forums < > cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new > message in the forum "CVP - All Versions": > > > -------------------------------------------------------------- > I used the > vxml code below and put the code into a file > > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > > In the Subdialog invoke element I configured > SubdialogUIR: > http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left > Parameter and Return Value empty) > > This all worked just fine. > > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field > name="test" type="digits"> > <property name="inputmodes" > value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > > you entered <value expr="test"/> > <return/> > </filled> > </field> > > </form> > </vxml> > -- > To respond to this post, please click the > following link: > > < > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> > > > or simply reply to this email. -- To respond to this post, please > click the following link: < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> > or simply reply to this email. -- Janine Graves > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 03:11:16 PM
I configured "test" in return value.
I am not understanding why its getting so longer to show in activity log.
On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> Before the subdialog invoke i used audio element saying " Please select
> from following".. then in subdialog invoke i am calling your code.,
>
> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well.
>
> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> Janine Graves has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> With my code, you don't hear the TTS speaking from the test.vxml code? It
>> works on my CVP8 system. What version of Studio and VXmlServer do you
>> have?Back in CVP 7, you needed an Audio element to play to caller (say
>> hello or something) before using a Subdialog Invoke element. On 4/4/2012
>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
>> created a new message in the forum "CVP - All Versions":
>> -------------------------------------------------------------- I am using
>> your code only...I did what ever you suggeested in the previous
>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has
>> created a new message in the forum "CVP - All Versions": > >
>> -------------------------------------------------------------- > Why don't
>> you just try replacing your menu with my code below. Perhaps the > gateway
>> doesn't like a menu with 1 option. Also you need a return statement > or
>> your license will be hung on VxmlServer for 30 minutes. When I omit the >
>> return statement, my subdialog invoke works, but I do get an error in the >
>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani >
>> Venigalla has created a new message in the forum "CVP - All Versions": >
>> -------------------------------------------------------------- I follow the
>> > same and gave Subdialog URI as
>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from
>> Internet explorer the vxml file is getting > shown. I tried with
>> LoacalApplication : True and False. Call gets dropped > at the Subdialog
>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at
>> 1:09 PM, Cisco Developer Community Forums < >
>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new >
>> message in the forum "CVP - All Versions": > > >
>> -------------------------------------------------------------- > I used the
>> > vxml code below and put the code into a file > >
>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left
>> > Parameter and Return Value empty) > > This all worked just fine. > > >
>> test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field
>> > name="test" type="digits"> > <property name="inputmodes" >
>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > >
>> </form> > </vxml> > -- > To respond to this post, please click the >
>> following link: > > < > >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
>> > > > or simply reply to this email. -- To respond to this post, please >
>> click the following link: < >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
>> > or simply reply to this email. -- Janine Graves > -- > To respond to this
>> post, please click the following link: > > < >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please
>> click the following link: <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
>> or simply reply to this email. -- Janine Graves
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 04:17:16 PM
It worked with audio tag but now its not working..
On Wed, Apr 4, 2012 at 1:46 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I am using your code only...I did what ever you suggeested in the previous
> discussions.
>
>
> On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> Janine Graves has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> Why don't you just try replacing your menu with my code below. Perhaps
>> the gateway doesn't like a menu with 1 option. Also you need a return
>> statement or your license will be hung on VxmlServer for 30 minutes. When I
>> omit the return statement, my subdialog invoke works, but I do get an error
>> in the log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote:
>> Phani Venigalla has created a new message in the forum "CVP - All
>> Versions": -------------------------------------------------------------- I
>> follow the same and gave Subdialog URI as
>> http://10.9.13.79:7000/CVP/FlowSheet.vxml I tested the by accessing from
>> Internet explorer the vxml file is getting shown. I tried with
>> LoacalApplication : True and False. Call gets dropped at the Subdialog
>> Invoke and Activity log file shown Zero bytes. On Wed, Apr 4, 2012 at 1:09
>> PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com>
>> wrote: > Janine Graves has created a new message in the forum "CVP - All
>> Versions": > >
>> -------------------------------------------------------------- > I used the
>> vxml code below and put the code into a file >
>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
>> > In the Subdialog invoke element I configured > SubdialogUIR:
>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left
>> Parameter and Return Value empty) > > This all worked just fine. > >
>> test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field
>> name="test" type="digits"> > <property name="inputmodes"
>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
>> you entered <value expr="test"/> > <return/> > </filled> > </field> >
>> </form> > </vxml> > -- > To respond to this post, please click the
>> following link: > > < >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> > > > or simply reply to this email. -- To respond to this post, please
>> click the following link: <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
>> or simply reply to this email. -- Janine Graves
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 04:22:16 PM
Its keep on sending in error log
VoiceXML Session timeout occurred at element Subdialog Invoke_01: A
session has timed out after 30 minutes. This is most likely caused by a
start of call class or action element at the top of the callflow not
completing before the voice browser's fetch timeout occurred. To resolve it
ensure this class executes in a timely manner or run it in the background.
Session timeouts may also occur under high load or if there are issues with
a load balancer or voice browser.
On Wed, Apr 4, 2012 at 2:58 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I placed audio file insted of TTS it played but after sometime i tried to
> excute then its silent again...
>
>
> On Wed, Apr 4, 2012 at 2:11 PM, Phani Venigalla <phani.venigalla@gmail.com
> > wrote:
>
>> I configured "test" in return value.
>>
>> I am not understanding why its getting so longer to show in activity log.
>>
>> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla <
>> phani.venigalla@gmail.com> wrote:
>>
>>> Before the subdialog invoke i used audio element saying " Please select
>>> from following".. then in subdialog invoke i am calling your code.,
>>>
>>> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well.
>>>
>>> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums <
>>> cdicuser@developer.cisco.com> wrote:
>>>
>>>> Janine Graves has created a new message in the forum "CVP - All
>>>> Versions":
>>>>
>>>> --------------------------------------------------------------
>>>> With my code, you don't hear the TTS speaking from the test.vxml code?
>>>> It works on my CVP8 system. What version of Studio and VXmlServer do you
>>>> have?Back in CVP 7, you needed an Audio element to play to caller (say
>>>> hello or something) before using a Subdialog Invoke element. On 4/4/2012
>>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
>>>> created a new message in the forum "CVP - All Versions":
>>>> -------------------------------------------------------------- I am using
>>>> your code only...I did what ever you suggeested in the previous
>>>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
>>>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has
>>>> created a new message in the forum "CVP - All Versions": > >
>>>> -------------------------------------------------------------- > Why don't
>>>> you just try replacing your menu with my code below. Perhaps the > gateway
>>>> doesn't like a menu with 1 option. Also you need a return statement > or
>>>> your license will be hung on VxmlServer for 30 minutes. When I omit the >
>>>> return statement, my subdialog invoke works, but I do get an error in the >
>>>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani >
>>>> Venigalla has created a new message in the forum "CVP - All Versions": >
>>>> -------------------------------------------------------------- I follow the
>>>> > same and gave Subdialog URI as
>>>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing
>>>> from Internet explorer the vxml file is getting > shown. I tried with
>>>> LoacalApplication : True and False. Call gets dropped > at the Subdialog
>>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at
>>>> 1:09 PM, Cisco Developer Community Forums < >
>>>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
>>>> > message in the forum "CVP - All Versions": > > >
>>>> -------------------------------------------------------------- > I used the
>>>> > vxml code below and put the code into a file > >
>>>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
>>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
>>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
>>>> left > Parameter and Return Value empty) > > This all worked just fine. > >
>>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> >
>>>> <field > name="test" type="digits"> > <property name="inputmodes" >
>>>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
>>>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > >
>>>> </form> > </vxml> > -- > To respond to this post, please click the >
>>>> following link: > > < > >
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
>>>> > > > or simply reply to this email. -- To respond to this post, please >
>>>> click the following link: < >
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
>>>> > or simply reply to this email. -- Janine Graves > -- > To respond to this
>>>> post, please click the following link: > > < >
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please
>>>> click the following link: <
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
>>>> or simply reply to this email. -- Janine Graves
>>>> --
>>>> To respond to this post, please click the following link:
>>>>
>>>> <
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667
>>>> >
>>>>
>>>> or simply reply to this email.
>>>
>>>
>>>
>>
>
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 04:38:16 PM
Go into the Studio application, right click on the app name in the Navigator window, go to Properties > Call Studio > General Settings. Change the SessionTimeout to 3 - then it'll log after 3 minutes if the license 'is hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Its keep on sending in error log VoiceXML Session timeout occurred at element Subdialog Invoke_01: A session has timed out after 30 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed audio file insted of TTS it played but after sometime i tried to > excute then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test" in return value. >> >> I am not understanding why its getting so longer to show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog invoke i used audio element saying " Please select >>> from following".. then in subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums < >>> cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created a new message in the forum "CVP - All >>>> Versions": >>>> >>>> -------------------------------------------------------------- >>>> With my code, you don't hear the TTS speaking from the test.vxml code? >>>> It works on my CVP8 system. What version of Studio and VXmlServer do you >>>> have?Back in CVP 7, you needed an Audio element to play to caller (say >>>> hello or something) before using a Subdialog Invoke element. On 4/4/2012 >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has >>>> created a new message in the forum "CVP - All Versions": >>>> -------------------------------------------------------------- I am using >>>> your code only...I did what ever you suggeested in the previous >>>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community >>>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>> created a new message in the forum "CVP - All Versions": > > >>>> -------------------------------------------------------------- > Why don't >>>> you just try replacing your menu with my code below. Perhaps the > gateway >>>> doesn't like a menu with 1 option. Also you need a return statement > or >>>> your license will be hung on VxmlServer for 30 minutes. When I omit the > >>>> return statement, my subdialog invoke works, but I do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani > >>>> Venigalla has created a new message in the forum "CVP - All Versions": > >>>> -------------------------------------------------------------- I follow the >>>> > same and gave Subdialog URI as >>>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>> from Internet explorer the vxml file is getting > shown. I tried with >>>> LoacalApplication : True and False. Call gets dropped > at the Subdialog >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new >>>> > message in the forum "CVP - All Versions": > > > >>>> -------------------------------------------------------------- > I used the >>>> > vxml code below and put the code into a file > > >>>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: > >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I >>>> left > Parameter and Return Value empty) > > This all worked just fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > >>>> <field > name="test" type="digits"> > <property name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To respond to this post, please click the > >>>> following link: > > < > > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> >>>> > > > or simply reply to this email. -- To respond to this post, please > >>>> click the following link: < > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> >>>> > or simply reply to this email. -- Janine Graves > -- > To respond to this >>>> post, please click the following link: > > < > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please >>>> click the following link: < >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957> >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To respond to this post, please click the following link: >>>> >>>> < >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667 >>>> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 04:43:16 PM
there are still some files showing zero bytes in Activity log..Shall wait
till those files update for testing agian...
On Wed, Apr 4, 2012 at 3:38 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Go into the Studio application, right click on the app name in the
> Navigator window, go to Properties > Call Studio > General Settings. Change
> the SessionTimeout to 3 - then it'll log after 3 minutes if the license 'is
> hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM, Cisco
> Developer Community Forums wrote: Phani Venigalla has created a new message
> in the forum "CVP - All Versions":
> -------------------------------------------------------------- Its keep on
> sending in error log VoiceXML Session timeout occurred at element Subdialog
> Invoke_01: A session has timed out after 30 minutes. This is most likely
> caused by a start of call class or action element at the top of the
> callflow not completing before the voice browser's fetch timeout occurred.
> To resolve it ensure this class executes in a timely manner or run it in
> the background. Session timeouts may also occur under high load or if there
> are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at
> 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed
> audio file insted of TTS it played but after sometime i tried to > excute
> then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani
> Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test"
> in return value. >> >> I am not understanding why its getting so longer to
> show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla
> < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog invoke
> i used audio element saying " Please select >>> from following".. then in
> subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1) and
> vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at
> 1:51 PM, Cisco Developer Community Forums < >>>
> cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created a
> new message in the forum "CVP - All >>>> Versions": >>>> >>>>
> -------------------------------------------------------------- >>>> With my
> code, you don't hear the TTS speaking from the test.vxml code? >>>> It
> works on my CVP8 system. What version of Studio and VXmlServer do you >>>>
> have?Back in CVP 7, you needed an Audio element to play to caller (say >>>>
> hello or something) before using a Subdialog Invoke element. On 4/4/2012
> >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
> >>>> created a new message in the forum "CVP - All Versions": >>>>
> -------------------------------------------------------------- I am using
> >>>> your code only...I did what ever you suggeested in the previous >>>>
> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community >>>>
> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>>
> created a new message in the forum "CVP - All Versions": > > >>>>
> -------------------------------------------------------------- > Why don't
> >>>> you just try replacing your menu with my code below. Perhaps the >
> gateway >>>> doesn't like a menu with 1 option. Also you need a return
> statement > or >>>> your license will be hung on VxmlServer for 30 minutes.
> When I omit the > >>>> return statement, my subdialog invoke works, but I
> do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer
> Community Forums wrote: Phani > >>>> Venigalla has created a new message in
> the forum "CVP - All Versions": > >>>>
> -------------------------------------------------------------- I follow the
> >>>> > same and gave Subdialog URI as >>>>
> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>>
> from Internet explorer the vxml file is getting > shown. I tried with >>>>
> LoacalApplication : True and False. Call gets dropped > at the Subdialog
> >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012
> at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>>
> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
> >>>> > message in the forum "CVP - All Versions": > > > >>>>
> -------------------------------------------------------------- > I used the
> >>>> > vxml code below and put the code into a file > > >>>>
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
> >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
> >>>> left > Parameter and Return Value empty) > > This all worked just
> fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0">
> > <form> > >>>> <field > name="test" type="digits"> > <property
> name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some
> digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> >
> <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To
> respond to this post, please click the > >>>> following link: > > < > >
> >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
> >>>> > > > or simply reply to this email. -- To respond to this post,
> please > >>>> click the following link: < > >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
> >>>> > or simply reply to this email. -- Janine Graves > -- > To respond to
> this >>>> post, please click the following link: > > < > >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933>
> > > > or simply reply to this email. -- To respond to this post, please
> >>>> click the following link: < >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
> >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To
> respond to this post, please click the following link: >>>> >>>> < >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667>>>> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To
> respond to this post, please click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406907
> >
>
> or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 04-04-2012 04:47:16 PM
What should we do if we don't want to hung the lincese...Because the
application works sometimes sometimes not.
On Wed, Apr 4, 2012 at 3:43 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> there are still some files showing zero bytes in Activity log..Shall wait
> till those files update for testing agian...
>
> On Wed, Apr 4, 2012 at 3:38 PM, Cisco Developer Community Forums <
>
> cdicuser@developer.cisco.com> wrote:
>
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Go into the Studio application, right click on the app name in the
> > Navigator window, go to Properties > Call Studio > General Settings.
> Change
> > the SessionTimeout to 3 - then it'll log after 3 minutes if the license
> 'is
> > hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM,
> Cisco
>
> > Developer Community Forums wrote: Phani Venigalla has created a new
> message
> > in the forum "CVP - All Versions":
> > -------------------------------------------------------------- Its keep
> on
>
> > sending in error log VoiceXML Session timeout occurred at element
> Subdialog
> > Invoke_01: A session has timed out after 30 minutes. This is most likely
> > caused by a start of call class or action element at the top of the
> > callflow not completing before the voice browser's fetch timeout
> occurred.
> > To resolve it ensure this class executes in a timely manner or run it in
> > the background. Session timeouts may also occur under high load or if
> there
> > are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at
> > 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed
> > audio file insted of TTS it played but after sometime i tried to > excute
> > then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani
> > Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test"
> > in return value. >> >> I am not understanding why its getting so longer
> to
> > show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani
> Venigalla
> > < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog
> invoke
> > i used audio element saying " Please select >>> from following".. then in
> > subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1)
> and
> > vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at
> > 1:51 PM, Cisco Developer Community Forums < >>>
> > cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created
> a
> > new message in the forum "CVP - All >>>> Versions": >>>> >>>>
> > -------------------------------------------------------------- >>>> With
> my
> > code, you don't hear the TTS speaking from the test.vxml code? >>>> It
> > works on my CVP8 system. What version of Studio and VXmlServer do you
> >>>>
> > have?Back in CVP 7, you needed an Audio element to play to caller (say
> >>>>
> > hello or something) before using a Subdialog Invoke element. On 4/4/2012
> > >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla
> has
> > >>>> created a new message in the forum "CVP - All Versions": >>>>
> > -------------------------------------------------------------- I am using
> > >>>> your code only...I did what ever you suggeested in the previous >>>>
> > discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
> >>>>
> > Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>>
> > created a new message in the forum "CVP - All Versions": > > >>>>
> > -------------------------------------------------------------- > Why
> don't
> > >>>> you just try replacing your menu with my code below. Perhaps the >
> > gateway >>>> doesn't like a menu with 1 option. Also you need a return
> > statement > or >>>> your license will be hung on VxmlServer for 30
> minutes.
> > When I omit the > >>>> return statement, my subdialog invoke works, but I
> > do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer
> > Community Forums wrote: Phani > >>>> Venigalla has created a new message
> in
> > the forum "CVP - All Versions": > >>>>
> > -------------------------------------------------------------- I follow
> the
> > >>>> > same and gave Subdialog URI as >>>>
> > http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>>
> > from Internet explorer the vxml file is getting > shown. I tried with
> >>>>
> > LoacalApplication : True and False. Call gets dropped > at the Subdialog
> > >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012
> > at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>>
> > cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
> > >>>> > message in the forum "CVP - All Versions": > > > >>>>
> > -------------------------------------------------------------- > I used
> the
> > >>>> > vxml code below and put the code into a file > > >>>>
> > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address
> 10.1.78.72) >
> > >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> > >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
> > >>>> left > Parameter and Return Value empty) > > This all worked just
> > fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml
> version="2.0">
> > > <form> > >>>> <field > name="test" type="digits"> > <property
> > name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some
> > digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> >
> > <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To
> > respond to this post, please click the > >>>> following link: > > < > >
> > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548
> >
> > >>>> > > > or simply reply to this email. -- To respond to this post,
> > please > >>>> click the following link: < > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589
> >
> > >>>> > or simply reply to this email. -- Janine Graves > -- > To respond
> to
> > this >>>> post, please click the following link: > > < > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933
> >
> > > > > or simply reply to this email. -- To respond to this post, please
> > >>>> click the following link: < >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957
> >
> > >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To
> > respond to this post, please click the following link: >>>> >>>> < >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667>>>>
> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To
> > respond to this post, please click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872
> >
> > or simply reply to this email. -- Janine Graves
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406907
>
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406915>
>
>
>
> or simply reply to this email.
>
Subject: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 04-04-2012 07:36:16 PM
I am using Gmail and just publishing in Cisco forums.
On Wed, Apr 4, 2012 at 6:33 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Hey Phani Venigalla,
>
> What sort of email client are you using?
>
> Your posts to the forum through your email client come to me as just one
> line – no line breaks, no paragraphs etc. Very hard to read. Can you
> rectify this please?
>
> Regards,
> Geoff
> --------------------------------------------------------------------
> Geoff Thompson Unified Contact Center Practice
> Email: geoff@hp.com HP Technology Consulting
> Phone: +1.408.447.4297 Hewlett-Packard Company
> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> ____________________________________________________________________
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405517
> >
>
> or simply reply to this email.
Subject: RE: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) -
Replied by: Phani Venigalla on 04-04-2012 07:41:31 PM
This is my issue with subdialoginvoke
I could able to execute once subdialoginvoke element but later its keep on giving this erroe
10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,Subdialog Invoke_01,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,,end,how,app_session_complete
Let me know whats wrong with it
Thanks,
Phani
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 04-04-2012 07:43:16 PM
>> I am using Gmail and just publishing in Cisco forums.
That one came out well.
Please don’t reply quoting the original letter. Copy what you need from the original and paste it in. These things are very hard to follow when originals are quoted in entirety.
Regards,
Geoff
Subject: RE: Com.audium cannot be resolved
Replied by: GEOFFREY THOMPSON on 04-04-2012 07:57:36 PM
We need to keep these post a lot shorter. It's looking like spam.
Please don't just press "Reply" if you are feeding the forum from your email client. That will almost certainly include the complete email that you are responding to - and possibly much more. Just copy and quote what you need and reply to that.
If you come onto the forum, try "Quick Reply" rather than "Reply with Quote".
Regards,
Geoff
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 08:16:25 PM
Why don't you just try replacing your menu with my code below. Perhaps the gateway doesn't like a menu with 1 option. Also you need a return statement or your license will be hung on VxmlServer for 30 minutes. When I omit the return statement, my subdialog invoke works, but I do get an error in the log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I follow the same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxml I tested the by accessing from Internet explorer the vxml file is getting shown. I tried with LoacalApplication : True and False. Call gets dropped at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > I used the vxml code below and put the code into a file > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > In the Subdialog invoke element I configured > SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left Parameter and Return Value empty) > > This all worked just fine. > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field name="test" type="digits"> > <property name="inputmodes" value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > you entered <value expr="test"/> > <return/> > </filled> > </field> > </form> > </vxml> > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 04-04-2012 08:44:52 PM
Even now i got your message twice.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 04-04-2012 08:48:49 PM
Now the log shown as below
GlobalErrorLogger
04/04/2012 19:36:12.702, SERVER ERROR: There has been an error with the http session: a request was made due to an event caught in the root document that refers to a session that has already ended. URI: /CVP/Server
Activity Log
Flowsheet,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
Please let me know whats wrong.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 04-04-2012 10:16:02 PM
Can someoone help me with this Issue, I was strcuk up here.
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 05-04-2012 07:10:16 AM
Hi Paul,
I am using vxml invoke element to execute static vxml file. It worked once.
Later its not working anymore I sent logs in my previous posts...
Please let me know,
Thanks,
Phani...
On 04-Apr-2012 11:00 AM, "Phani Venigalla" <phani.venigalla@gmail.com>
wrote:
> I think VoiceXML insert will not work for me.
>
> Please let me know how to use Subdialog Invoke
>
> I just need to excute somefile.vxml.
>
> Thanks,
> Phani.
>
>
> On Wed, Apr 4, 2012 at 10:50 AM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> Paul Tindall has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> The notes I have state that the audium_* variables have to be present and
>> omitting them isn't something I've ever bothered testing. The
>> audium_exit_state variable is the only one you need to pay particular
>> attention to with regard to the element settings. Any value you return in
>> audium_exit_state must have a matching exit state defined in the VoiceXML
>> Insert element settings.
>>
>> Paul
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402249
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 11:18:03 AM
Hi All,
I am sorry to bohter you guys,Because of very tight timelines i had approache you guys for everything.
But i strcuked up at this point. If i get moved from this point i am done.
As you said in previous post i am not using my vxml code. I am using your code which you sent yester day.
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<audio src="http://10.9.13.79:7000/CVP/Test_Agent4_1.wav"></audio>
<filled>
you entered <value expr="result/>
<return/>
</filled>
</field>
</form>
</vxml>
I even configured result in return value and after subdialog invoke element i ended up with cvp_subdialog return.
Still getting same issue.
Thanks,
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 12:26:27 PM
Hi,
I am not finding any solution for this please help me out in this regard.
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 12:59:51 PM
I tried debugging by giving this command at CLI
debug voip app vxml error
it says vxml software & call error debugging are on
when i am callling in to application i am not getting any debug info on console.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 05-04-2012 01:11:49 PM
Have you issued the command “terminal monitor” ?
Regards,
Geoff
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 01:31:51 PM
Yes i issued i could see other applications running on when i issue terminal monitor
How could we see specific application
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 05-04-2012 01:54:49 PM
Hi Janine,
This is the code you have sent me
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<prompt>Enter some digits</prompt>
<filled>
you entered <value expr="test"/>
<return/>
</filled>
</field>
</form>
</vxml>
I just replace audio tag instead on prompt tag because we dont have TTS
installed.
It worked sometime but after nothing
Thnaks,
Phani.
On Thu, Apr 5, 2012 at 12:41 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Phani,
>
> You've modified the vxml code that I posted (which worked) and created
> code that is no longer valid VXML code. You will find that if you use a
> valid VXML subdialog, then the SubdialogInvoke will work correctly.
>
> I have to question why you feel qualified to be executing this. You don't
> know VoiceXML, or how to use Studio, or how to use the Cisco VoiceXML
> Gateway. I don't think that you should be trying to get this to work in a
> production environment until you have been properly trained.
>
>
> Janine
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5413203>
>
>
>
> or simply reply to this email.
>
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 02:00:47 PM
Hi Geoff
This is the log i could see in the term mon on vxml gateway
This is the log i am getting in vxml gateway
028629: Apr 5 12:44:59 CST: //2844111//AFW_:/vapp_digit_collect: numPatterns 1, minlength 0, maxlength 0, timeout 5000, interDigitTimeout 10000 hotword 0
028630: Apr 5 12:45:01 CST: //2844083//AFW_:/vapp_bgpost: url=http://10.9.13.79:7000/CVP/Server mime_type=application/x-www-form-urlencoded len=15 iov_base=audium_vxmlLog=
028631: Apr 5 12:45:01 CST: //2844083//AFW_:/vapp_bgload: url=http://10.9.13.79:7000/CVP/Test.vxml&callid=3143643121&calling_application_call_id=10.9.13.79.1333647881104.612&calling_application_order=0&calling_application_cookie=E4C7AC417DECDEE27BD5A519C3097ACB&local_application=true&sourceApplication=MyMercy_D...
028632: Apr 5 12:45:01 CST: //2844083//HTTPC:/httpc_callback: URL:http://10.9.13.79:7000/CVP/Test.vxml&callid=3143643121&calling_application_call_id=10.9.13.79.1333647881104.612&calling_application_order=0&calling_application_cookie=E4C7AC417DECDEE27BD5A519C3097ACB&local_application=true&sourceApplication=MyMercy_D..., Server rsp_code(404), fd(0)
028633: Apr 5 12:45:01 CST: //2844083/03B6F9800007/VXML:/vxml_bgload_post_done:
CALL_ERROR; http://10.9.13.79:7000/CVP/Server
Loading fail with url (http://10.9.13.79:7000/CVP/Test.vxml&callid=3143643121&calling_application_call_id=10.9.13.79.1333647881104.612&calling_application_order=0&calling_application_cookie=E4C7AC417DECDEE27BD5A519C3097ACB&local_application=true&sourceApplication=MyMercy_D...)
028634: Apr 5 12:45:01 CST: //2844083/03B6F9800007/VXML:/vxml_error_badfetch_event:
CALL_ERROR; *** error.badfetch.http.404 event is thrown
028635: Apr 5 12:45:01 CST: //2844083//AFW_:/vapp_bgpost: url=http://10.9.13.79:7000/CVP/Server mime_type=application/x-www-form-urlencoded len=71
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Hemal Mehta on 05-04-2012 02:20:49 PM
This is enough. A request too all. Anybody wanting to correspond here on this particular thread do so directly using their personal email with originator of thread. Any conversation using this thread, is a mockery of this forum as it ends up generating tonnes of meaningless emails and flooding our email boxes.
This post has generated 116 emails which has been sent to hundreds of folks and its all noise and no value. It is severely undermining the value of this forum. I would have no choice but to report this to the administrator of the forum and have this thread flagged for deletion.
Hemal
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Thursday, April 05, 2012 12:42 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Janine Graves has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Phani,
You've modified the vxml code that I posted (which worked) and created code that is no longer valid VXML code. You will find that if you use a valid VXML subdialog, then the SubdialogInvoke will work correctly.
I have to question why you feel qualified to be executing this. You don't know VoiceXML, or how to use Studio, or how to use the Cisco VoiceXML Gateway. I don't think that you should be trying to get this to work in a production environment until you have been properly trained.
Janine
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5413203>
or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 03:01:36 PM
This error i am getting whe i try to access
this static vxml file
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<audio src="http://10.9.13.79:7000/CVP/Test_Agent4_1.wav"></audio>
<filled>
you entered <value expr="test"/>
<return/>
</filled>
</field>
</form>
</vxml>
60805: Apr 5 13:54:17 CST: //0/B475C6800007/VXML:/vxml_parse:
CALL_ERROR; http://10.9.13.79:7000/CVP/Test.vxml
at line 6: not well-formed (invalid token)
060806: Apr 5 13:54:17 CST: //2853058//AFW_:/vapp_bgload: url=http://10.9.13.79:7000/CVP/Test.vxml
060807: Apr 5 13:54:17 CST: //0/B475C6800007/VXML:/vxml_parse:
CALL_ERROR; http://10.9.13.79:7000/CVP/Test.vxml
at line 6: not well-formed (invalid token)
060808: Apr 5 13:54:17 CST: //2853058/B475C6800007/VXML:/vxml_bgload_post_done:
CALL_ERROR; http://10.9.13.79:7000/CVP/Server
Loading fail with url (http://10.9.13.79:7000/CVP/Test.vxml)
060809: Apr 5 13:54:17 CST: //2853058//AFW_:/vapp_bgpost: url=http://10.9.13.79:7000/CVP/Server mime_type=application/x-www-form-urlencoded len=62 iov_base=audium_type=error.badfetch&audium_action=error&audium_vxmlLog=
060810: Apr 5 13:54:17 CST: //2853058//AFW_:/vapp_media_play: prompt=http://10.9.13.79:7000/CVP/audio/error.wav:
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 03:42:48 PM
Phani,
If you are going to expect help from this forum, you will have to educate yourself (or team up with someon) who knows more about the CVP and VoiceXML Gateway environment.
1. The reason your license is hanging, is because you're code is causing an error on the gateway, which is dropping your call, but not reporting it back to VXML
Server. So VXML Server doesn't know that the call is over. The timeout for this, as mentioned earlier, is configured under Project Properties > Call Studio>General>Session Timeout.
The 'hung' license is an unresolved recurring issue (that I hope Cisco addresses one day) that occurs if there's a problem invoking or returning from a subdialog application.
The activity log message 'session timeout occurred' - just means that there was an issue invoking or returning from a subdialog application.
Yesterday, your first call worked. But then you tried to call in again, but couldn't. We are not mind readers, but I assume that you have only 1 license and it was 'hung' from the first phone call. So, you couldn't call in a 2nd time.
2. I tested your original posed VXML code (the menu you show below) by using Subdialog Invoke, and received an error.
I turned on debugging on the gateway when I received an error.
The debugging commands I used were 'term mon' ; 'debug http client error' ; 'debug voip app error' ;and finally the one that showed me the vxml bug in your code was 'debug voip app vxml error'
.
This showed me that the gateway doesn't like the attribure dtmf="1" in the <choice> tag. If I remove that, then the menu code works fine. If the caller presses a key, then it takes me to the next application. Etc.
So you MUST learn how to enable and work with debugging on the gateway.
3. In Studio, when you use Subdialog Invoke, your VXML code is expected to behave as a VXML SUBDIALOG! And therefore, it MUST end eventually with a <return/> statement to return control back to VxmlServer. OTHERWISE, Your license will be HUNG.
OTHERWISE, Your license will be HUNG.
4. In the Studio application, you must end with a HANGUP or CVP SUbdialog Return element, to free the vxml server license.
Please find some training and reading some reference manuals. The subscribers to this forum are becoming very impatient with your lack of knowledge, lack of trying to read the reference manuals, and insistent posting without adding any new information.
Respectfully, Janine
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 05-04-2012 10:31:42 AM
Phani,
If you are going to expect help from this forum, you will have to educate yourself (or team up with someon) who knows more about the CVP and VoiceXML Gateway environment.
1. The reason your license is hanging, is because you're code is causing an error on the gateway, which is dropping your call, but not reporting it back to VXML
Server. So VXML Server doesn't know that the call is over. The timeout for this, as mentioned earlier, is configured under Project Properties > Call Studio>General>Session Timeout.
The 'hung' license is an unresolved recurring issue (that I hope Cisco addresses one day) that occurs if there's a problem invoking or returning from a subdialog application.
The activity log message 'session timeout occurred' - just means that there was an issue invoking or returning from a subdialog application.
Yesterday, your first call worked. But then you tried to call in again, but couldn't. We are not mind readers, but I assume that you have only 1 license and it was 'hung' from the first phone call. So, you couldn't call in a 2nd time.
2. I tested your original posed VXML code (the menu you show below) by using Subdialog Invoke, and received an error.
I turned on debugging on the gateway when I received an error.
The debugging commands I used were 'term mon' ; 'debug http client error' ; 'debug voip app error' ;and finally the one that showed me the vxml bug in your code was 'debug voip app vxml error'
.
This showed me that the gateway doesn't like the attribure dtmf="1" in the <choice> tag. If I remove that, then the menu code works fine. If the caller presses a key, then it takes me to the next application. Etc.
So you MUST learn how to enable and work with debugging on the gateway.
3. In Studio, when you use Subdialog Invoke, your VXML code is expected to behave as a VXML SUBDIALOG! And therefore, it MUST end eventually with a <return/> statement to return control back to VxmlServer. OTHERWISE, Your license will be HUNG.
OTHERWISE, Your license will be HUNG.
4. In the Studio application, you must end with a HANGUP or CVP SUbdialog Return element, to free the vxml server license.
Please find some training and reading some reference manuals. The subscribers to this forum are becoming very impatient with your lack of knowledge, lack of trying to read the reference manuals, and insistent posting without adding any new information.
Respectfully, Janine
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: GEOFFREY THOMPSON on 05-04-2012 10:37:49 AM
Excellent post, Janine.
Regards,
Geoff
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Hemal Mehta on 05-04-2012 11:10:49 AM
Thank you Janine. For everybody who posts or seeks help here, this forum is not intended for someone to get their entire project done be spoon fed by the experts here. Do your homework and put the necessary effort yourself first and if you get stuck ask. Do not flood everybody's email boxes with same emails and asking what needs to be done at each step.
This must stop to maintain the quality in this forum.
Regards,
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Thursday, April 05, 2012 9:31 AM
To: cdicuser@developer.cisco.com
Subject: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Janine Graves has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Phani,
If you are going to expect help from this forum, you will have to educate yourself (or team up with someon) who knows more about the CVP and VoiceXML Gateway environment.
1. The reason your license is hanging, is because you're code is causing an error on the gateway, which is dropping your call, but not reporting it back to VXML
Server. So VXML Server doesn't know that the call is over. The timeout for this, as mentioned earlier, is configured under Project Properties > Call Studio>General>Session Timeout.
The 'hung' license is an unresolved recurring issue (that I hope Cisco addresses one day) that occurs if there's a problem invoking or returning from a subdialog application.
The activity log message 'session timeout occurred' - just means that there was an issue invoking or returning from a subdialog application.
Yesterday, your first call worked. But then you tried to call in again, but couldn't. We are not mind readers, but I assume that you have only 1 license and it was 'hung' from the first phone call. So, you couldn't call in a 2nd time.
2. I tested your original posed VXML code (the menu you show below) by using Subdialog Invoke, and received an error.
I turned on debugging on the gateway when I received an error.
The debugging commands I used were 'term mon' ; 'debug http client error' ; 'debug voip app error' ;and finally the one that showed me the vxml bug in your code was 'debug voip app vxml error'
.
This showed me that the gateway doesn't like the attribure dtmf="1" in the <choice> tag. If I remove that, then the menu code works fine. If the caller presses a key, then it takes me to the next application. Etc.
So you MUST learn how to enable and work with debugging on the gateway.
3. In Studio, when you use Subdialog Invoke, your VXML code is expected to behave as a VXML SUBDIALOG! And therefore, it MUST end eventually with a <return/> statement to return control back to VxmlServer. OTHERWISE, Your license will be HUNG.
OTHERWISE, Your license will be HUNG.
4. In the Studio application, you must end with a HANGUP or CVP SUbdialog Return element, to free the vxml server license.
Please find some training and reading some reference manuals. The subscribers to this forum are becoming very impatient with your lack of knowledge, lack of trying to read the reference manuals, and insistent posting without adding any new information.
Respectfully, Janine
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5412735>
or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 05-04-2012 01:41:43 PM
Phani,
You've modified the vxml code that I posted (which worked) and created code that is no longer valid VXML code. You will find that if you use a valid VXML subdialog, then the SubdialogInvoke will work correctly.
I have to question why you feel qualified to be executing this. You don't know VoiceXML, or how to use Studio, or how to use the Cisco VoiceXML Gateway. I don't think that you should be trying to get this to work in a production environment until you have been properly trained.
Janine
Subject: RE: Com.audium cannot be resolved
Replied by: Hemal Mehta on 05-04-2012 02:13:01 PM
Hi,
I am working on Cisco unified call studio 8.0, I was trying to write a custom java class in the callstudio eclipse.
I am getting errors like Com.audium cannot be resolved in all import methods.
Please reply for the soultion asap.
Thanks,
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 12:30:58 PM
You can't just use a variable containing the VoiceXML. The source must resolve to something/somewhere that the VoiceXML gateway can access via the URI in a <subdialog> element. By default, if the source VoiceXML document is set in the element as "my_vxml_doc.vxml" it will physically need to exist as ... Tomcat/webapps/CVP/my_vxml_doc.vxml.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 09-04-2012 12:40:51 PM
Hi,
Can we request a Post URL in Subdialoginvoke
I am sending url post as http://xxxxxxxxxxx
Parameters in Parameter field. phone={Data.Session.callid}.pin={Data.Element.pin.value}
It shown in log it stll cosidering as a get request but not post.
Phani,
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 02:06:38 PM
You can't just use a variable containing the VoiceXML. The source must resolve to something/somewhere that the VoiceXML gateway can access via the URI in a <subdialog> element. By default, if the source VoiceXML document is set in the element as "my_vxml_doc.vxml" it will physically need to exist as ... Tomcat/webapps/CVP/my_vxml_doc.vxml.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 04:46:04 PM
When i try to call URI with parameters from subdialoginvoke the application gets hang and vxml server reloads.
How would we send the post or get url with parameters in subdialoginvoke.
I am sending as below
http://xxxxxxxxxxxxx/get_flow?phone={Data.Session.callid}&pin={Data.Element.inPin.value}
please let me know
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 09-04-2012 09:47:28 PM
In the subdialog invoke element, you can pass parameters as "VoiceXML Parameters" using the +Parameter setting and specifying one name=value pair per line. You can then access this in the invoked subdialog as you would any VoiceXML Parameter.
If you want to pass data in the URI string, then you are doing it correctly. It'll be passed to your get_flow code as URL parameters.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 09:56:49 PM
The URI i am trying to request contains vxml content, but not as a vxml file. When i give the same URI in webbrowser it shows as VoiceXML format.
If i pass the parameters in URI string VXML gateway gets hang and became silent.
When i add parameters in Parameter field one in each line then the log shown parameters are not passing through..
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 09-04-2012 10:13:55 PM
Your variable(s) must be empty then. If you pass variables that actually have a value, and you pass them as name=value pairs, whether in the URI string or in the VoiceXML Parameter fields, then it all works just fine on my system. If it's not working in your case, then you need to put some sort of sniffer on your line or run some debug commands on the gateway and see what you are actually sending over in the URI string.
I suggest you just hard code some values http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If it doesn't work, then there's probably an issue with the gateway invoking your 'get_flow' code. You'll have to contact Cisco TAC and find out what's wrong with your system. This seems like a standard debugging step. I would hope that you've already tried this.
Janine
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 10:36:57 PM
I suggest you just hard code some values http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If it doesn't work, then there's probably an issue with the gateway invoking your 'get_flow' code. You'll have to contact Cisco TAC and find out what's wrong with your system. This seems like a standard debugging step. I would hope that you've already tried this.
This i have already tried.. when i give the uri like this http://xxxxxxxxx/get_flow?phone=22222&pin=33333 or phone={Data.Session.callid}&pin={Data.Element.inPin.value} like this vxml gateway just hangs.
If i give only URI and parameters in parameters field, Its not sendig parameters...
Can't we execute dynamic vxml content, what i mean as i said my URL sending vxml response.
Is it necessary there should be a static vxml file in some location to initiate execution of subdialog invoke.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 10-04-2012 09:46:26 AM
Why are posting same thread again and again ? What is the point man ? Flooding other’s email boxes with duplicate threads does not help anyone.
Hemal
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Monday, April 09, 2012 9:37 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
I suggest you just hard code some values http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If it doesn't work, then there's probably an issue with the gateway invoking your 'get_flow' code. You'll have to contact Cisco TAC and find out what's wrong with your system. This seems like a standard debugging step. I would hope that you've already tried this.
This i have already tried.. when i give the uri like this http://xxxxxxxxx/get_flow?phone=22222&pin=33333 or phone={Data.Session.callid}&pin={Data.Element.inPin.value} like this vxml gateway just hangs.
If i give only URI and parameters in parameters field, Its not sendig parameters...
Can't we execute dynamic vxml content, what i mean as i said my URL sending vxml response.
Is it necessary there should be a static vxml file in some location to initiate execution of subdialog invoke.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5428034>
or simply reply to this email.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 10-04-2012 09:52:26 AM
I am posting for reference..sorry will not repeat...
On 10-Apr-2012 8:47 AM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Why are posting same thread again and again ? What is the point man ?
> Flooding other’s email boxes with duplicate threads does not help anyone.
> Hemal
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Monday, April 09, 2012 9:37 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer
> Voice Portal (CVP) - C
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I suggest you just hard code some values
> http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If
> it doesn't work, then there's probably an issue with the gateway invoking
> your 'get_flow' code. You'll have to contact Cisco TAC and find out what's
> wrong with your system. This seems like a standard debugging step. I would
> hope that you've already tried this.
>
> This i have already tried.. when i give the uri like this
> http://xxxxxxxxx/get_flow?phone=22222&pin=33333 or
> phone={Data.Session.callid}&pin={Data.Element.inPin.value} like this vxml
> gateway just hangs.
>
> If i give only URI and parameters in parameters field, Its not sendig
> parameters...
>
> Can't we execute dynamic vxml content, what i mean as i said my URL
> sending vxml response.
>
> Is it necessary there should be a static vxml file in some location to
> initiate execution of subdialog invoke.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5428034
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5429679
> >
>
> or simply reply to this email.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 10-04-2012 01:11:26 PM
Hi Hemal,
Can you please let me know why the vxml gateway hangs when i try to send
parameters In URI.
Thanks,
Phani.
On Tue, Apr 10, 2012 at 8:51 AM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I am posting for reference..sorry will not repeat...
> On 10-Apr-2012 8:47 AM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
>> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> Why are posting same thread again and again ? What is the point man ?
>> Flooding other’s email boxes with duplicate threads does not help anyone.
>> Hemal
>>
>> From: Cisco Developer Community Forums [mailto:
>> cdicuser@developer.cisco.com]
>> Sent: Monday, April 09, 2012 9:37 PM
>> To: cdicuser@developer.cisco.com
>> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
>> - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer
>> Voice Portal (CVP) - C
>>
>> Phani Venigalla has created a new message in the forum "CVP - All
>> Versions":
>>
>> --------------------------------------------------------------
>> I suggest you just hard code some values
>> http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If
>> it doesn't work, then there's probably an issue with the gateway invoking
>> your 'get_flow' code. You'll have to contact Cisco TAC and find out what's
>> wrong with your system. This seems like a standard debugging step. I would
>> hope that you've already tried this.
>>
>> This i have already tried.. when i give the uri like this
>> http://xxxxxxxxx/get_flow?phone=22222&pin=33333 or
>> phone={Data.Session.callid}&pin={Data.Element.inPin.value} like this vxml
>> gateway just hangs.
>>
>> If i give only URI and parameters in parameters field, Its not sendig
>> parameters...
>>
>> Can't we execute dynamic vxml content, what i mean as i said my URL
>> sending vxml response.
>>
>> Is it necessary there should be a static vxml file in some location to
>> initiate execution of subdialog invoke.
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5428034
>> >
>>
>> or simply reply to this email.
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5429679
>> >
>>
>> or simply reply to this email.
>
>
Subject: RE: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 10-04-2012 09:35:46 PM
when i try to access this URI from subdialog invoke
http://xxxxxx/get_flow?phone={Data.Session.callid}&pin={Data.Element.inPin.value}
I could see in vxm gateway log to try to hit the URI and The router gets reloaded and Gateway hangs.
Please let me know what could be the reason .If something wrong in vxml code it should throw the badfetch insted its reloading router.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 11-04-2012 10:36:26 AM
Hi Hemal,
Which version of IOS gateway supports VoiceXML2.0 and VoiceXML2.1, Because
when i try to invoke vxml by passiing parameters,the router gets reloading.
Phani.
On Wed, Apr 4, 2012 at 1:16 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Run show version on vxml gateway.
>
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Wednesday, April 04, 2012 1:06 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Hi Hemal,
>
> Where do i check that what versions of IOS gateway i am using.
>
> Phani.
>
> On Wed, Apr 4, 2012 at 12:56 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > The vxml syntax is fine and the vxml browser should not throw any errors.
> > What version of IOS gateway do you have ?
> >
> >
> > From: Cisco Developer Community Forums [mailto:
> > cdicuser@developer.cisco.com]
> > Sent: Wednesday, April 04, 2012 12:40 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Paul Tindall in Customer Voice
> > Portal (CVP) - CVP - Al
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > So
> >
> > If the HelloWorld.vxml contains below format will it works
> >
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> >
> > <vxml version="2.1">
> >
> > <menu dtmf="true">
> >
> > <property name="inputmodes" value="dtmf"></property>
> >
> > <prompt>Welcome to Track My Health.</prompt>
> >
> > <prompt>Please choose a flow sheet.</prompt>
> >
> > <prompt>For Heart Failure - Manual Entry, please press
> > 1</prompt>
> >
> > </menu>
> >
> > </vxml>
> >
> >
> >
> > Let me know
> >
> > Thanks,
> >
> > Phani.
> >
> >
> > On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Paul Tindall has created a new message in the forum "CVP - All
> Versions":
> > >
> > > --------------------------------------------------------------
> > > Set the element subdialog URI to the absolute location
> > > http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> > > whatever your specific example is. Just make sure
> > w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided
> it's a
> > valid VoiceXML
> > > subdialog, you don't have the same constraints on its format as you do
> > with
> > > VoiceXML Insert.
> > >
> > >
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796
> > >
> > >
> > >
> > >
> > > or simply reply to this email.
> > >
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406520
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404867
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406556
> >
>
> or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 11-04-2012 01:12:18 PM
Still not succeeded regariding the subdialoginvoke issue. Is there anything need to do at Gateway side to support VXML2.0 and 2.1.
Because its causing issue when i try to request with paramenters..
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 11-04-2012 02:08:30 PM
We are using Cisco 3900E ISR at gateway side and IOS version 15.1., I guess this shouldn't give any issue.
When trying to hit URL with Parameters in Subdialoginvoke to execute Dynamic VXML 2.1
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 13-04-2012 10:22:59 AM
Hi,
I have installed Nuance TTS vocalizer and Seechserver.
What parameters need to configure to intgrate with CVP. Both Nuance and CVP End.
Thanks,
Phani,
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 18-04-2012 12:22:54 PM
Hi,
i have custom action element to call webservice. I am able to capture response in dynamic vxml.
How do i execute this dynamic vxml from call studio.
When i try to call URL by using Subdialog invoke i am losing session between webserver and voicebroiwser.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 23-04-2012 09:12:19 PM
Hi Guys,
Try to call the Http Post url from subdialog invoke. But i could see the gateway logs subdialog invoke not sending parameters. I am getting 500 error.
Log below.
Gateway log
4578997: Apr 23 19:44:42 CST: //238741//HTTPC:/httpc_callback: URL:http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets, Server rsp_code(500), fd(0)
4578998: Apr 23 19:44:42 CST: //238741/9AD4DB80000B/VXML:/vxml_bgload_post_done:
CALL_ERROR; http://10.9.13.79:7000/CVP/Server
Loading fail with url (http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets)
4578999: Apr 23 19:44:42 CST: //238741/9AD4DB80000B/VXML:/vxml_error_badfetch_event:
CALL_ERROR; *** error.badfetch.http.500 event is thrown
when i try to do GET request i could able to the vxm output and run the application.
Any suggetions appreciated
Thanks,
Phani.
Created by: Phani Venigalla on 06-03-2012 09:44:32 PM
Hi,
I am working on Cisco unified call studio 8.0, I was trying to write a custom java class in the callstudio eclipse.
I am getting errors like Com.audium cannot be resolved in all import methods.
Please reply for the soultion asap.
Thanks,
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 06-03-2012 09:52:45 PM
did you include framework.jar and servlet2.3.jar in the class path? On 3/6/2012 9:44 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Hi, Â I am working on Cisco unified call studio 8.0, I was trying to write a custom java class in the callstudio eclipse. I am getting errors like Com.audium cannot be resolved in all import methods. Â Please reply for the soultion asap. Â Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255393> or simply reply to this email. -- Janine Graves
Hi,
Can you please let me know what would be the CLASSPATH.
I am building Java file in callstudio eclipse and my workinf folder is "C:\Cisco\CallStudio\eclipse\workspace\MyMercy_Java"
Thanks,
Phani.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 06-03-2012 09:54:14 PM
I just love it when I see someone post “please reply with the solution ASAP”.
Please send money. ;-)
Regards,
Geoff
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 09:56:27 PM
Well I could see those jar files, C:\Cisco\CVP\VXMLServer\lib this folder
Please let me know where should i place this files..
Subject: RE: Com.audium cannot be resolved
Replied by: Janine Graves on 06-03-2012 10:02:25 PM
You have to create a java project in order to compile your java in eclipse.
Go to File > New > Java > Java Project, and enter a project name.
Then go to the Libraries tab and click 'Add External Jars' - and then
add the framework.jar and servlet2,3.jar (you can search for these 2
files, they are somewhere in the call studio/eclipse/plugins directory).
Then create a java file within the java project.
When you save the java file, it'll compile into a class file.
Then copy the compiled class file into your studio application, into the appname/deploy/java/application/classes directory.
Well I could see those jar files, C:\Cisco\CVP\VXMLServer\lib this folder
Please let me know where should i place this files..
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 10:18:20 PM
Thanks for the reply it resolves some method some are not
i have given these packages in java file.
import com.audium.server.voiceElement.ActionElementBase;
import com.audium.server.voiceElement.ElementInterface;
import com.audium.server.voiceElement.Setting;
import com.audium.server.voiceElement.ElementData;
import com.audium.server.voiceElement.ElementException;
import com.audium.server.session.ActionElementData;
And this is the function i have written
public void doAction(String name, ActionElementData data) throws AudiumException
{
StringBuffer response = new StringBuffer("");
String phonenumber = (String)actionData.getSessionData("mPhonevar");
try {
// Send the request
URL url = new URL("http://lnxvmwas03d.smrcy.com:8080/claritygateway/providers/");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter writer = new OutputStreamWriter(conn.getOutputStream());
//write parameters
writer.write(phonenumber);
writer.flush();
// Get the response
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
writer.close();
reader.close();
//Output the response
actionData.setSessionData("response", response.toString());
} catch (MalformedURLException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
}
But still it gives these errors below.
AudiumException cannot be resolved to a type
actionData cannot be resolved
Thanks,
Phani
Subject: RE: Com.audium cannot be resolved
Replied by: Janine Graves on 06-03-2012 10:35:23 PM
Why don't you start with something simpler and get it to work first.
public class MyAction extends ActionElementBase{
public void doAction(String name, ActionElementData data) throws AudiumException
{
String callid=data.getSessionData("callid");
data.addToLog("callid",callid);
|
}
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 10:37:41 PM
Hi,
I could able to resolve issues except one.
Unhandled exception type AudiumException
Please help why this error is giving at this statemet "data.setSessionData("response", response.toString());"
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 10:42:38 PM
Why don't you start with something simpler and get it to work first.
public class MyAction extends ActionElementBase{
public void doAction(String name, ActionElementData data) throws AudiumException
{
String callid=data.getSessionData("callid");
data.addToLog("callid",callid);
|
}
But AudiumException is giving error as cou;dnot resolve this type.
So i have given ElementException.
what need to be done if it should resolve AudiumException
Thanks
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 10:47:05 PM
Yes I did but still if can see my previous post you could find try/catch.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 11:00:43 PM
It only accepting ElementException not AudiumException.
what cases they use ...
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 06-03-2012 11:02:14 PM
import com.audium.server.AudiumException; On 3/6/2012 10:42 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Why don't you start with something simpler and get it to work first. public class MyAction extends ActionElementBase{ public void doAction(String name, ActionElementData data) throws AudiumException { String callid=data.getSessionData("callid"); data.addToLog("callid",callid); | } But AudiumException is giving error as cou;dnot resolve this type. So i have given ElementException.  what need to be done if it should resolve AudiumException  Thanks -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255490> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 06-03-2012 11:09:23 PM
Thanks it resolved thanks for the help.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Janine Graves on 06-03-2012 11:12:14 PM
My mistake, with an action element, use ElementException, not AudiumException. On 3/6/2012 11:02 PM, Cisco Developer Community Forums wrote: Janine Graves has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- import com.audium.server.AudiumException; On 3/6/2012 10:42 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Why don't you start with something simpler and get it to work first. public class MyAction extends ActionElementBase{ public void doAction(String name, ActionElementData data) throws AudiumException { String callid=data.getSessionData("callid"); data.addToLog("callid",callid); | } But AudiumException is giving error as cou;dnot resolve this type. So i have given ElementException.  what need to be done if it should resolve AudiumException  Thanks -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255490> or simply reply to this email. -- Janine Graves -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255526> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 06-03-2012 09:48:14 PM
did you include framework.jar and servlet2.3.jar in the class path? On 3/6/2012 9:44 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Hi, Â I am working on Cisco unified call studio 8.0, I was trying to write a custom java class in the callstudio eclipse. I am getting errors like Com.audium cannot be resolved in all import methods. Â Please reply for the soultion asap. Â Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255393> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 06-03-2012 10:43:14 PM
Just surround it with a try/catch. On 3/6/2012 10:37 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Hi, I could able to resolve issues except one. Unhandled exception type AudiumException Please help why this error is giving at this statemet "data.setSessionData("response", response.toString());" Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5255487> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 08-03-2012 08:19:11 PM
Hi,
I am usign CVP call Studio 8.0(1), I need to read the voiceXML output coming from http url response by using TTS engine.
What are the methods i need to follow , What are the steps to follw.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 03:57:39 PM
Hi,
I am using CVP Callstudio 8.0(1). I need to read Vxml output coming from URL.
What i have done so far , I wrote custom class file put it in action element i am getting some response from URL and storing in session variable.
How to check whether i am getting correct VXML output. Because i need to read this vxml output from Nuance TTS.
Please let me know where i can find the log to see the output coming out of url response.
Thanks,
Phani.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 02-04-2012 04:14:16 PM
It should be simple. Once you store that output in session variable, you can log it. It will write to the activity log. For example you could have a element api that writes to the log.
Hemal
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 2:58 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: RE: Com.audium cannot be resolved
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Hi,
I am using CVP Callstudio 8.0(1). I need to read Vxml output coming from URL.
What i have done so far , I wrote custom class file put it in action element i am getting some response from URL and storing in session variable.
How to check whether i am getting correct VXML output. Because i need to read this vxml output from Nuance TTS.
Please let me know where i can find the log to see the output coming out of url response.
Thanks,
Phani.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5393937>
or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 04:19:34 PM
Hi,
Can you send some example how to log it into activity log.
Thanks,
Phani.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 02-04-2012 04:31:16 PM
For example:
public class test extends ActionElementBase {
public void doAction(String arg, ActionElementData arg1){
arg1.addToLog(..., ...) //Pass what you need to log here...
}
}
rom: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 3:20 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: RE: Com.audium cannot be resolved
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Hi,
Can you send some example how to log it into activity log.
Thanks,
Phani.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5393999>
or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 04:51:13 PM
I hava function like the below where do we need to add the above statement in order to get the log shown in activity log.
I wanted to see the response strng value. which i am storing as session variable.
public void doAction(String name, ActionElementData data)
throws AudiumException {
// PUT YOUR CODE HERE.
StringBuffer response = new StringBuffer("");
String phone = (String) data.getSessionData("mPhonevar");
String parameters = "phone=" + phone;
try {
// Send the request
URL url = new URL("http://xxxxxxxxxxxxxx/validate_ivr_phone");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter writer = new OutputStreamWriter(conn.getOutputStream());
// write parameters
writer.write(parameters);
writer.flush();
// Get the response
BufferedReader reader = new BufferedReader(new InputStreamReader(
conn.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
writer.close();
reader.close();
// Output the response
data.setSessionData("response", response.toString());
data.addToLog();?
Thanks,
Phani.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 02-04-2012 05:01:17 PM
Yes, you can do that where you indicate, just enter data.addToLog("response",response.toString()); On 4/2/2012 4:51 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I hava function like the below where do we need to add the above statement in order to get the log shown in activity log. I wanted to see the response strng value. which i am storing as session variable. public void doAction(String name, ActionElementData data) throws AudiumException { // PUT YOUR CODE HERE. StringBuffer response = new StringBuffer(""); String phone = (String) data.getSessionData("mPhonevar"); String parameters = "phone=" + phone; try { // Send the request URL url = new URL("http://xxxxxxxxxxxxxx/validate_ivr_phone"); URLConnection conn = url.openConnection(); conn.setDoOutput(true); OutputStreamWriter writer = new OutputStreamWriter(conn.getOutputStream()); // write parameters writer.write(parameters); writer.flush(); // Get the response BufferedReader reader = new BufferedReader(new InputStreamReader( conn.getInputStream())); String line; while ((line = reader.readLine()) != null) { response.append(line); } writer.close(); reader.close(); // Output the response data.setSessionData("response", response.toString()); data.addToLog();? Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5394039> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Ryan Hilfers on 02-04-2012 05:06:15 PM
Hi,
Can you send some example how to log it into activity log.
Thanks,
Phani.
Phani,
Take a look at the programmer's guide.. http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/customer_voice_portal/cvp8_0/programming/guide/cvp_801_prog.pdf
You're asking some pretty basic questions which are all explained in this document. Take a read before asking for examples.
-Ryan H
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 05:27:50 PM
Thanks Geoff its working.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 05:31:01 PM
Hi jannie,
Thanks its working.
If the response object contains VXML output will TTS able to play?
Do we need to write any custom code to generate vxml output in XML format to read in CallStudio using TTS.
Please let me know.
Thanks,
Phani.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 02-04-2012 06:02:53 PM
data.addToLog(“some_text”, response.toString());
Regards,
Geoff
--------------------------------------------------------------------
Geoff Thompson Unified Contact Center Practice
Email: geoff@hp.com HP Technology Consulting
Phone: +1.408.447.4297 Hewlett-Packard Company
Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
____________________________________________________________________
If the response object contains VXML output will TTS able to play?
Do we need to write any custom code to generate vxml output in XML format to read in CallStudio using TTS.
Please let me know.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Janine Graves on 02-04-2012 06:41:38 PM
I assume you don't want to speak the entire VXML response, but just want to speak the text that's enclosed within some <prompt> or content of <audio> tags, is that right?
In this case, it'll be up to your java to strip off the remainder of the VXML and just store the text that you want to speak into a Session Variable (eg, textToSpeak) and then in Studio, use a TTS box and select to speak the contents of this variable {Data.Session.textToSpeak}
Actually, it will probably be faster to code this as a Dynamic Configuration for a Voice Element. That way you can get the VXML response, grab the textToSpeak from it, and configure this as the Audio all in one Java class. You could even omit the part about storing it as Session Data if you do it this way and don't need it stored in a variable for later. A Dynamic Config just configures the Settings and/or Audio for a Voice Element and then hands it to VxmlServer to convert this into VXML and send it to the gateway.
Is it possible for you to just modify the VXML you are receiving and pass it along to the VoiceXML gateway to execute? Give an example of the Vxml Response that you are getting back.
Janine
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 02-04-2012 05:04:16 PM
data.addToLog(“some_text”, response.toString());
Regards,
Geoff
--------------------------------------------------------------------
Geoff Thompson Unified Contact Center Practice
Email: geoff@hp.com HP Technology Consulting
Phone: +1.408.447.4297 Hewlett-Packard Company
Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
____________________________________________________________________
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 02-04-2012 08:53:16 PM
Here we don't need to create any Menu or form element , I only need to
execute vxml files in callstudio where as Nuance as TTS engine.
On Mon, Apr 2, 2012 at 6:53 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> If you are using Studio, you must parse the URL response in some Java code
> and store the text that you want to speak into a variable.
>
> For example, data.setSessionData("textToSpeak","Welcome to Track My
> Record. "+ "Please choose a flow sheet."+"For Exam Fail - Manual Entry,
> please press 1.");
>
> Then speak this variable's value in a TTS box in a Menu or Form element.
>
>
> Janine
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396328>
>
>
>
> or simply reply to this email.
>
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 02-04-2012 11:32:16 PM
Instead of parsing and splitting the code
Can I execute vxml content directly from callstudio...
On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> You can definetely do that. You will need to write a java class that
> parses your vxml output and then put the text you require to be played t
> with TTS. You can store that as a session variable.
> Hemal
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Monday, April 02, 2012 7:10 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> Portal (CVP) - CVP - A
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I have to use callstudio and nuance TTS for this project..
> Can't we execute dynamic vxml content generating from java in callstudio
>
> Phani
> On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Why are you using Studio and VXMLServer at all, if you have VXML being
> > created by an app server already? Why not just send that VXML to the
> > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
> > Developer Community Forums wrote: Phani Venigalla has created a new
> message
> > in the forum "CVP - All Versions":
> > -------------------------------------------------------------- Hi, Thanks
> > for your suggestions, But i am getting Response from URL as below. I am
> > storing this response in sessionVariable. <?xml version="1.0"
> > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> http://www.w3.org/2001/vxml"
> > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> Manual
> > Entry, please press 1</prompt> <choice dtmf="1"
> > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
> > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> > engine and should be able to take user input,validated and submitted. All
> > business logic will be on Vxml backed system. CVP/Nuance has to execute
> > vxml input coming from bakend system. Please let me know. Thanks, Phani.
> --
> > To respond to this post, please click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> >
> > or simply reply to this email. -- Janine Graves
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> >
>
> or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 02-04-2012 11:32:17 PM
Instead of parsing and splitting, can't we execute vxml file from
callstudio.
On 02-Apr-2012 7:09 PM, "Phani Venigalla" <phani.venigalla@gmail.com> wrote:
> I have to use callstudio and nuance TTS for this project..
> Can't we execute dynamic vxml content generating from java in callstudio
>
> Phani
> On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
>> Janine Graves has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> Why are you using Studio and VXMLServer at all, if you have VXML being
>> created by an app server already? Why not just send that VXML to the
>> gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
>> Developer Community Forums wrote: Phani Venigalla has created a new message
>> in the forum "CVP - All Versions":
>> -------------------------------------------------------------- Hi, Thanks
>> for your suggestions, But i am getting Response from URL as below. I am
>> storing this response in sessionVariable. <?xml version="1.0"
>> encoding="UTF-8"?> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
>> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
>> value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
>> <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - Manual
>> Entry, please press 1</prompt> <choice dtmf="1"
>> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
>> Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
>> engine and should be able to take user input,validated and submitted. All
>> business logic will be on Vxml backed system. CVP/Nuance has to execute
>> vxml input coming from bakend system. Please let me know. Thanks, Phani. --
>> To respond to this post, please click the following link: <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309>
>> or simply reply to this email. -- Janine Graves
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
>> >
>>
>> or simply reply to this email.
>
>
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 02-04-2012 07:35:33 PM
Hi,
Thanks for your suggestions,
But i am getting Response from URL as below. I am storing this response in sessionVariable.
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Record.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Exam Fail - Manual Entry, please press 1</prompt>
<choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual Entry</choice>
</menu>
</vxml>
This i need to read by using Nuance TTS engine and should be able to take user input,validated and submitted.
All business logic will be on Vxml backed system.
CVP/Nuance has to execute vxml input coming from bakend system.
Please let me know.
Thanks,
Phani.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 02-04-2012 07:50:16 PM
Why are you using Studio and VXMLServer at all, if you have VXML being created by an app server already? Why not just send that VXML to the gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Hi, Thanks for your suggestions, But i am getting Response from URL as below. I am storing this response in sessionVariable. <?xml version="1.0" encoding="UTF-8"?> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - Manual Entry, please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS engine and should be able to take user input,validated and submitted. All business logic will be on Vxml backed system. CVP/Nuance has to execute vxml input coming from bakend system. Please let me know. Thanks, Phani. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Janine Graves on 02-04-2012 07:53:54 PM
If you are using Studio, you must parse the URL response in some Java code and store the text that you want to speak into a variable.
For example, data.setSessionData("textToSpeak","Welcome to Track My Record. "+ "Please choose a flow sheet."+"For Exam Fail - Manual Entry, please press 1.");
Then speak this variable's value in a TTS box in a Menu or Form element.
Janine
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 02-04-2012 07:55:16 PM
Man, are you trying to play vxml here using TTS. Why ? You need to play the text content. Parse it and play it.
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 4:31 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: RE: Com.audium cannot be resolved
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Hi jannie,
Thanks its working.
If the response object contains VXML output will TTS able to play?
Do we need to write any custom code to generate vxml output in XML format to read in CallStudio using TTS.
Please let me know.
Thanks,
Phani.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5394116>
or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 02-04-2012 08:10:16 PM
I have to use callstudio and nuance TTS for this project..
Can't we execute dynamic vxml content generating from java in callstudio
Phani
On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Why are you using Studio and VXMLServer at all, if you have VXML being
> created by an app server already? Why not just send that VXML to the
> gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
> Developer Community Forums wrote: Phani Venigalla has created a new message
> in the forum "CVP - All Versions":
> -------------------------------------------------------------- Hi, Thanks
> for your suggestions, But i am getting Response from URL as below. I am
> storing this response in sessionVariable. <?xml version="1.0"
> encoding="UTF-8"?> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - Manual
> Entry, please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
> Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> engine and should be able to take user input,validated and submitted. All
> business logic will be on Vxml backed system. CVP/Nuance has to execute
> vxml input coming from bakend system. Please let me know. Thanks, Phani. --
> To respond to this post, please click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> >
>
> or simply reply to this email.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 02-04-2012 08:13:16 PM
You can definetely do that. You will need to write a java class that parses your vxml output and then put the text you require to be played t with TTS. You can store that as a session variable.
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 7:10 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
I have to use callstudio and nuance TTS for this project..
Can't we execute dynamic vxml content generating from java in callstudio
Phani
On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Why are you using Studio and VXMLServer at all, if you have VXML being
> created by an app server already? Why not just send that VXML to the
> gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
> Developer Community Forums wrote: Phani Venigalla has created a new message
> in the forum "CVP - All Versions":
> -------------------------------------------------------------- Hi, Thanks
> for your suggestions, But i am getting Response from URL as below. I am
> storing this response in sessionVariable. <?xml version="1.0"
> encoding="UTF-8"?> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - Manual
> Entry, please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
> Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> engine and should be able to take user input,validated and submitted. All
> business logic will be on Vxml backed system. CVP/Nuance has to execute
> vxml input coming from bakend system. Please let me know. Thanks, Phani. --
> To respond to this post, please click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346>
or simply reply to this email.
Subject: RE: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: GEOFFREY THOMPSON on 02-04-2012 08:27:16 PM
People use TTS is all sorts of different ways.
They look up a database, call a web service, pass down values from ICM and so on.
Do your back end stuff in an action element, all the parsing and so on and then just load up a session variable.
Back in the application, crank up an audio element and set the audio item (the TTS area) to Substitution on the session variable.
Regards,
Geoff
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 03-04-2012 12:42:16 AM
If you want to execute a vxml from studio, you can consider using VoiceXML insert element.
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Monday, April 02, 2012 10:32 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Instead of parsing and splitting the code
Can I execute vxml content directly from callstudio...
On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> You can definetely do that. You will need to write a java class that
> parses your vxml output and then put the text you require to be played t
> with TTS. You can store that as a session variable.
> Hemal
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Monday, April 02, 2012 7:10 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> Portal (CVP) - CVP - A
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I have to use callstudio and nuance TTS for this project..
> Can't we execute dynamic vxml content generating from java in callstudio
>
> Phani
> On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Why are you using Studio and VXMLServer at all, if you have VXML being
> > created by an app server already? Why not just send that VXML to the
> > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, Cisco
> > Developer Community Forums wrote: Phani Venigalla has created a new
> message
> > in the forum "CVP - All Versions":
> > -------------------------------------------------------------- Hi, Thanks
> > for your suggestions, But i am getting Response from URL as below. I am
> > storing this response in sessionVariable. <?xml version="1.0"
> > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> http://www.w3.org/2001/vxml"
> > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> Manual
> > Entry, please press 1</prompt> <choice dtmf="1"
> > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual
> > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> > engine and should be able to take user input,validated and submitted. All
> > business logic will be on Vxml backed system. CVP/Nuance has to execute
> > vxml input coming from bakend system. Please let me know. Thanks, Phani.
> --
> > To respond to this post, please click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> >
> > or simply reply to this email. -- Janine Graves
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927>
or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 03-04-2012 10:32:44 AM
Hi,
How to check which version of Java in Cisco callstudio 8.0.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 03-04-2012 11:57:36 AM
Hi,
I am using VoiceXML insert element to execure dynamic VXML content
I am getting following error shown in activity log
,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure - Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,element,error,error.badfetch
Subject: RE: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 03-04-2012 03:02:22 PM
Here we don't need to create any Menu or form element , I only need to
execute vxml files in callstudio where as Nuance as TTS engine.
On Mon, Apr 2, 2012 at 6:53 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> If you are using Studio, you must parse the URL response in some Java code
> and store the text that you want to speak into a variable.
>
> For example, data.setSessionData("textToSpeak","Welcome to Track My
> Record. "+ "Please choose a flow sheet."+"For Exam Fail - Manual Entry,
> please press 1.");
>
> Then speak this variable's value in a TTS box in a Menu or Form element.
>
>
> Janine
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396328>
>
>
>
> or simply reply to this email.
>
Hi,
I am using VoiceXML insert element to execure dynamic VXML content
I am getting following error shown in activity log
,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure - Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,element,error,error.badfetch
Let me know.
Thanks,
Phani.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 03-04-2012 04:15:16 PM
I am using VoiceXML insert element to execure dynamic VXML content
I am getting following error shown in activity log
,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
passed a variable with a name or value of "<?xml version="1.0"
encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
please press 1</prompt> <choice dtmf="1"
next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
Entry</choice> </menu></vxml>". *The use of the character """ may cause the
voice browser to encounter a parsing or ECMA script problem when the insert
element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
10:54:22.497,DynamicVxml,element,error,error.badfetch
On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> If you want to execute a vxml from studio, you can consider using VoiceXML
> insert element.
> Hemal
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Monday, April 02, 2012 10:32 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Instead of parsing and splitting the code
>
> Can I execute vxml content directly from callstudio...
> On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > You can definetely do that. You will need to write a java class that
> > parses your vxml output and then put the text you require to be played t
> > with TTS. You can store that as a session variable.
> > Hemal
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Monday, April 02, 2012 7:10 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> > Portal (CVP) - CVP - A
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > I have to use callstudio and nuance TTS for this project..
> > Can't we execute dynamic vxml content generating from java in callstudio
> >
> > Phani
> > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Janine Graves has created a new message in the forum "CVP - All
> > Versions":
> > >
> > > --------------------------------------------------------------
> > > Why are you using Studio and VXMLServer at all, if you have VXML being
> > > created by an app server already? Why not just send that VXML to the
> > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
> Cisco
> > > Developer Community Forums wrote: Phani Venigalla has created a new
> > message
> > > in the forum "CVP - All Versions":
> > > -------------------------------------------------------------- Hi,
> Thanks
> > > for your suggestions, But i am getting Response from URL as below. I am
> > > storing this response in sessionVariable. <?xml version="1.0"
> > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> > http://www.w3.org/2001/vxml"
> > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> > Manual
> > > Entry, please press 1</prompt> <choice dtmf="1"
> > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
> Manual
> > > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> > > engine and should be able to take user input,validated and submitted.
> All
> > > business logic will be on Vxml backed system. CVP/Nuance has to execute
> > > vxml input coming from bakend system. Please let me know. Thanks,
> Phani.
> > --
> > > To respond to this post, please click the following link: <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> > >
> > > or simply reply to this email. -- Janine Graves
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> >
>
> or simply reply to this email.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 03-04-2012 04:23:16 PM
Can’t you get rid of the double quotes around /mychartdt/inside.asp?mode=pefltdtl&id=1
Regards,
Geoff
--------------------------------------------------------------------
Geoff Thompson Unified Contact Center Practice
Email: geoff@hp.com HP Technology Consulting
Phone: +1.408.447.4297 Hewlett-Packard Company
Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
____________________________________________________________________
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Tuesday, April 03, 2012 1:15 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
I am using VoiceXML insert element to execure dynamic VXML content
I am getting following error shown in activity log
,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
passed a variable with a name or value of "<?xml version="1.0"
encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
please press 1</prompt> <choice dtmf="1"
next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
Entry</choice> </menu></vxml>". *The use of the character """ may cause the
voice browser to encounter a parsing or ECMA script problem when the insert
element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
10:54:22.497,DynamicVxml,element,error,error.badfetch
On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> If you want to execute a vxml from studio, you can consider using VoiceXML
> insert element.
> Hemal
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Monday, April 02, 2012 10:32 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Instead of parsing and splitting the code
>
> Can I execute vxml content directly from callstudio...
> On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > You can definetely do that. You will need to write a java class that
> > parses your vxml output and then put the text you require to be played t
> > with TTS. You can store that as a session variable.
> > Hemal
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Monday, April 02, 2012 7:10 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> > Portal (CVP) - CVP - A
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > I have to use callstudio and nuance TTS for this project..
> > Can't we execute dynamic vxml content generating from java in callstudio
> >
> > Phani
> > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Janine Graves has created a new message in the forum "CVP - All
> > Versions":
> > >
> > > --------------------------------------------------------------
> > > Why are you using Studio and VXMLServer at all, if you have VXML being
> > > created by an app server already? Why not just send that VXML to the
> > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
> Cisco
> > > Developer Community Forums wrote: Phani Venigalla has created a new
> > message
> > > in the forum "CVP - All Versions":
> > > -------------------------------------------------------------- Hi,
> Thanks
> > > for your suggestions, But i am getting Response from URL as below. I am
> > > storing this response in sessionVariable. <?xml version="1.0"
> > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> > http://www.w3.org/2001/vxml"
> > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> > Manual
> > > Entry, please press 1</prompt> <choice dtmf="1"
> > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
> Manual
> > > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS
> > > engine and should be able to take user input,validated and submitted.
> All
> > > business logic will be on Vxml backed system. CVP/Nuance has to execute
> > > vxml input coming from bakend system. Please let me know. Thanks,
> Phani.
> > --
> > > To respond to this post, please click the following link: <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> > >
> > > or simply reply to this email. -- Janine Graves
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469>
or simply reply to this email.
Subject: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 03-04-2012 05:00:16 PM
Is this a correct voicexml format to execute in VoiceXML insert element.
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"xml:lang="en-US">
<menu dtmf="true"> <property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
please press 1</prompt> <choice dtmf="1"
next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
Entry</choice> </menu></vxml>.
Or should i need to follow any standard procedure.
Thanks,
Phani.
On Tue, Apr 3, 2012 at 3:23 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Can’t you get rid of the double quotes around
> /mychartdt/inside.asp?mode=pefltdtl&id=1
>
> Regards,
> Geoff
> --------------------------------------------------------------------
> Geoff Thompson Unified Contact Center Practice
> Email: geoff@hp.com HP Technology Consulting
> Phone: +1.408.447.4297 Hewlett-Packard Company
> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> ____________________________________________________________________
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Tuesday, April 03, 2012 1:15 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I am using VoiceXML insert element to execure dynamic VXML content
>
> I am getting following error shown in activity log
>
> ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
> passed a variable with a name or value of "<?xml version="1.0"
> encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
> Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
> please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
> Entry</choice> </menu></vxml>". *The use of the character """ may cause the
> voice browser to encounter a parsing or ECMA script problem when the insert
> element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,element,error,error.badfetch
>
>
>
> On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > If you want to execute a vxml from studio, you can consider using
> VoiceXML
> > insert element.
> > Hemal
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Monday, April 02, 2012 10:32 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> > Portal (CVP) - CVP - All
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > Instead of parsing and splitting the code
> >
> > Can I execute vxml content directly from callstudio...
> > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Hemal Mehta has created a new message in the forum "CVP - All
> Versions":
> > >
> > > --------------------------------------------------------------
> > > You can definetely do that. You will need to write a java class that
> > > parses your vxml output and then put the text you require to be played
> t
> > > with TTS. You can store that as a session variable.
> > > Hemal
> > > ________________________________
> > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > > Sent: Monday, April 02, 2012 7:10 PM
> > > To: cdicuser@developer.cisco.com
> > > Subject: New Message from Phani Venigalla in Customer Voice Portal
> (CVP)
> > -
> > > CVP - All Versions: Re: New Message from Janine Graves in Customer
> Voice
> > > Portal (CVP) - CVP - A
> > >
> > > Phani Venigalla has created a new message in the forum "CVP - All
> > > Versions":
> > >
> > > --------------------------------------------------------------
> > > I have to use callstudio and nuance TTS for this project..
> > > Can't we execute dynamic vxml content generating from java in
> callstudio
> > >
> > > Phani
> > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> > > cdicuser@developer.cisco.com> wrote:
> > >
> > > > Janine Graves has created a new message in the forum "CVP - All
> > > Versions":
> > > >
> > > > --------------------------------------------------------------
> > > > Why are you using Studio and VXMLServer at all, if you have VXML
> being
> > > > created by an app server already? Why not just send that VXML to the
> > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
> > Cisco
> > > > Developer Community Forums wrote: Phani Venigalla has created a new
> > > message
> > > > in the forum "CVP - All Versions":
> > > > -------------------------------------------------------------- Hi,
> > Thanks
> > > > for your suggestions, But i am getting Response from URL as below. I
> am
> > > > storing this response in sessionVariable. <?xml version="1.0"
> > > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> > > http://www.w3.org/2001/vxml"
> > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> > > Manual
> > > > Entry, please press 1</prompt> <choice dtmf="1"
> > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
> > Manual
> > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
> TTS
> > > > engine and should be able to take user input,validated and submitted.
> > All
> > > > business logic will be on Vxml backed system. CVP/Nuance has to
> execute
> > > > vxml input coming from bakend system. Please let me know. Thanks,
> > Phani.
> > > --
> > > > To respond to this post, please click the following link: <
> > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> > > >
> > > > or simply reply to this email. -- Janine Graves
> > > > --
> > > > To respond to this post, please click the following link:
> > > >
> > > > <
> > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > > > >
> > > >
> > > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> > > >
> > >
> > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400479
> >
>
> or simply reply to this email.
Subject: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 03-04-2012 05:59:16 PM
Its not accepting double quote and single quote and &
How could we send to another URL with choice statement in this
scenario. its a typical voiceXML statement.
<choice dtmf="1"
next="/mychartdt/inside.asp?mode=pefltdtl&id=1">
First it gave double quotes then if i give single quote then its not
accepting single quote,
Thanks,
Phani.
On Tue, Apr 3, 2012 at 3:59 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> Is this a correct voicexml format to execute in VoiceXML insert element.
>
> <?xml version="1.0" encoding="UTF-8"?>
> <vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"xml:lang="en-US">
> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property>
> <prompt>Welcome to Track My Health.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
> Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
> please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
> Entry</choice> </menu></vxml>.
>
> Or should i need to follow any standard procedure.
>
> Thanks,
> Phani.
>
> On Tue, Apr 3, 2012 at 3:23 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
>> Versions":
>>
>> --------------------------------------------------------------
>> Can’t you get rid of the double quotes around
>> /mychartdt/inside.asp?mode=pefltdtl&id=1
>>
>> Regards,
>> Geoff
>> --------------------------------------------------------------------
>> Geoff Thompson Unified Contact Center Practice
>> Email: geoff@hp.com HP Technology Consulting
>> Phone: +1.408.447.4297 Hewlett-Packard Company
>> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
>> ____________________________________________________________________
>>
>> From: Cisco Developer Community Forums [mailto:
>> cdicuser@developer.cisco.com]
>> Sent: Tuesday, April 03, 2012 1:15 PM
>> To: cdicuser@developer.cisco.com
>> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
>> - CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
>> Portal (CVP) - CVP - All
>>
>> Phani Venigalla has created a new message in the forum "CVP - All
>> Versions":
>>
>> --------------------------------------------------------------
>> I am using VoiceXML insert element to execure dynamic VXML content
>>
>> I am getting following error shown in activity log
>>
>> ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
>> passed a variable with a name or value of "<?xml version="1.0"
>> encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
>> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
>> value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
>> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
>> Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
>> please press 1</prompt> <choice dtmf="1"
>> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
>> Entry</choice> </menu></vxml>". *The use of the character """ may cause
>> the
>> voice browser to encounter a parsing or ECMA script problem when the
>> insert
>> element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
>> 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
>> 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
>> 10:54:22.497,DynamicVxml,element,error,error.badfetch
>>
>>
>>
>> On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
>> cdicuser@developer.cisco.com> wrote:
>>
>> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
>> >
>> > --------------------------------------------------------------
>> > If you want to execute a vxml from studio, you can consider using
>> VoiceXML
>> > insert element.
>> > Hemal
>> > ________________________________
>> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
>> > Sent: Monday, April 02, 2012 10:32 PM
>> > To: cdicuser@developer.cisco.com
>> > Subject: New Message from Phani Venigalla in Customer Voice Portal
>> (CVP) -
>> > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
>> > Portal (CVP) - CVP - All
>> >
>> > Phani Venigalla has created a new message in the forum "CVP - All
>> > Versions":
>> >
>> > --------------------------------------------------------------
>> > Instead of parsing and splitting the code
>> >
>> > Can I execute vxml content directly from callstudio...
>> > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
>> > cdicuser@developer.cisco.com> wrote:
>> >
>> > > Hemal Mehta has created a new message in the forum "CVP - All
>> Versions":
>> > >
>> > > --------------------------------------------------------------
>> > > You can definetely do that. You will need to write a java class that
>> > > parses your vxml output and then put the text you require to be
>> played t
>> > > with TTS. You can store that as a session variable.
>> > > Hemal
>> > > ________________________________
>> > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
>> > > Sent: Monday, April 02, 2012 7:10 PM
>> > > To: cdicuser@developer.cisco.com
>> > > Subject: New Message from Phani Venigalla in Customer Voice Portal
>> (CVP)
>> > -
>> > > CVP - All Versions: Re: New Message from Janine Graves in Customer
>> Voice
>> > > Portal (CVP) - CVP - A
>> > >
>> > > Phani Venigalla has created a new message in the forum "CVP - All
>> > > Versions":
>> > >
>> > > --------------------------------------------------------------
>> > > I have to use callstudio and nuance TTS for this project..
>> > > Can't we execute dynamic vxml content generating from java in
>> callstudio
>> > >
>> > > Phani
>> > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
>> > > cdicuser@developer.cisco.com> wrote:
>> > >
>> > > > Janine Graves has created a new message in the forum "CVP - All
>> > > Versions":
>> > > >
>> > > > --------------------------------------------------------------
>> > > > Why are you using Studio and VXMLServer at all, if you have VXML
>> being
>> > > > created by an app server already? Why not just send that VXML to the
>> > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
>> > Cisco
>> > > > Developer Community Forums wrote: Phani Venigalla has created a new
>> > > message
>> > > > in the forum "CVP - All Versions":
>> > > > -------------------------------------------------------------- Hi,
>> > Thanks
>> > > > for your suggestions, But i am getting Response from URL as below.
>> I am
>> > > > storing this response in sessionVariable. <?xml version="1.0"
>> > > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
>> > > http://www.w3.org/2001/vxml"
>> > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
>> > > > value="dtmf"></property> <prompt>Welcome to Track My
>> Record.</prompt>
>> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
>> > > Manual
>> > > > Entry, please press 1</prompt> <choice dtmf="1"
>> > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
>> > Manual
>> > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
>> TTS
>> > > > engine and should be able to take user input,validated and
>> submitted.
>> > All
>> > > > business logic will be on Vxml backed system. CVP/Nuance has to
>> execute
>> > > > vxml input coming from bakend system. Please let me know. Thanks,
>> > Phani.
>> > > --
>> > > > To respond to this post, please click the following link: <
>> > > >
>> > >
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
>> > > >
>> > > > or simply reply to this email. -- Janine Graves
>> > > > --
>> > > > To respond to this post, please click the following link:
>> > > >
>> > > > <
>> > > >
>> > >
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
>> > > > >
>> > > >
>> > > > or simply reply to this email.
>> > > --
>> > > To respond to this post, please click the following link:
>> > >
>> > > <
>> > >
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
>> > > >
>> > >
>> > > or simply reply to this email.
>> > > --
>> > > To respond to this post, please click the following link:
>> > >
>> > > <
>> > >
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
>> > > >
>> > >
>> > > or simply reply to this email.
>> > --
>> > To respond to this post, please click the following link:
>> >
>> > <
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
>> > >
>> >
>> > or simply reply to this email.
>> > --
>> > To respond to this post, please click the following link:
>> >
>> > <
>> >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
>> > >
>> >
>> > or simply reply to this email.
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
>> >
>>
>> or simply reply to this email.
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400479
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 03-04-2012 07:30:36 PM
If you are using Studio, you must parse the URL response in some Java code and store the text that you want to speak into a variable.
For example, data.setSessionData("textToSpeak","Welcome to Track My Record. "+ "Please choose a flow sheet."+"For Exam Fail - Manual Entry, please press 1.");
Then speak this variable's value in a TTS box in a Menu or Form element.
Janine
Can anybody tell me why the VXML insert element is giving hard time
Hers ia my query..
Hi,
I am using Cisco callstudio 8.0. I am trying to execute static voicexml but its giving errors as below.
The vxml content i am trying to execute is
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press 1</prompt>
<choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice>
</menu>
</vxml>
The log shown below.
vxmlInsert,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure - Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.
10.9.13.79.1333483533904.494.MyMercy_Dev,04/03/2012 15:05:50.951,vxmlInsert,interaction,audio_group,initial_audio_group
10.9.13.79.1333483533904.494.MyMercy_Dev,04/03/2012 15:05:50.966,vxmlInsert,element,error,error.badfetch.http.404
Thanks,
Phani
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 03-04-2012 11:58:16 PM
Hi Hemal,
I even tried without the <choice dtmf="1" next="test.vxml"</choice> the
line. Still getting error
The use of the character """ may cause the voice browser to encounter a
parsing or ECMA script problem when the insert element is visited.
Let me know what need to modify to work with VxmlInsert element , The user
guide is confusing..
Please send me the working sample so that i can modify my end.
Thanks,
Phani.
On Tue, Apr 3, 2012 at 10:03 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Yes, make sure as Janine stated. I checked the syntax of the vxml code
> itself:
> <?xml version="1.0" encoding="UTF-8"?>
> <vxml version="2.1">
> <menu dtmf="true">
> <property name="inputmodes" value="dtmf"></property>
> <prompt>Welcome to Track My Health.</prompt>
> <prompt>Please choose a flow sheet.</prompt>
> <prompt>For Heart Failure - Manual Entry, please press 1</prompt>
> <choice dtmf="1" next="test.vxml"</choice>
> </menu>
> </vxml>
>
> This code itself seems ok from syntax perspective. What is the vxml
> gateway version u are using > The voice browser for some reason is not
> liking it.
> Meanwhile remove this line just for testing purposes or just add:
> <choice dtmf="1" next="test.vxml"</choice> and point to a simple test.vxml
> file. See what happens.
> Hemal
>
> ________________________________
> From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> Sent: Tuesday, April 03, 2012 8:41 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Janine Graves in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Phani Venigalla in Customer Voice
> Portal (CVP) - CVP -
>
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Did you read in the Studio Users Guide the pages about what has to be
> included in your Vxml Insert for it to work? Try reading those pages and
> modifying your code. Your VXML must be written as a subdialog and there are
> many other requirements. I actually never got VXML Insert to work, but
> sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community
> Forums wrote: Phani Venigalla has created a new message in the forum "CVP -
> All Versions":
> -------------------------------------------------------------- I am using
> VoiceXML insert element to execure dynamic VXML content I am getting
> following error shown in activity log ,DynamicVxml,element,warning,WARNING:
> The VoiceXML Insert element was passed a variable with a name or value of
> "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="
> http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true">
> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to
> Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt>
> <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#>-
> Manual Entry please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
> Entry</choice> </menu></vxml>". *The use of the character """ may cause the
> voice browser to encounter a parsing or ECMA script problem when the insert
> element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2, 2012
> at 11:42 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new
> message in the forum "CVP - All Versions": > >
> -------------------------------------------------------------- > If you
> want to execute a vxml from studio, you can consider using VoiceXML >
> insert element. > Hemal > ________________________________ > From: Cisco
> Developer Community Forums [cdicuser@developer.cisco.com] > Sent: Monday,
> April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject: New
> Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP - All
> Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal (CVP)
> - CVP - All > > Phani Venigalla has created a new message in the forum "CVP
> - All > Versions": > >
> -------------------------------------------------------------- > Instead of
> parsing and splitting the code > > Can I execute vxml content directly from
> callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums"
> < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has created a
> new message in the forum "CVP - All Versions": > > > >
> -------------------------------------------------------------- > > You can
> definetely do that. You will need to write a java class that > > parses
> your vxml output and then put the text you require to be played t > > with
> TTS. You can store that as a session variable. > > Hemal > >
> ________________________________ > > From: Cisco Developer Community Forums
> [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10 PM >
> > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani
> Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions: Re:
> New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP - A
> > > > > Phani Venigalla has created a new message in the forum "CVP - All >
> > Versions": > > > >
> -------------------------------------------------------------- > > I have
> to use callstudio and nuance TTS for this project.. > > Can't we execute
> dynamic vxml content generating from java in callstudio > > > > Phani > >
> On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > >
> cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has created
> a new message in the forum "CVP - All > > Versions": > > > > > >
> -------------------------------------------------------------- > > > Why
> are you using Studio and VXMLServer at all, if you have VXML being > > >
> created by an app server already? Why not just send that VXML to the > > >
> gateway, have the gateway return the response? On 4/2/2012 7:35 PM, > Cisco
> > > > Developer Community Forums wrote: Phani Venigalla has created a new >
> > message > > > in the forum "CVP - All Versions": > > >
> -------------------------------------------------------------- Hi, > Thanks
> > > > for your suggestions, But i am getting Response from URL as below. I
> am > > > storing this response in sessionVariable. <?xml version="1.0" > >
> > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > >
> http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu dtmf="true">
> <property name="inputmodes" > > > value="dtmf"></property> <prompt>Welcome
> to Track My Record.</prompt> > > > <prompt>Please choose a flow
> sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please
> press 1</prompt> <choice dtmf="1" > > >
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - > Manual
> > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
> TTS > > > engine and should be able to take user input,validated and
> submitted. > All > > > business logic will be on Vxml backed system.
> CVP/Nuance has to execute > > > vxml input coming from bakend system.
> Please let me know. Thanks, > Phani. > > -- > > > To respond to this post,
> please click the following link: < > > > > > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309> > > > > > or simply reply to this email. -- Janine Graves > > > -- > > >
> To respond to this post, please click the following link: > > > > > > < > >
> > > > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324> > > > > > > > > > or simply reply to this email. > > -- > > To respond to
> this post, please click the following link: > > > > < > > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346> > > > > > > or simply reply to this email. > > -- > > To respond to this
> post, please click the following link: > > > > < > > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348> > > > > > > or simply reply to this email. > -- > To respond to this
> post, please click the following link: > > < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927> > > > or simply reply to this email. > -- > To respond to this post,
> please click the following link: > > < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596> > > > or simply reply to this email. -- To respond to this post, please
> click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402909
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402959
> >
>
> or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 04-04-2012 12:27:16 AM
Hi,
Please let me know what need to be modified in Vxml code to work with
Vxmlinsert element.
Thanks,
Phani.
On Tue, Apr 3, 2012 at 11:10 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Its Cisco Unifed voiceXML 2.1 Gateway
>
> On Tue, Apr 3, 2012 at 10:58 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > Hi Hemal,
> >
> > I even tried without the <choice dtmf="1" next="test.vxml"</choice> the
> > line. Still getting error
> >
> >
> > The use of the character """ may cause the voice browser to encounter a
> > parsing or ECMA script problem when the insert element is visited.
> >
> > Let me know what need to modify to work with VxmlInsert element , The
> user
> > guide is confusing..
> >
> > Please send me the working sample so that i can modify my end.
> >
> > Thanks,
> > Phani.
> >
> > On Tue, Apr 3, 2012 at 10:03 PM, Cisco Developer Community Forums <
> >
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Hemal Mehta has created a new message in the forum "CVP - All
> Versions":
> > >
> > > --------------------------------------------------------------
> > > Yes, make sure as Janine stated. I checked the syntax of the vxml code
> > > itself:
> >
> > > <?xml version="1.0" encoding="UTF-8"?>
> > > <vxml version="2.1">
> > > <menu dtmf="true">
> > > <property name="inputmodes" value="dtmf"></property>
> > > <prompt>Welcome to Track My Health.</prompt>
> > > <prompt>Please choose a flow sheet.</prompt>
> > > <prompt>For Heart Failure - Manual Entry, please press 1</prompt>
> > > <choice dtmf="1" next="test.vxml"</choice>
> > > </menu>
> > > </vxml>
> > >
> > > This code itself seems ok from syntax perspective. What is the vxml
> > > gateway version u are using > The voice browser for some reason is not
> > > liking it.
> > > Meanwhile remove this line just for testing purposes or just add:
> > > <choice dtmf="1" next="test.vxml"</choice> and point to a simple
> > test.vxml
> > > file. See what happens.
> >
> > > Hemal
> > >
> > > ________________________________
> > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > > Sent: Tuesday, April 03, 2012 8:41 PM
> > > To: cdicuser@developer.cisco.com
> > > Subject: New Message from Janine Graves in Customer Voice Portal (CVP)
> -
> > > CVP - All Versions: Re: New Message from Phani Venigalla in Customer
> > Voice
> >
> > > Portal (CVP) - CVP -
> > >
> > > Janine Graves has created a new message in the forum "CVP - All
> > Versions":
> > >
> > > --------------------------------------------------------------
> > > Did you read in the Studio Users Guide the pages about what has to be
> > > included in your Vxml Insert for it to work? Try reading those pages
> and
> > > modifying your code. Your VXML must be written as a subdialog and there
> > are
> > > many other requirements. I actually never got VXML Insert to work, but
> > > sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community
> >
> > > Forums wrote: Phani Venigalla has created a new message in the forum
> > "CVP -
> > > All Versions":
> > > -------------------------------------------------------------- I am
> > using
> >
> > > VoiceXML insert element to execure dynamic VXML content I am getting
> > > following error shown in activity log
> > ,DynamicVxml,element,warning,WARNING:
> > > The VoiceXML Insert element was passed a variable with a name or value
> of
> > > "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="
> > > http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true">
> > > <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to
> > > Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt>
> > > <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#
> >-
> > > Manual Entry please press 1</prompt> <choice dtmf="1"
> > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure -
> > Manual
> > > Entry</choice> </menu></vxml>". *The use of the character """ may cause
> > the
> > > voice browser to encounter a parsing or ECMA script problem when the
> > insert
> > > element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> > > 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> > > 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> > > 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2,
> 2012
> > > at 11:42 PM, Cisco Developer Community Forums <
> > > cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new
> > > message in the forum "CVP - All Versions": > >
> > > -------------------------------------------------------------- > If you
> > > want to execute a vxml from studio, you can consider using VoiceXML >
> > > insert element. > Hemal > ________________________________ > From:
> Cisco
> > > Developer Community Forums [cdicuser@developer.cisco.com] > Sent:
> > Monday,
> > > April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject:
> > New
> > > Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP -
> All
> > > Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal
> > (CVP)
> > > - CVP - All > > Phani Venigalla has created a new message in the forum
> > "CVP
> > > - All > Versions": > >
> > > -------------------------------------------------------------- >
> Instead
> > of
> > > parsing and splitting the code > > Can I execute vxml content directly
> > from
> > > callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community
> > Forums"
> > > < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has
> created a
> > > new message in the forum "CVP - All Versions": > > > >
> > > -------------------------------------------------------------- > > You
> > can
> > > definetely do that. You will need to write a java class that > > parses
> > > your vxml output and then put the text you require to be played t > >
> > with
> > > TTS. You can store that as a session variable. > > Hemal > >
> > > ________________________________ > > From: Cisco Developer Community
> > Forums
> > > [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10
> PM
> > >
> > > > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani
> > > Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions:
> Re:
> > > New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP
> > - A
> > > > > > > Phani Venigalla has created a new message in the forum "CVP -
> > All >
> > > > Versions": > > > >
> > > -------------------------------------------------------------- > > I
> have
> > > to use callstudio and nuance TTS for this project.. > > Can't we
> execute
> > > dynamic vxml content generating from java in callstudio > > > > Phani
> > >
> > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > >
> > > cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has
> created
> > > a new message in the forum "CVP - All > > Versions": > > > > > >
> > > -------------------------------------------------------------- > > >
> Why
> > > are you using Studio and VXMLServer at all, if you have VXML being > >
> >
> > > created by an app server already? Why not just send that VXML to the >
> >
> > >
> > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, >
> > Cisco
> > > > > > Developer Community Forums wrote: Phani Venigalla has created a
> > new >
> > > > message > > > in the forum "CVP - All Versions": > > >
> > > -------------------------------------------------------------- Hi, >
> > Thanks
> > > > > > for your suggestions, But i am getting Response from URL as
> below.
> > I
> > > am > > > storing this response in sessionVariable. <?xml version="1.0"
> >
> > >
> > > > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > >
> > > http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu
> dtmf="true">
> > > <property name="inputmodes" > > > value="dtmf"></property>
> > <prompt>Welcome
> > > to Track My Record.</prompt> > > > <prompt>Please choose a flow
> > > sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please
> > > press 1</prompt> <choice dtmf="1" > > >
> > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - >
> > Manual
> > > > > > Entry</choice> </menu> </vxml> This i need to read by using
> Nuance
> > > TTS > > > engine and should be able to take user input,validated and
> > > submitted. > All > > > business logic will be on Vxml backed system.
> > > CVP/Nuance has to execute > > > vxml input coming from bakend system.
> > > Please let me know. Thanks, > Phani. > > -- > > > To respond to this
> > post,
> > > please click the following link: < > > > > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> >
> > > > > > > or simply reply to this email. -- Janine Graves > > > -- > > >
> > > To respond to this post, please click the following link: > > > > > > <
> > > >
> > > > > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> >
> > > > > > > > > > > or simply reply to this email. > > -- > > To respond to
> > > this post, please click the following link: > > > > < > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> >
> > > > > > > > or simply reply to this email. > > -- > > To respond to this
> > > post, please click the following link: > > > > < > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> >
> > > > > > > > or simply reply to this email. > -- > To respond to this
> > > post, please click the following link: > > < >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> >
> > > > > or simply reply to this email. > -- > To respond to this post,
> > > please click the following link: > > < >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> >
> > > > > or simply reply to this email. -- To respond to this post, please
> > > click the following link: <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
> > >
> > > or simply reply to this email. -- Janine Graves
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402909
> >
> > > >
> > >
> > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402959
> >
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400996
> >
> >
> >
> >
> > or simply reply to this email.
> >
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5403074
> >
>
> or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Paul Tindall on 04-04-2012 05:19:36 AM
Some VXML Insert examples attached. The Play RTSP one is the simplest one to use as a start template. The transfer one shows how to access session variables in the user-built VoiceXML, the one that returns guid and SIP header info shows how to return and log element data. Pay particular attention to the namelists (declaration and submit), exit state assignments and the way session and element data is passed/referenced and you should be OK. If you just point your VoiceXML Insert Element settings at the filename, for example, just "playrtsp.vxml" then it will be retrieved from the Tomcat/webapps/CVP. Hope that helps.
Paul
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 04-04-2012 06:21:16 AM
What are the other ways to execute vxml files from callstudio.
On 04-Apr-2012 4:20 AM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Some VXML Insert examples attached. The Play RTSP one is the simplest one
> to use as a start template. The transfer one shows how to access session
> variables in the user-built VoiceXML, the one that returns guid and SIP
> header info shows how to return and log element data. Pay particular
> attention to the namelists (declaration and submit), exit state assignments
> and the way session and element data is passed/referenced and you should be
> OK. If you just point your VoiceXML Insert Element settings at the
> filename, for example, just "playrtsp.vxml" then it will be retrieved from
> the Tomcat/webapps/CVP. Hope that helps.
>
> Paul
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5401463
> >
>
> or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Paul Tindall on 04-04-2012 06:55:09 AM
Hi,
Thanks for your suggestions,
But i am getting Response from URL as below. I am storing this response in sessionVariable.
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Record.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Exam Fail - Manual Entry, please press 1</prompt>
<choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - Manual Entry</choice>
</menu>
</vxml>
This i need to read by using Nuance TTS engine and should be able to take user input,validated and submitted.
All business logic will be on Vxml backed system.
CVP/Nuance has to execute vxml input coming from bakend system.
Please let me know.
Thanks,
Phani.
Subject: RE: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP
Replied by: Paul Tindall on 04-04-2012 06:58:26 AM
No idea what happened on previous post but this is what should have happened -----
Using Studio and CVP VoiceXML Server your options are:
1. Dynamic VoiceXML generated by the Studio application using custom voice elements to build your own VoiceXML dynamically
2. Hand crafted VoiceXML that conforms to the subdialog format required by the VoiceXML Insert Element
3. Passing control to an external VoiceXML sub-dialogue using the Subdialog Invoke Element
From ICM script:
Invoke external VoiceXML sub-dialogue using the microapp "GS,filename.vxml,V"
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 11:09:57 AM
Some VXML Insert examples attached. The Play RTSP one is the simplest one to use as a start template. The transfer one shows how to access session variables in the user-built VoiceXML, the one that returns guid and SIP header info shows how to return and log element data. Pay particular attention to the namelists (declaration and submit), exit state assignments and the way session and element data is passed/referenced and you should be OK. If you just point your VoiceXML Insert Element settings at the filename, for example, just "playrtsp.vxml" then it will be retrieved from the Tomcat/webapps/CVP. Hope that helps.
Paul
hi Paul,
Is it necessary to include this statement:
return namelist="audium_exit_state audium_vxmlLog audium_hotlink audium_hotevent audium_error audium_action" />
If so what i need to configure in VXMLInsert element.
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Paul Tindall on 04-04-2012 11:50:29 AM
The notes I have state that the audium_* variables have to be present and omitting them isn't something I've ever bothered testing. The audium_exit_state variable is the only one you need to pay particular attention to with regard to the element settings. Any value you return in audium_exit_state must have a matching exit state defined in the VoiceXML Insert element settings.
Paul
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 12:10:48 PM
The notes I have state that the audium_* variables have to be present and omitting them isn't something I've ever bothered testing. The audium_exit_state variable is the only one you need to pay particular attention to with regard to the element settings. Any value you return in audium_exit_state must have a matching exit state defined in the VoiceXML Insert element settings.
Paul
I can expain my scenario here
I am getting below output in
session variable called "{Data.Session.Flowsheets}" the same varable i am assigning as a source in VXMLINSERT element.
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press 1</prompt>
</menu>
</vxml>
Shall i need to give server address in "application=" i have given as "http://10.9.13.79/CVP/VXMLServer/Tomcat/webapps/CVP/FlowSheet.vxml"
<vxml version="2.0" application="/CVP/Server?audium_vxml_root=true&calling_into=playrtsp&namelist=element_log_value">
In the example you have given above playrtsp is that a vxml file? if yee then where do i need to create this file.
Thanks,
Phani.
Subject: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 03-04-2012 07:55:16 PM
Hi Geoff,
I dont know whats wrong in the code, I am not able to execute simple
voiceXML using VXMLInsert element.
Thanks,
Phani.
On Tue, Apr 3, 2012 at 3:23 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Can’t you get rid of the double quotes around
> /mychartdt/inside.asp?mode=pefltdtl&id=1
>
> Regards,
> Geoff
> --------------------------------------------------------------------
> Geoff Thompson Unified Contact Center Practice
> Email: geoff@hp.com HP Technology Consulting
> Phone: +1.408.447.4297 Hewlett-Packard Company
> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> ____________________________________________________________________
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Tuesday, April 03, 2012 1:15 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I am using VoiceXML insert element to execure dynamic VXML content
>
> I am getting following error shown in activity log
>
> ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was
> passed a variable with a name or value of "<?xml version="1.0"
> encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml"
> xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt>
> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart
> Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry
> please press 1</prompt> <choice dtmf="1"
> next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual
> Entry</choice> </menu></vxml>". *The use of the character """ may cause the
> voice browser to encounter a parsing or ECMA script problem when the insert
> element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> 10:54:22.497,DynamicVxml,element,error,error.badfetch
>
>
>
> On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > If you want to execute a vxml from studio, you can consider using
> VoiceXML
> > insert element.
> > Hemal
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Monday, April 02, 2012 10:32 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> > Portal (CVP) - CVP - All
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > Instead of parsing and splitting the code
> >
> > Can I execute vxml content directly from callstudio...
> > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Hemal Mehta has created a new message in the forum "CVP - All
> Versions":
> > >
> > > --------------------------------------------------------------
> > > You can definetely do that. You will need to write a java class that
> > > parses your vxml output and then put the text you require to be played
> t
> > > with TTS. You can store that as a session variable.
> > > Hemal
> > > ________________________________
> > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > > Sent: Monday, April 02, 2012 7:10 PM
> > > To: cdicuser@developer.cisco.com
> > > Subject: New Message from Phani Venigalla in Customer Voice Portal
> (CVP)
> > -
> > > CVP - All Versions: Re: New Message from Janine Graves in Customer
> Voice
> > > Portal (CVP) - CVP - A
> > >
> > > Phani Venigalla has created a new message in the forum "CVP - All
> > > Versions":
> > >
> > > --------------------------------------------------------------
> > > I have to use callstudio and nuance TTS for this project..
> > > Can't we execute dynamic vxml content generating from java in
> callstudio
> > >
> > > Phani
> > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" <
> > > cdicuser@developer.cisco.com> wrote:
> > >
> > > > Janine Graves has created a new message in the forum "CVP - All
> > > Versions":
> > > >
> > > > --------------------------------------------------------------
> > > > Why are you using Studio and VXMLServer at all, if you have VXML
> being
> > > > created by an app server already? Why not just send that VXML to the
> > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM,
> > Cisco
> > > > Developer Community Forums wrote: Phani Venigalla has created a new
> > > message
> > > > in the forum "CVP - All Versions":
> > > > -------------------------------------------------------------- Hi,
> > Thanks
> > > > for your suggestions, But i am getting Response from URL as below. I
> am
> > > > storing this response in sessionVariable. <?xml version="1.0"
> > > > encoding="UTF-8"?> <vxml version="2.1" xmlns="
> > > http://www.w3.org/2001/vxml"
> > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes"
> > > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt>
> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail -
> > > Manual
> > > > Entry, please press 1</prompt> <choice dtmf="1"
> > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure -
> > Manual
> > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
> TTS
> > > > engine and should be able to take user input,validated and submitted.
> > All
> > > > business logic will be on Vxml backed system. CVP/Nuance has to
> execute
> > > > vxml input coming from bakend system. Please let me know. Thanks,
> > Phani.
> > > --
> > > > To respond to this post, please click the following link: <
> > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309
> > > >
> > > > or simply reply to this email. -- Janine Graves
> > > > --
> > > > To respond to this post, please click the following link:
> > > >
> > > > <
> > > >
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324
> > > > >
> > > >
> > > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346
> > > >
> > >
> > > or simply reply to this email.
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348
> > > >
> > >
> > > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400479
> >
>
> or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 03-04-2012 09:41:16 PM
Did you read in the Studio Users Guide the pages about what has to be included in your Vxml Insert for it to work? Try reading those pages and modifying your code. Your VXML must be written as a subdialog and there are many other requirements. I actually never got VXML Insert to work, but sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I am using VoiceXML insert element to execure dynamic VXML content I am getting following error shown in activity log ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". *The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > If you want to execute a vxml from studio, you can consider using VoiceXML > insert element. > Hemal > ________________________________ > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com] > Sent: Monday, April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal (CVP) - CVP - All > > Phani Venigalla has created a new message in the forum "CVP - All > Versions": > > -------------------------------------------------------------- > Instead of parsing and splitting the code > > Can I execute vxml content directly from callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has created a new message in the forum "CVP - All Versions": > > > > -------------------------------------------------------------- > > You can definetely do that. You will need to write a java class that > > parses your vxml output and then put the text you require to be played t > > with TTS. You can store that as a session variable. > > Hemal > > ________________________________ > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10 PM > > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions: Re: New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP - A > > > > Phani Venigalla has created a new message in the forum "CVP - All > > Versions": > > > > -------------------------------------------------------------- > > I have to use callstudio and nuance TTS for this project.. > > Can't we execute dynamic vxml content generating from java in callstudio > > > > Phani > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > > cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has created a new message in the forum "CVP - All > > Versions": > > > > > > -------------------------------------------------------------- > > > Why are you using Studio and VXMLServer at all, if you have VXML being > > > created by an app server already? Why not just send that VXML to the > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, > Cisco > > > Developer Community Forums wrote: Phani Venigalla has created a new > > message > > > in the forum "CVP - All Versions": > > > -------------------------------------------------------------- Hi, > Thanks > > > for your suggestions, But i am getting Response from URL as below. I am > > > storing this response in sessionVariable. <?xml version="1.0" > > > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > > http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" > > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please press 1</prompt> <choice dtmf="1" > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - > Manual > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS > > > engine and should be able to take user input,validated and submitted. > All > > > business logic will be on Vxml backed system. CVP/Nuance has to execute > > > vxml input coming from bakend system. Please let me know. Thanks, > Phani. > > -- > > > To respond to this post, please click the following link: < > > > > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309 > > > > > > or simply reply to this email. -- Janine Graves > > > -- > > > To respond to this post, please click the following link: > > > > > > < > > > > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324 > > > > > > > > > > or simply reply to this email. > > -- > > To respond to this post, please click the following link: > > > > < > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346 > > > > > > > or simply reply to this email. > > -- > > To respond to this post, please click the following link: > > > > < > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348 > > > > > > > or simply reply to this email. > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927 > > > > or simply reply to this email. > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469> or simply reply to this email. -- Janine Graves
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Hemal Mehta on 03-04-2012 11:03:16 PM
Yes, make sure as Janine stated. I checked the syntax of the vxml code itself:
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press 1</prompt>
<choice dtmf="1" next="test.vxml"</choice>
</menu>
</vxml>
This code itself seems ok from syntax perspective. What is the vxml gateway version u are using > The voice browser for some reason is not liking it.
Meanwhile remove this line just for testing purposes or just add:
<choice dtmf="1" next="test.vxml"</choice> and point to a simple test.vxml file. See what happens.
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Tuesday, April 03, 2012 8:41 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Janine Graves has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Did you read in the Studio Users Guide the pages about what has to be included in your Vxml Insert for it to work? Try reading those pages and modifying your code. Your VXML must be written as a subdialog and there are many other requirements. I actually never got VXML Insert to work, but sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I am using VoiceXML insert element to execure dynamic VXML content I am getting following error shown in activity log ,DynamicVxml,element,warning,WARNING: The VoiceXML Insert element was passed a variable with a name or value of "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt> <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#>- Manual Entry please press 1</prompt> <choice dtmf="1" next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure - Manual Entry</choice> </menu></vxml>". *The use of the character """ may cause the voice browser to encounter a parsing or ECMA script problem when the insert element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2, 2012 at 11:42 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > If you want to execute a vxml from studio, you can consider using VoiceXML > insert element. > Hemal > ________________________________ > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com] > Sent: Monday, April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal (CVP) - CVP - All > > Phani Venigalla has created a new message in the forum "CVP - All > Versions": > > -------------------------------------------------------------- > Instead of parsing and splitting the code > > Can I execute vxml content directly from callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community Forums" < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has created a new message in the forum "CVP - All Versions": > > > > -------------------------------------------------------------- > > You can definetely do that. You will need to write a java class that > > parses your vxml output and then put the text you require to be played t > > with TTS. You can store that as a session variable. > > Hemal > > ________________________________ > > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10 PM > > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions: Re: New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP - A > > > > Phani Venigalla has created a new message in the forum "CVP - All > > Versions": > > > > -------------------------------------------------------------- > > I have to use callstudio and nuance TTS for this project.. > > Can't we execute dynamic vxml content generating from java in callstudio > > > > Phani > > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > > cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has created a new message in the forum "CVP - All > > Versions": > > > > > > -------------------------------------------------------------- > > > Why are you using Studio and VXMLServer at all, if you have VXML being > > > created by an app server already? Why not just send that VXML to the > > > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, > Cisco > > > Developer Community Forums wrote: Phani Venigalla has created a new > > message > > > in the forum "CVP - All Versions": > > > -------------------------------------------------------------- Hi, > Thanks > > > for your suggestions, But i am getting Response from URL as below. I am > > > storing this response in sessionVariable. <?xml version="1.0" > > > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > > http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu dtmf="true"> <property name="inputmodes" > > > value="dtmf"></property> <prompt>Welcome to Track My Record.</prompt> > > > <prompt>Please choose a flow sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please press 1</prompt> <choice dtmf="1" > > > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - > Manual > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance TTS > > > engine and should be able to take user input,validated and submitted. > All > > > business logic will be on Vxml backed system. CVP/Nuance has to execute > > > vxml input coming from bakend system. Please let me know. Thanks, > Phani. > > -- > > > To respond to this post, please click the following link: < > > > > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309 > > > > > > or simply reply to this email. -- Janine Graves > > > -- > > > To respond to this post, please click the following link: > > > > > > < > > > > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324 > > > > > > > > > > or simply reply to this email. > > -- > > To respond to this post, please click the following link: > > > > < > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346 > > > > > > > or simply reply to this email. > > -- > > To respond to this post, please click the following link: > > > > < > > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348 > > > > > > > or simply reply to this email. > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927 > > > > or simply reply to this email. > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469> or simply reply to this email. -- Janine Graves
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402909>
or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 04-04-2012 12:10:16 AM
Its Cisco Unifed voiceXML 2.1 Gateway
On Tue, Apr 3, 2012 at 10:58 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Hi Hemal,
>
> I even tried without the <choice dtmf="1" next="test.vxml"</choice> the
> line. Still getting error
>
>
> The use of the character """ may cause the voice browser to encounter a
> parsing or ECMA script problem when the insert element is visited.
>
> Let me know what need to modify to work with VxmlInsert element , The user
> guide is confusing..
>
> Please send me the working sample so that i can modify my end.
>
> Thanks,
> Phani.
>
> On Tue, Apr 3, 2012 at 10:03 PM, Cisco Developer Community Forums <
>
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > Yes, make sure as Janine stated. I checked the syntax of the vxml code
> > itself:
>
> > <?xml version="1.0" encoding="UTF-8"?>
> > <vxml version="2.1">
> > <menu dtmf="true">
> > <property name="inputmodes" value="dtmf"></property>
> > <prompt>Welcome to Track My Health.</prompt>
> > <prompt>Please choose a flow sheet.</prompt>
> > <prompt>For Heart Failure - Manual Entry, please press 1</prompt>
> > <choice dtmf="1" next="test.vxml"</choice>
> > </menu>
> > </vxml>
> >
> > This code itself seems ok from syntax perspective. What is the vxml
> > gateway version u are using > The voice browser for some reason is not
> > liking it.
> > Meanwhile remove this line just for testing purposes or just add:
> > <choice dtmf="1" next="test.vxml"</choice> and point to a simple
> test.vxml
> > file. See what happens.
>
> > Hemal
> >
> > ________________________________
> > From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
> > Sent: Tuesday, April 03, 2012 8:41 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Janine Graves in Customer Voice Portal (CVP) -
> > CVP - All Versions: Re: New Message from Phani Venigalla in Customer
> Voice
>
> > Portal (CVP) - CVP -
> >
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Did you read in the Studio Users Guide the pages about what has to be
> > included in your Vxml Insert for it to work? Try reading those pages and
> > modifying your code. Your VXML must be written as a subdialog and there
> are
> > many other requirements. I actually never got VXML Insert to work, but
> > sounds like Hemal did. On 4/3/2012 4:15 PM, Cisco Developer Community
>
> > Forums wrote: Phani Venigalla has created a new message in the forum
> "CVP -
> > All Versions":
> > -------------------------------------------------------------- I am
> using
>
> > VoiceXML insert element to execure dynamic VXML content I am getting
> > following error shown in activity log
> ,DynamicVxml,element,warning,WARNING:
> > The VoiceXML Insert element was passed a variable with a name or value of
> > "<?xml version="1.0" encoding="UTF-8"?><vxml version="2.1" xmlns="
> > http://www.w3.org/2001/vxml" xml:lang="en-US"> <menu dtmf="true">
> > <property name="inputmodes" value="dtmf"></property> <prompt>Welcome to
> > Track My Health.</prompt> <prompt>Please choose a flow sheet.</prompt>
> > <prompt>For Heart Failure<http://developer.cisco.com/html/js/editor/#>-
> > Manual Entry please press 1</prompt> <choice dtmf="1"
> > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Heart Failure -
> Manual
> > Entry</choice> </menu></vxml>". *The use of the character """ may cause
> the
> > voice browser to encounter a parsing or ECMA script problem when the
> insert
> > element is visited.*10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> > 10:54:22.497,DynamicVxml,interaction,audio_group,initial_audio_group
> > 10.9.13.79.1333468444763.479.MyMercy_Dev,04/03/2012
> > 10:54:22.497,DynamicVxml,element,error,error.badfetch On Mon, Apr 2, 2012
> > at 11:42 PM, Cisco Developer Community Forums <
> > cdicuser@developer.cisco.com> wrote: > Hemal Mehta has created a new
> > message in the forum "CVP - All Versions": > >
> > -------------------------------------------------------------- > If you
> > want to execute a vxml from studio, you can consider using VoiceXML >
> > insert element. > Hemal > ________________________________ > From: Cisco
> > Developer Community Forums [cdicuser@developer.cisco.com] > Sent:
> Monday,
> > April 02, 2012 10:32 PM > To: cdicuser@developer.cisco.com > Subject:
> New
> > Message from Phani Venigalla in Customer Voice Portal (CVP) - > CVP - All
> > Versions: Re: New Message from Hemal Mehta in Customer Voice > Portal
> (CVP)
> > - CVP - All > > Phani Venigalla has created a new message in the forum
> "CVP
> > - All > Versions": > >
> > -------------------------------------------------------------- > Instead
> of
> > parsing and splitting the code > > Can I execute vxml content directly
> from
> > callstudio... > On 02-Apr-2012 7:13 PM, "Cisco Developer Community
> Forums"
> > < > cdicuser@developer.cisco.com> wrote: > > > Hemal Mehta has created a
> > new message in the forum "CVP - All Versions": > > > >
> > -------------------------------------------------------------- > > You
> can
> > definetely do that. You will need to write a java class that > > parses
> > your vxml output and then put the text you require to be played t > >
> with
> > TTS. You can store that as a session variable. > > Hemal > >
> > ________________________________ > > From: Cisco Developer Community
> Forums
> > [cdicuser@developer.cisco.com] > > Sent: Monday, April 02, 2012 7:10 PM
> >
> > > To: cdicuser@developer.cisco.com > > Subject: New Message from Phani
> > Venigalla in Customer Voice Portal (CVP) > - > > CVP - All Versions: Re:
> > New Message from Janine Graves in Customer Voice > > Portal (CVP) - CVP
> - A
> > > > > > Phani Venigalla has created a new message in the forum "CVP -
> All >
> > > Versions": > > > >
> > -------------------------------------------------------------- > > I have
> > to use callstudio and nuance TTS for this project.. > > Can't we execute
> > dynamic vxml content generating from java in callstudio > > > > Phani > >
> > On 02-Apr-2012 6:50 PM, "Cisco Developer Community Forums" < > >
> > cdicuser@developer.cisco.com> wrote: > > > > > Janine Graves has created
> > a new message in the forum "CVP - All > > Versions": > > > > > >
> > -------------------------------------------------------------- > > > Why
> > are you using Studio and VXMLServer at all, if you have VXML being > > >
> > created by an app server already? Why not just send that VXML to the > >
> >
> > gateway, have the gateway return the response? On 4/2/2012 7:35 PM, >
> Cisco
> > > > > Developer Community Forums wrote: Phani Venigalla has created a
> new >
> > > message > > > in the forum "CVP - All Versions": > > >
> > -------------------------------------------------------------- Hi, >
> Thanks
> > > > > for your suggestions, But i am getting Response from URL as below.
> I
> > am > > > storing this response in sessionVariable. <?xml version="1.0" >
> >
> > > encoding="UTF-8"?> <vxml version="2.1" xmlns=" > >
> > http://www.w3.org/2001/vxml" > > > xml:lang="en-US"> <menu dtmf="true">
> > <property name="inputmodes" > > > value="dtmf"></property>
> <prompt>Welcome
> > to Track My Record.</prompt> > > > <prompt>Please choose a flow
> > sheet.</prompt> <prompt>For Exam Fail - > > Manual > > > Entry, please
> > press 1</prompt> <choice dtmf="1" > > >
> > next="/mychartdt/inside.asp?mode=pefltdtl&id=1">Exam Failure - >
> Manual
> > > > > Entry</choice> </menu> </vxml> This i need to read by using Nuance
> > TTS > > > engine and should be able to take user input,validated and
> > submitted. > All > > > business logic will be on Vxml backed system.
> > CVP/Nuance has to execute > > > vxml input coming from bakend system.
> > Please let me know. Thanks, > Phani. > > -- > > > To respond to this
> post,
> > please click the following link: < > > > > > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396309>
> > > > > > or simply reply to this email. -- Janine Graves > > > -- > > >
> > To respond to this post, please click the following link: > > > > > > <
> > >
> > > > > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396324>
> > > > > > > > > > or simply reply to this email. > > -- > > To respond to
> > this post, please click the following link: > > > > < > > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396346>
> > > > > > > or simply reply to this email. > > -- > > To respond to this
> > post, please click the following link: > > > > < > > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396348>
> > > > > > > or simply reply to this email. > -- > To respond to this
> > post, please click the following link: > > < >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5395927>
> > > > or simply reply to this email. > -- > To respond to this post,
> > please click the following link: > > < >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5396596>
> > > > or simply reply to this email. -- To respond to this post, please
> > click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400469
> >
> > or simply reply to this email. -- Janine Graves
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402909
>
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402959
>
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5400996>
>
>
>
> or simply reply to this email.
>
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 04-04-2012 12:01:16 PM
I think VoiceXML insert will not work for me.
Please let me know how to use Subdialog Invoke
I just need to excute somefile.vxml.
Thanks,
Phani.
On Wed, Apr 4, 2012 at 10:50 AM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> The notes I have state that the audium_* variables have to be present and
> omitting them isn't something I've ever bothered testing. The
> audium_exit_state variable is the only one you need to pay particular
> attention to with regard to the element settings. Any value you return in
> audium_exit_state must have a matching exit state defined in the VoiceXML
> Insert element settings.
>
> Paul
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402249
> >
>
> or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Paul Tindall on 04-04-2012 12:24:39 PM
You can't just use a variable containing the VoiceXML. The source must resolve to something/somewhere that the VoiceXML gateway can access via the URI in a <subdialog> element. By default, if the source VoiceXML document is set in the element as "my_vxml_doc.vxml" it will physically need to exist as ... Tomcat/webapps/CVP/my_vxml_doc.vxml.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 12:37:27 PM
You can't just use a variable containing the VoiceXML. The source must resolve to something/somewhere that the VoiceXML gateway can access via the URI in a <subdialog> element. By default, if the source VoiceXML document is set in the element as "my_vxml_doc.vxml" it will physically need to exist as ... Tomcat/webapps/CVP/my_vxml_doc.vxml.
If i use Subdialoginvoke where should i place my vxml files to assign as SubdialogURI.
I kept voiceXML file in thiis path http://10.9.13.79/CVP/VXMLServer/Tomcat/webapps/CVP/Flowsheet.vxml and Local application as Flase
The Flowsheet.vxml looks like
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press 1</prompt>
</menu>
</vxml>
Thnaks,
Phani/.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Paul Tindall on 04-04-2012 01:16:15 PM
You can specify either absolute or relative locations, it just has to be accessible to the VoiceXML gateway. If you use a relative location then I believe it will be relative to ...Tomcat/webapps/CVP/ just as it would for VoiceXML Insert. To be certain you can check the location the VoiceXML session is trying to access in a number of ways: sho http client hist, trace from debug http client msg, CVP sniffer trace, etc
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 04-04-2012 01:25:16 PM
Suppose i had a HelloWorld.vxml files in another server like in this url
http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets
How to specify this url in subdialog invoke element.
Do i need to follow same procedure as VXML insert as below.
<vxml version="2.0" application="/CVP/Server?audium_vxml_root=true*&*
calling_into=playrtsp*&*namelist=element_log_value">
On Wed, Apr 4, 2012 at 12:16 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> You can specify either absolute or relative locations, it just has to be
> accessible to the VoiceXML gateway. If you use a relative location then I
> believe it will be relative to ...Tomcat/webapps/CVP/ just as it would for
> VoiceXML Insert. To be certain you can check the location the VoiceXML
> session is trying to access in a number of ways: sho http client hist,
> trace from debug http client msg, CVP sniffer trace, etc
>
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404784>
>
>
>
> or simply reply to this email.
>
Subject: RE: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP
Replied by: Paul Tindall on 04-04-2012 01:35:15 PM
Set the element subdialog URI to the absolute location http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or whatever your specific example is. Just make sure w7-w8n943q1.smrcy.com is accessible to the VoiceXML gateway. Provided it's a valid VoiceXML subdialog, you don't have the same constraints on its format as you do with VoiceXML Insert.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 04-04-2012 01:46:16 PM
http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/ This URL is giving the
following response
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press
1</prompt>
</menu>
</vxml>
But in CVP activitylog it shown error.badfetch.405
Phani.
On Wed, Apr 4, 2012 at 12:40 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> So
>
> If the HelloWorld.vxml contains below format will it works
>
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <vxml version="2.1">
>
> <menu dtmf="true">
>
> <property name="inputmodes" value="dtmf"></property>
>
> <prompt>Welcome to Track My Health.</prompt>
>
> <prompt>Please choose a flow sheet.</prompt>
>
> <prompt>For Heart Failure - Manual Entry, please press
> 1</prompt>
>
> </menu>
>
> </vxml>
>
>
>
> Let me know
>
> Thanks,
>
> Phani.
>
>
> On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
>
> cdicuser@developer.cisco.com> wrote:
>
> > Paul Tindall has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > Set the element subdialog URI to the absolute location
> > http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> > whatever your specific example is. Just make sure
> w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a
> valid VoiceXML
> > subdialog, you don't have the same constraints on its format as you do
> with
> > VoiceXML Insert.
>
> >
> >
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796>
>
>
> >
> >
> >
> > or simply reply to this email.
> >
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490>
>
>
>
> or simply reply to this email.
>
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 04-04-2012 02:06:16 PM
Hi Hemal,
Where do i check that what versions of IOS gateway i am using.
Phani.
On Wed, Apr 4, 2012 at 12:56 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> The vxml syntax is fine and the vxml browser should not throw any errors.
> What version of IOS gateway do you have ?
>
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Wednesday, April 04, 2012 12:40 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Paul Tindall in Customer Voice
> Portal (CVP) - CVP - Al
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> So
>
> If the HelloWorld.vxml contains below format will it works
>
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <vxml version="2.1">
>
> <menu dtmf="true">
>
> <property name="inputmodes" value="dtmf"></property>
>
> <prompt>Welcome to Track My Health.</prompt>
>
> <prompt>Please choose a flow sheet.</prompt>
>
> <prompt>For Heart Failure - Manual Entry, please press
> 1</prompt>
>
> </menu>
>
> </vxml>
>
>
>
> Let me know
>
> Thanks,
>
> Phani.
>
>
> On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Paul Tindall has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > Set the element subdialog URI to the absolute location
> > http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> > whatever your specific example is. Just make sure
> w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a
> valid VoiceXML
> > subdialog, you don't have the same constraints on its format as you do
> with
> > VoiceXML Insert.
> >
> >
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796
> >
> >
> >
> >
> > or simply reply to this email.
> >
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406520
> >
>
> or simply reply to this email.
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Hemal Mehta on 04-04-2012 02:17:16 PM
Yes, vxml is fine. Badfetch is showing something else
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, April 04, 2012 1:10 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Janine Graves has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
I used the vxml code below and put the code into a file C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72)
In the Subdialog invoke element I configured
SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml
Local Application:false
(I left Parameter and Return Value empty)
This all worked just fine.
test.vxml:
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<prompt>Enter some digits</prompt>
<filled>
you entered <value expr="test"/>
<return/>
</filled>
</field>
</form>
</vxml>
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 02:39:16 PM
Why don't you just try replacing your menu with my code below. Perhaps the gateway doesn't like a menu with 1 option. Also you need a return statement or your license will be hung on VxmlServer for 30 minutes. When I omit the return statement, my subdialog invoke works, but I do get an error in the log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I follow the same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxml I tested the by accessing from Internet explorer the vxml file is getting shown. I tried with LoacalApplication : True and False. Call gets dropped at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > I used the vxml code below and put the code into a file > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > In the Subdialog invoke element I configured > SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left Parameter and Return Value empty) > > This all worked just fine. > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field name="test" type="digits"> > <property name="inputmodes" value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > you entered <value expr="test"/> > <return/> > </filled> > </field> > </form> > </vxml> > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 02:47:16 PM
I am using your code only...I did what ever you suggeested in the previous
discussions.
On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Why don't you just try replacing your menu with my code below. Perhaps the
> gateway doesn't like a menu with 1 option. Also you need a return statement
> or your license will be hung on VxmlServer for 30 minutes. When I omit the
> return statement, my subdialog invoke works, but I do get an error in the
> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani
> Venigalla has created a new message in the forum "CVP - All Versions":
> -------------------------------------------------------------- I follow the
> same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from Internet explorer the vxml file is getting
> shown. I tried with LoacalApplication : True and False. Call gets dropped
> at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr
> 4, 2012 at 1:09 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
> message in the forum "CVP - All Versions": > >
> -------------------------------------------------------------- > I used the
> vxml code below and put the code into a file >
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
> > In the Subdialog invoke element I configured > SubdialogUIR:
> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left
> Parameter and Return Value empty) > > This all worked just fine. > >
> test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field
> name="test" type="digits"> > <property name="inputmodes"
> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
> you entered <value expr="test"/> > <return/> > </filled> > </field> >
> </form> > </vxml> > -- > To respond to this post, please click the
> following link: > > < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> > > > or simply reply to this email. -- To respond to this post, please
> click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933
> >
>
> or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 02:57:16 PM
Before the subdialog invoke i used audio element saying " Please select
from following".. then in subdialog invoke i am calling your code.,
I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well.
On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> With my code, you don't hear the TTS speaking from the test.vxml code? It
> works on my CVP8 system. What version of Studio and VXmlServer do you
> have?Back in CVP 7, you needed an Audio element to play to caller (say
> hello or something) before using a Subdialog Invoke element. On 4/4/2012
> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
> created a new message in the forum "CVP - All Versions":
> -------------------------------------------------------------- I am using
> your code only...I did what ever you suggeested in the previous
> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created
> a new message in the forum "CVP - All Versions": > >
> -------------------------------------------------------------- > Why don't
> you just try replacing your menu with my code below. Perhaps the > gateway
> doesn't like a menu with 1 option. Also you need a return statement > or
> your license will be hung on VxmlServer for 30 minutes. When I omit the >
> return statement, my subdialog invoke works, but I do get an error in the >
> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani >
> Venigalla has created a new message in the forum "CVP - All Versions": >
> -------------------------------------------------------------- I follow the
> > same and gave Subdialog URI as
> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from
> Internet explorer the vxml file is getting > shown. I tried with
> LoacalApplication : True and False. Call gets dropped > at the Subdialog
> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at
> 1:09 PM, Cisco Developer Community Forums < > cdicuser@developer.cisco.com>
> wrote: > Janine Graves has created a new > message in the forum "CVP - All
> Versions": > > >
> -------------------------------------------------------------- > I used the
> > vxml code below and put the code into a file > >
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left
> > Parameter and Return Value empty) > > This all worked just fine. > > >
> test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field
> > name="test" type="digits"> > <property name="inputmodes" >
> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
> > you entered <value expr="test"/> > <return/> > </filled> > </field> > >
> </form> > </vxml> > -- > To respond to this post, please click the >
> following link: > > < > >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
> > > > or simply reply to this email. -- To respond to this post, please >
> click the following link: < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
> > or simply reply to this email. -- Janine Graves > -- > To respond to this
> post, please click the following link: > > < >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please
> click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667
> >
>
> or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 03:59:16 PM
I placed audio file insted of TTS it played but after sometime i tried to
excute then its silent again...
On Wed, Apr 4, 2012 at 2:11 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I configured "test" in return value.
>
> I am not understanding why its getting so longer to show in activity log.
>
> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla <
> phani.venigalla@gmail.com> wrote:
>
>> Before the subdialog invoke i used audio element saying " Please select
>> from following".. then in subdialog invoke i am calling your code.,
>>
>> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well.
>>
>> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums <
>> cdicuser@developer.cisco.com> wrote:
>>
>>> Janine Graves has created a new message in the forum "CVP - All
>>> Versions":
>>>
>>> --------------------------------------------------------------
>>> With my code, you don't hear the TTS speaking from the test.vxml code?
>>> It works on my CVP8 system. What version of Studio and VXmlServer do you
>>> have?Back in CVP 7, you needed an Audio element to play to caller (say
>>> hello or something) before using a Subdialog Invoke element. On 4/4/2012
>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
>>> created a new message in the forum "CVP - All Versions":
>>> -------------------------------------------------------------- I am using
>>> your code only...I did what ever you suggeested in the previous
>>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
>>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has
>>> created a new message in the forum "CVP - All Versions": > >
>>> -------------------------------------------------------------- > Why don't
>>> you just try replacing your menu with my code below. Perhaps the > gateway
>>> doesn't like a menu with 1 option. Also you need a return statement > or
>>> your license will be hung on VxmlServer for 30 minutes. When I omit the >
>>> return statement, my subdialog invoke works, but I do get an error in the >
>>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani >
>>> Venigalla has created a new message in the forum "CVP - All Versions": >
>>> -------------------------------------------------------------- I follow the
>>> > same and gave Subdialog URI as
>>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from
>>> Internet explorer the vxml file is getting > shown. I tried with
>>> LoacalApplication : True and False. Call gets dropped > at the Subdialog
>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at
>>> 1:09 PM, Cisco Developer Community Forums < >
>>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
>>> > message in the forum "CVP - All Versions": > > >
>>> -------------------------------------------------------------- > I used the
>>> > vxml code below and put the code into a file > >
>>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
>>> left > Parameter and Return Value empty) > > This all worked just fine. > >
>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> >
>>> <field > name="test" type="digits"> > <property name="inputmodes" >
>>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
>>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > >
>>> </form> > </vxml> > -- > To respond to this post, please click the >
>>> following link: > > < > >
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
>>> > > > or simply reply to this email. -- To respond to this post, please >
>>> click the following link: < >
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
>>> > or simply reply to this email. -- Janine Graves > -- > To respond to this
>>> post, please click the following link: > > < >
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please
>>> click the following link: <
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
>>> or simply reply to this email. -- Janine Graves
>>> --
>>> To respond to this post, please click the following link:
>>>
>>> <
>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667
>>> >
>>>
>>> or simply reply to this email.
>>
>>
>>
>
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 04-04-2012 04:48:16 PM
All you need to do is deploy your app with new settings of lower timeout value and just test again, u will see the results in few mins
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, April 04, 2012 3:43 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
there are still some files showing zero bytes in Activity log..Shall wait
till those files update for testing agian...
On Wed, Apr 4, 2012 at 3:38 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Go into the Studio application, right click on the app name in the
> Navigator window, go to Properties > Call Studio > General Settings. Change
> the SessionTimeout to 3 - then it'll log after 3 minutes if the license 'is
> hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM, Cisco
> Developer Community Forums wrote: Phani Venigalla has created a new message
> in the forum "CVP - All Versions":
> -------------------------------------------------------------- Its keep on
> sending in error log VoiceXML Session timeout occurred at element Subdialog
> Invoke_01: A session has timed out after 30 minutes. This is most likely
> caused by a start of call class or action element at the top of the
> callflow not completing before the voice browser's fetch timeout occurred.
> To resolve it ensure this class executes in a timely manner or run it in
> the background. Session timeouts may also occur under high load or if there
> are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at
> 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed
> audio file insted of TTS it played but after sometime i tried to > excute
> then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani
> Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test"
> in return value. >> >> I am not understanding why its getting so longer to
> show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla
> < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog invoke
> i used audio element saying " Please select >>> from following".. then in
> subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1) and
> vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at
> 1:51 PM, Cisco Developer Community Forums < >>>
> cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created a
> new message in the forum "CVP - All >>>> Versions": >>>> >>>>
> -------------------------------------------------------------- >>>> With my
> code, you don't hear the TTS speaking from the test.vxml code? >>>> It
> works on my CVP8 system. What version of Studio and VXmlServer do you >>>>
> have?Back in CVP 7, you needed an Audio element to play to caller (say >>>>
> hello or something) before using a Subdialog Invoke element. On 4/4/2012
> >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
> >>>> created a new message in the forum "CVP - All Versions": >>>>
> -------------------------------------------------------------- I am using
> >>>> your code only...I did what ever you suggeested in the previous >>>>
> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community >>>>
> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>>
> created a new message in the forum "CVP - All Versions": > > >>>>
> -------------------------------------------------------------- > Why don't
> >>>> you just try replacing your menu with my code below. Perhaps the >
> gateway >>>> doesn't like a menu with 1 option. Also you need a return
> statement > or >>>> your license will be hung on VxmlServer for 30 minutes.
> When I omit the > >>>> return statement, my subdialog invoke works, but I
> do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer
> Community Forums wrote: Phani > >>>> Venigalla has created a new message in
> the forum "CVP - All Versions": > >>>>
> -------------------------------------------------------------- I follow the
> >>>> > same and gave Subdialog URI as >>>>
> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>>
> from Internet explorer the vxml file is getting > shown. I tried with >>>>
> LoacalApplication : True and False. Call gets dropped > at the Subdialog
> >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012
> at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>>
> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
> >>>> > message in the forum "CVP - All Versions": > > > >>>>
> -------------------------------------------------------------- > I used the
> >>>> > vxml code below and put the code into a file > > >>>>
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
> >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
> >>>> left > Parameter and Return Value empty) > > This all worked just
> fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0">
> > <form> > >>>> <field > name="test" type="digits"> > <property
> name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some
> digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> >
> <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To
> respond to this post, please click the > >>>> following link: > > < > >
> >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
> >>>> > > > or simply reply to this email. -- To respond to this post,
> please > >>>> click the following link: < > >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
> >>>> > or simply reply to this email. -- Janine Graves > -- > To respond to
> this >>>> post, please click the following link: > > < > >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933>
> > > > or simply reply to this email. -- To respond to this post, please
> >>>> click the following link: < >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
> >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To
> respond to this post, please click the following link: >>>> >>>> < >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667>>>> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To
> respond to this post, please click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406907
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406915>
or simply reply to this email.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 04-04-2012 05:11:16 PM
This time it shows this message
ubdialog Invoke_01,element,warning,A session has timed out after 3 minutes.
This is most likely caused by a start of call class or action element at
the top of the callflow not completing before the voice browser's fetch
timeout occurred. To resolve it ensure this class executes in a timely
manner or run it in the background. Session timeouts may also occur under
high load or if there are issues with a load balancer or voice browser.
10.9.13.79.1333573206723.561.MyMercy_Dev,04/04/2012
16:03:45.880,,end,how,app_session_complete
10.9.13.79.1333573206723.561.MyMercy_Dev,04/04/2012
16:03:45.880,,end,result,timeout
But the functionality doesn't work.
On Wed, Apr 4, 2012 at 3:48 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> All you need to do is deploy your app with new settings of lower timeout
> value and just test again, u will see the results in few mins
>
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Wednesday, April 04, 2012 3:43 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Janine Graves in Customer Voice
> Portal (CVP) - CVP - A
>
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> there are still some files showing zero bytes in Activity log..Shall wait
> till those files update for testing agian...
>
> On Wed, Apr 4, 2012 at 3:38 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Go into the Studio application, right click on the app name in the
> > Navigator window, go to Properties > Call Studio > General Settings.
> Change
> > the SessionTimeout to 3 - then it'll log after 3 minutes if the license
> 'is
> > hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM,
> Cisco
> > Developer Community Forums wrote: Phani Venigalla has created a new
> message
>
> > in the forum "CVP - All Versions":
> > -------------------------------------------------------------- Its keep
> on
> > sending in error log VoiceXML Session timeout occurred at element
> Subdialog
> > Invoke_01: A session has timed out after 30 minutes. This is most likely
> > caused by a start of call class or action element at the top of the
> > callflow not completing before the voice browser's fetch timeout
> occurred.
> > To resolve it ensure this class executes in a timely manner or run it in
> > the background. Session timeouts may also occur under high load or if
> there
> > are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at
> > 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed
> > audio file insted of TTS it played but after sometime i tried to > excute
> > then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani
> > Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test"
> > in return value. >> >> I am not understanding why its getting so longer
> to
> > show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani
> Venigalla
> > < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog
> invoke
> > i used audio element saying " Please select >>> from following".. then in
> > subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1)
> and
> > vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at
> > 1:51 PM, Cisco Developer Community Forums < >>>
> > cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created
> a
>
> > new message in the forum "CVP - All >>>> Versions": >>>> >>>>
> > -------------------------------------------------------------- >>>> With
> my
> > code, you don't hear the TTS speaking from the test.vxml code? >>>> It
> > works on my CVP8 system. What version of Studio and VXmlServer do you
> >>>>
> > have?Back in CVP 7, you needed an Audio element to play to caller (say
> >>>>
> > hello or something) before using a Subdialog Invoke element. On 4/4/2012
> > >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla
> has
>
> > >>>> created a new message in the forum "CVP - All Versions": >>>>
> > -------------------------------------------------------------- I am using
> > >>>> your code only...I did what ever you suggeested in the previous >>>>
> > discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
> >>>>
> > Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>>
>
> > created a new message in the forum "CVP - All Versions": > > >>>>
> > -------------------------------------------------------------- > Why
> don't
> > >>>> you just try replacing your menu with my code below. Perhaps the >
> > gateway >>>> doesn't like a menu with 1 option. Also you need a return
> > statement > or >>>> your license will be hung on VxmlServer for 30
> minutes.
> > When I omit the > >>>> return statement, my subdialog invoke works, but I
> > do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer
> > Community Forums wrote: Phani > >>>> Venigalla has created a new message
> in
>
> > the forum "CVP - All Versions": > >>>>
> > -------------------------------------------------------------- I follow
> the
> > >>>> > same and gave Subdialog URI as >>>>
> > http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>>
> > from Internet explorer the vxml file is getting > shown. I tried with
> >>>>
> > LoacalApplication : True and False. Call gets dropped > at the Subdialog
> > >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012
> > at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>>
> > cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
>
> > >>>> > message in the forum "CVP - All Versions": > > > >>>>
> > -------------------------------------------------------------- > I used
> the
> > >>>> > vxml code below and put the code into a file > > >>>>
> > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address
> 10.1.78.72) >
> > >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> > >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
> > >>>> left > Parameter and Return Value empty) > > This all worked just
> > fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml
> version="2.0">
> > > <form> > >>>> <field > name="test" type="digits"> > <property
> > name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some
> > digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> >
> > <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To
>
> > respond to this post, please click the > >>>> following link: > > < > >
> > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
>
>
> > >>>> > > > or simply reply to this email. -- To respond to this post,
> > please > >>>> click the following link: < > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589
> >
> > >>>> > or simply reply to this email. -- Janine Graves > -- > To respond
> to
>
> > this >>>> post, please click the following link: > > < > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933>
>
>
> > > > > or simply reply to this email. -- To respond to this post, please
> > >>>> click the following link: < >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957
> >
> > >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To
>
> > respond to this post, please click the following link: >>>> >>>> < >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667>>>>
> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To
>
> > respond to this post, please click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872
> >
> > or simply reply to this email. -- Janine Graves
>
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406907
>
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406915>
>
>
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405280>
>
>
>
> or simply reply to this email.
>
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 06:03:32 PM
Go into the Studio application, right click on the app name in the Navigator window, go to Properties > Call Studio > General Settings. Change the SessionTimeout to 3 - then it'll log after 3 minutes if the license 'is hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Its keep on sending in error log VoiceXML Session timeout occurred at element Subdialog Invoke_01: A session has timed out after 30 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed audio file insted of TTS it played but after sometime i tried to > excute then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test" in return value. >> >> I am not understanding why its getting so longer to show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog invoke i used audio element saying " Please select >>> from following".. then in subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums < >>> cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created a new message in the forum "CVP - All >>>> Versions": >>>> >>>> -------------------------------------------------------------- >>>> With my code, you don't hear the TTS speaking from the test.vxml code? >>>> It works on my CVP8 system. What version of Studio and VXmlServer do you >>>> have?Back in CVP 7, you needed an Audio element to play to caller (say >>>> hello or something) before using a Subdialog Invoke element. On 4/4/2012 >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has >>>> created a new message in the forum "CVP - All Versions": >>>> -------------------------------------------------------------- I am using >>>> your code only...I did what ever you suggeested in the previous >>>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community >>>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>> created a new message in the forum "CVP - All Versions": > > >>>> -------------------------------------------------------------- > Why don't >>>> you just try replacing your menu with my code below. Perhaps the > gateway >>>> doesn't like a menu with 1 option. Also you need a return statement > or >>>> your license will be hung on VxmlServer for 30 minutes. When I omit the > >>>> return statement, my subdialog invoke works, but I do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani > >>>> Venigalla has created a new message in the forum "CVP - All Versions": > >>>> -------------------------------------------------------------- I follow the >>>> > same and gave Subdialog URI as >>>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>> from Internet explorer the vxml file is getting > shown. I tried with >>>> LoacalApplication : True and False. Call gets dropped > at the Subdialog >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new >>>> > message in the forum "CVP - All Versions": > > > >>>> -------------------------------------------------------------- > I used the >>>> > vxml code below and put the code into a file > > >>>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: > >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I >>>> left > Parameter and Return Value empty) > > This all worked just fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > >>>> <field > name="test" type="digits"> > <property name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To respond to this post, please click the > >>>> following link: > > < > > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> >>>> > > > or simply reply to this email. -- To respond to this post, please > >>>> click the following link: < > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> >>>> > or simply reply to this email. -- Janine Graves > -- > To respond to this >>>> post, please click the following link: > > < > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please >>>> click the following link: < >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957> >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To respond to this post, please click the following link: >>>> >>>> < >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667 >>>> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872> or simply reply to this email. -- Janine Graves
For some reason i couldn't able to execute he Subdialog Invoke. Its juat simple VXML file. I dont know its not getting access the URL.
Please help me to work this.
Its keep on giving this error in Error log and Activity log.
0.9.13.79.1333576343952.570.MyMercy_Dev,04/04/2012 16:56:15.889,A VoiceXML Session timeout occurred at element Subdialog Invoke_01: A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 07:20:15 PM
Why don't you just try replacing your menu with my code below. Perhaps the gateway doesn't like a menu with 1 option. Also you need a return statement or your license will be hung on VxmlServer for 30 minutes. When I omit the return statement, my subdialog invoke works, but I do get an error in the log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I follow the same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxml I tested the by accessing from Internet explorer the vxml file is getting shown. I tried with LoacalApplication : True and False. Call gets dropped at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > I used the vxml code below and put the code into a file > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > In the Subdialog invoke element I configured > SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left Parameter and Return Value empty) > > This all worked just fine. > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field name="test" type="digits"> > <property name="inputmodes" value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > you entered <value expr="test"/> > <return/> > </filled> > </field> > </form> > </vxml> > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> or simply reply to this email. -- Janine Graves
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 04-04-2012 07:33:16 PM
Hey Phani Venigalla,
What sort of email client are you using?
Your posts to the forum through your email client come to me as just one line – no line breaks, no paragraphs etc. Very hard to read. Can you rectify this please?
Regards,
Geoff
--------------------------------------------------------------------
Geoff Thompson Unified Contact Center Practice
Email: geoff@hp.com HP Technology Consulting
Phone: +1.408.447.4297 Hewlett-Packard Company
Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
____________________________________________________________________
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 04-04-2012 07:45:16 PM
Why are you posting twice?
Regards,
Geoff
Subject: Pls unregister me from forum
Replied by: ERWAN TJIA on 04-04-2012 07:45:17 PM
Sent from my iPhone
On 2012-04-04, at 5:42 PM, "Cisco Developer Community Forums" <cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> I am using Gmail and just publishing in Cisco forums.
>
> On Wed, Apr 4, 2012 at 6:33 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > Hey Phani Venigalla,
> >
> > What sort of email client are you using?
> >
> > Your posts to the forum through your email client come to me as just one
> > line – no line breaks, no paragraphs etc. Very hard to read. Can you
> > rectify this please?
> >
> > Regards,
> > Geoff
> > --------------------------------------------------------------------
> > Geoff Thompson Unified Contact Center Practice
> > Email: geoff@hp.com HP Technology Consulting
> > Phone: +1.408.447.4297 Hewlett-Packard Company
> > Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> > ____________________________________________________________________
> > --
> > To respond to this post, please click the following link:
> >
> > <
> > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405517
> > >
> >
> > or simply reply to this email.
>
>
> This is my issue with subdialoginvoke
>
> I could able to execute once subdialoginvoke element but later its keep on giving this erroe
>
> 10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,Subdialog Invoke_01,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
> 10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,,end,how,app_session_complete
>
> Let me know whats wrong with it
>
> Thanks,
> Phani
>
> --
> To respond to this post, please click the following link:
>
> <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5407191>
>
> or simply reply to this email.
Subject: Re: New Message from ERWAN TJIA in Customer Voice Portal (CVP) - CVP - All
Replied by: ERWAN TJIA on 04-04-2012 07:48:16 PM
Anyone know how to unregister from this forum? So nor spam by the email from here.
Tks
Sent from my iPhone
On 2012-04-04, at 5:46 PM, "Cisco Developer Community Forums" <cdicuser@developer.cisco.com> wrote:
> ERWAN TJIA has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Sent from my iPhone
>
> On 2012-04-04, at 5:42 PM, "Cisco Developer Community Forums" <cdicuser@developer.cisco.com> wrote:
>
> > Phani Venigalla has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > I am using Gmail and just publishing in Cisco forums.
> >
> > On Wed, Apr 4, 2012 at 6:33 PM, Cisco Developer Community Forums <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> > > Versions":
> > >
> > > --------------------------------------------------------------
> > > Hey Phani Venigalla,
> > >
> > > What sort of email client are you using?
> > >
> > > Your posts to the forum through your email client come to me as just one
> > > line – no line breaks, no paragraphs etc. Very hard to read. Can you
> > > rectify this please?
> > >
> > > Regards,
> > > Geoff
> > > --------------------------------------------------------------------
> > > Geoff Thompson Unified Contact Center Practice
> > > Email: geoff@hp.com HP Technology Consulting
> > > Phone: +1.408.447.4297 Hewlett-Packard Company
> > > Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> > > ____________________________________________________________________
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405517
> > > >
> > >
> > > or simply reply to this email.
> >
> >
> > This is my issue with subdialoginvoke
> >
> > I could able to execute once subdialoginvoke element but later its keep on giving this erroe
> >
> > 10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,Subdialog Invoke_01,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
> > 10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,,end,how,app_session_complete
> >
> > Let me know whats wrong with it
> >
> > Thanks,
> > Phani
> >
> > --
> > To respond to this post, please click the following link:
> >
> > <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5407191>
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405535>
>
> or simply reply to this email.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 04-04-2012 08:38:16 PM
Phani Venigalla what’s the point of your post? Didn’t you read my previous post about trying to make the forum less like spam?
You have quoted Janine’s unreadable post to make another unreadable post - and have added no words of you own. It’s becoming tiresome.
Regards,
Geoff
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 04-04-2012 01:40:16 PM
So
If the HelloWorld.vxml contains below format will it works
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press
1</prompt>
</menu>
</vxml>
Let me know
Thanks,
Phani.
On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Set the element subdialog URI to the absolute location
> http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> whatever your specific example is. Just make sure w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a valid VoiceXML
> subdialog, you don't have the same constraints on its format as you do with
> VoiceXML Insert.
>
>
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796>
>
>
>
> or simply reply to this email.
>
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 04-04-2012 01:56:16 PM
The vxml syntax is fine and the vxml browser should not throw any errors. What version of IOS gateway do you have ?
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, April 04, 2012 12:40 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
So
If the HelloWorld.vxml contains below format will it works
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1">
<menu dtmf="true">
<property name="inputmodes" value="dtmf"></property>
<prompt>Welcome to Track My Health.</prompt>
<prompt>Please choose a flow sheet.</prompt>
<prompt>For Heart Failure - Manual Entry, please press
1</prompt>
</menu>
</vxml>
Let me know
Thanks,
Phani.
On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Paul Tindall has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Set the element subdialog URI to the absolute location
> http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> whatever your specific example is. Just make sure w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a valid VoiceXML
> subdialog, you don't have the same constraints on its format as you do with
> VoiceXML Insert.
>
>
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796>
>
>
>
> or simply reply to this email.
>
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490>
or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 04-04-2012 02:09:34 PM
I used the vxml code below and put the code into a file C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72)
In the Subdialog invoke element I configured
SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml
Local Application:false
(I left Parameter and Return Value empty)
This all worked just fine.
test.vxml:
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<prompt>Enter some digits</prompt>
<filled>
you entered <value expr="test"/>
<return/>
</filled>
</field>
</form>
</vxml>
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 04-04-2012 02:16:16 PM
Run show version on vxml gateway.
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, April 04, 2012 1:06 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Hi Hemal,
Where do i check that what versions of IOS gateway i am using.
Phani.
On Wed, Apr 4, 2012 at 12:56 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> The vxml syntax is fine and the vxml browser should not throw any errors.
> What version of IOS gateway do you have ?
>
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Wednesday, April 04, 2012 12:40 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Paul Tindall in Customer Voice
> Portal (CVP) - CVP - Al
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> So
>
> If the HelloWorld.vxml contains below format will it works
>
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <vxml version="2.1">
>
> <menu dtmf="true">
>
> <property name="inputmodes" value="dtmf"></property>
>
> <prompt>Welcome to Track My Health.</prompt>
>
> <prompt>Please choose a flow sheet.</prompt>
>
> <prompt>For Heart Failure - Manual Entry, please press
> 1</prompt>
>
> </menu>
>
> </vxml>
>
>
>
> Let me know
>
> Thanks,
>
> Phani.
>
>
> On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Paul Tindall has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > Set the element subdialog URI to the absolute location
> > http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> > whatever your specific example is. Just make sure
> w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided it's a
> valid VoiceXML
> > subdialog, you don't have the same constraints on its format as you do
> with
> > VoiceXML Insert.
> >
> >
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796
> >
> >
> >
> >
> > or simply reply to this email.
> >
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406520
> >
>
> or simply reply to this email.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404867>
or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 02:27:17 PM
I follow the same and gave Subdialog URI as
http://10.9.13.79:7000/CVP/FlowSheet.vxml
I tested the by accessing from Internet explorer the vxml file is getting
shown.
I tried with LoacalApplication : True and False.
Call gets dropped at the Subdialog Invoke and Activity log file shown Zero
bytes.
On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> I used the vxml code below and put the code into a file
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72)
>
> In the Subdialog invoke element I configured
> SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml
> Local Application:false
> (I left Parameter and Return Value empty)
>
> This all worked just fine.
>
> test.vxml:
> <?xml version="1.0"?>
> <vxml version="2.0">
> <form>
> <field name="test" type="digits">
> <property name="inputmodes" value="dtmf"></property>
> <prompt>Enter some digits</prompt>
> <filled>
> you entered <value expr="test"/>
> <return/>
> </filled>
> </field>
> </form>
> </vxml>
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548
> >
>
> or simply reply to this email.
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 02:35:16 PM
This is the error i am getting in log
nvoke_01,element,warning,A session has timed out after 30 minutes. This is
most likely caused by a start of call class or action element at the top of
the callflow not completing before the voice browser's fetch timeout
occurred. To resolve it ensure this class executes in a timely manner or
run it in the background. Session timeouts may also occur under high load
or if there are issues with a load balancer or voice browser.
10.9.13.79.1333556623833.520.MyMercy_Dev,04/04/2012
11:54:15.880,,end,how,app_session_complete
On Wed, Apr 4, 2012 at 1:26 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I follow the same and gave Subdialog URI as
> http://10.9.13.79:7000/CVP/FlowSheet.vxml
>
> I tested the by accessing from Internet explorer the vxml file is getting
> shown.
>
> I tried with LoacalApplication : True and False.
>
> Call gets dropped at the Subdialog Invoke and Activity log file shown Zero
> bytes.
>
>
>
> On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> Janine Graves has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> I used the vxml code below and put the code into a file
>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72)
>>
>> In the Subdialog invoke element I configured
>> SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml
>> Local Application:false
>> (I left Parameter and Return Value empty)
>>
>> This all worked just fine.
>>
>> test.vxml:
>> <?xml version="1.0"?>
>> <vxml version="2.0">
>> <form>
>> <field name="test" type="digits">
>> <property name="inputmodes" value="dtmf"></property>
>> <prompt>Enter some digits</prompt>
>> <filled>
>> you entered <value expr="test"/>
>> <return/>
>> </filled>
>> </field>
>> </form>
>> </vxml>
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 02:46:16 PM
that's because your code doesn't have a return statement. On 4/4/2012 12:35 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- This is the error i am getting in log nvoke_01,element,warning,A session has timed out after 30 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser. 10.9.13.79.1333556623833.520.MyMercy_Dev,04/04/2012 11:54:15.880,,end,how,app_session_complete On Wed, Apr 4, 2012 at 1:26 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I follow the same and gave Subdialog URI as > http://10.9.13.79:7000/CVP/FlowSheet.vxml > > I tested the by accessing from Internet explorer the vxml file is getting > shown. > > I tried with LoacalApplication : True and False. > > Call gets dropped at the Subdialog Invoke and Activity log file shown Zero > bytes. > > > > On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums < > cdicuser@developer.cisco.com> wrote: > >> Janine Graves has created a new message in the forum "CVP - All Versions": >> >> -------------------------------------------------------------- >> I used the vxml code below and put the code into a file >> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >> >> In the Subdialog invoke element I configured >> SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml >> Local Application:false >> (I left Parameter and Return Value empty) >> >> This all worked just fine. >> >> test.vxml: >> <?xml version="1.0"?> >> <vxml version="2.0"> >> <form> >> <field name="test" type="digits"> >> <property name="inputmodes" value="dtmf"></property> >> <prompt>Enter some digits</prompt> >> <filled> >> you entered <value expr="test"/> >> <return/> >> </filled> >> </field> >> </form> >> </vxml> >> -- >> To respond to this post, please click the following link: >> >> < >> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548 >> > >> >> or simply reply to this email. > > > -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406620> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 02:51:16 PM
With my code, you don't hear the TTS speaking from the test.vxml code? It works on my CVP8 system. What version of Studio and VXmlServer do you have?Back in CVP 7, you needed an Audio element to play to caller (say hello or something) before using a Subdialog Invoke element. On 4/4/2012 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I am using your code only...I did what ever you suggeested in the previous discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > Why don't you just try replacing your menu with my code below. Perhaps the > gateway doesn't like a menu with 1 option. Also you need a return statement > or your license will be hung on VxmlServer for 30 minutes. When I omit the > return statement, my subdialog invoke works, but I do get an error in the > log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani > Venigalla has created a new message in the forum "CVP - All Versions": > -------------------------------------------------------------- I follow the > same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from Internet explorer the vxml file is getting > shown. I tried with LoacalApplication : True and False. Call gets dropped > at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at 1:09 PM, Cisco Developer Community Forums < > cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new > message in the forum "CVP - All Versions": > > > -------------------------------------------------------------- > I used the > vxml code below and put the code into a file > > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > > In the Subdialog invoke element I configured > SubdialogUIR: > http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left > Parameter and Return Value empty) > > This all worked just fine. > > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field > name="test" type="digits"> > <property name="inputmodes" > value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > > you entered <value expr="test"/> > <return/> > </filled> > </field> > > </form> > </vxml> > -- > To respond to this post, please click the > following link: > > < > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> > > > or simply reply to this email. -- To respond to this post, please > click the following link: < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> > or simply reply to this email. -- Janine Graves > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 02:53:16 PM
Also, back on CVP7, you HAD to return a variable in the return statement and then configure that variable name in the SubdialogInvoke element on the Return setting line. On 4/4/2012 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I am using your code only...I did what ever you suggeested in the previous discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > Why don't you just try replacing your menu with my code below. Perhaps the > gateway doesn't like a menu with 1 option. Also you need a return statement > or your license will be hung on VxmlServer for 30 minutes. When I omit the > return statement, my subdialog invoke works, but I do get an error in the > log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani > Venigalla has created a new message in the forum "CVP - All Versions": > -------------------------------------------------------------- I follow the > same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from Internet explorer the vxml file is getting > shown. I tried with LoacalApplication : True and False. Call gets dropped > at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at 1:09 PM, Cisco Developer Community Forums < > cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new > message in the forum "CVP - All Versions": > > > -------------------------------------------------------------- > I used the > vxml code below and put the code into a file > > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > > In the Subdialog invoke element I configured > SubdialogUIR: > http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left > Parameter and Return Value empty) > > This all worked just fine. > > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field > name="test" type="digits"> > <property name="inputmodes" > value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > > you entered <value expr="test"/> > <return/> > </filled> > </field> > > </form> > </vxml> > -- > To respond to this post, please click the > following link: > > < > > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> > > > or simply reply to this email. -- To respond to this post, please > click the following link: < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> > or simply reply to this email. -- Janine Graves > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 03:11:16 PM
I configured "test" in return value.
I am not understanding why its getting so longer to show in activity log.
On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> Before the subdialog invoke i used audio element saying " Please select
> from following".. then in subdialog invoke i am calling your code.,
>
> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well.
>
> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> Janine Graves has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> With my code, you don't hear the TTS speaking from the test.vxml code? It
>> works on my CVP8 system. What version of Studio and VXmlServer do you
>> have?Back in CVP 7, you needed an Audio element to play to caller (say
>> hello or something) before using a Subdialog Invoke element. On 4/4/2012
>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
>> created a new message in the forum "CVP - All Versions":
>> -------------------------------------------------------------- I am using
>> your code only...I did what ever you suggeested in the previous
>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has
>> created a new message in the forum "CVP - All Versions": > >
>> -------------------------------------------------------------- > Why don't
>> you just try replacing your menu with my code below. Perhaps the > gateway
>> doesn't like a menu with 1 option. Also you need a return statement > or
>> your license will be hung on VxmlServer for 30 minutes. When I omit the >
>> return statement, my subdialog invoke works, but I do get an error in the >
>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani >
>> Venigalla has created a new message in the forum "CVP - All Versions": >
>> -------------------------------------------------------------- I follow the
>> > same and gave Subdialog URI as
>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing from
>> Internet explorer the vxml file is getting > shown. I tried with
>> LoacalApplication : True and False. Call gets dropped > at the Subdialog
>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at
>> 1:09 PM, Cisco Developer Community Forums < >
>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new >
>> message in the forum "CVP - All Versions": > > >
>> -------------------------------------------------------------- > I used the
>> > vxml code below and put the code into a file > >
>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left
>> > Parameter and Return Value empty) > > This all worked just fine. > > >
>> test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field
>> > name="test" type="digits"> > <property name="inputmodes" >
>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > >
>> </form> > </vxml> > -- > To respond to this post, please click the >
>> following link: > > < > >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
>> > > > or simply reply to this email. -- To respond to this post, please >
>> click the following link: < >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
>> > or simply reply to this email. -- Janine Graves > -- > To respond to this
>> post, please click the following link: > > < >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please
>> click the following link: <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
>> or simply reply to this email. -- Janine Graves
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 04:17:16 PM
It worked with audio tag but now its not working..
On Wed, Apr 4, 2012 at 1:46 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I am using your code only...I did what ever you suggeested in the previous
> discussions.
>
>
> On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> Janine Graves has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> Why don't you just try replacing your menu with my code below. Perhaps
>> the gateway doesn't like a menu with 1 option. Also you need a return
>> statement or your license will be hung on VxmlServer for 30 minutes. When I
>> omit the return statement, my subdialog invoke works, but I do get an error
>> in the log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote:
>> Phani Venigalla has created a new message in the forum "CVP - All
>> Versions": -------------------------------------------------------------- I
>> follow the same and gave Subdialog URI as
>> http://10.9.13.79:7000/CVP/FlowSheet.vxml I tested the by accessing from
>> Internet explorer the vxml file is getting shown. I tried with
>> LoacalApplication : True and False. Call gets dropped at the Subdialog
>> Invoke and Activity log file shown Zero bytes. On Wed, Apr 4, 2012 at 1:09
>> PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com>
>> wrote: > Janine Graves has created a new message in the forum "CVP - All
>> Versions": > >
>> -------------------------------------------------------------- > I used the
>> vxml code below and put the code into a file >
>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
>> > In the Subdialog invoke element I configured > SubdialogUIR:
>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left
>> Parameter and Return Value empty) > > This all worked just fine. > >
>> test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field
>> name="test" type="digits"> > <property name="inputmodes"
>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
>> you entered <value expr="test"/> > <return/> > </filled> > </field> >
>> </form> > </vxml> > -- > To respond to this post, please click the
>> following link: > > < >
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> > > > or simply reply to this email. -- To respond to this post, please
>> click the following link: <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
>> or simply reply to this email. -- Janine Graves
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 04:22:16 PM
Its keep on sending in error log
VoiceXML Session timeout occurred at element Subdialog Invoke_01: A
session has timed out after 30 minutes. This is most likely caused by a
start of call class or action element at the top of the callflow not
completing before the voice browser's fetch timeout occurred. To resolve it
ensure this class executes in a timely manner or run it in the background.
Session timeouts may also occur under high load or if there are issues with
a load balancer or voice browser.
On Wed, Apr 4, 2012 at 2:58 PM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I placed audio file insted of TTS it played but after sometime i tried to
> excute then its silent again...
>
>
> On Wed, Apr 4, 2012 at 2:11 PM, Phani Venigalla <phani.venigalla@gmail.com
> > wrote:
>
>> I configured "test" in return value.
>>
>> I am not understanding why its getting so longer to show in activity log.
>>
>> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla <
>> phani.venigalla@gmail.com> wrote:
>>
>>> Before the subdialog invoke i used audio element saying " Please select
>>> from following".. then in subdialog invoke i am calling your code.,
>>>
>>> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well.
>>>
>>> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums <
>>> cdicuser@developer.cisco.com> wrote:
>>>
>>>> Janine Graves has created a new message in the forum "CVP - All
>>>> Versions":
>>>>
>>>> --------------------------------------------------------------
>>>> With my code, you don't hear the TTS speaking from the test.vxml code?
>>>> It works on my CVP8 system. What version of Studio and VXmlServer do you
>>>> have?Back in CVP 7, you needed an Audio element to play to caller (say
>>>> hello or something) before using a Subdialog Invoke element. On 4/4/2012
>>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
>>>> created a new message in the forum "CVP - All Versions":
>>>> -------------------------------------------------------------- I am using
>>>> your code only...I did what ever you suggeested in the previous
>>>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
>>>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has
>>>> created a new message in the forum "CVP - All Versions": > >
>>>> -------------------------------------------------------------- > Why don't
>>>> you just try replacing your menu with my code below. Perhaps the > gateway
>>>> doesn't like a menu with 1 option. Also you need a return statement > or
>>>> your license will be hung on VxmlServer for 30 minutes. When I omit the >
>>>> return statement, my subdialog invoke works, but I do get an error in the >
>>>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani >
>>>> Venigalla has created a new message in the forum "CVP - All Versions": >
>>>> -------------------------------------------------------------- I follow the
>>>> > same and gave Subdialog URI as
>>>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing
>>>> from Internet explorer the vxml file is getting > shown. I tried with
>>>> LoacalApplication : True and False. Call gets dropped > at the Subdialog
>>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at
>>>> 1:09 PM, Cisco Developer Community Forums < >
>>>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
>>>> > message in the forum "CVP - All Versions": > > >
>>>> -------------------------------------------------------------- > I used the
>>>> > vxml code below and put the code into a file > >
>>>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
>>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
>>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
>>>> left > Parameter and Return Value empty) > > This all worked just fine. > >
>>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> >
>>>> <field > name="test" type="digits"> > <property name="inputmodes" >
>>>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> >
>>>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > >
>>>> </form> > </vxml> > -- > To respond to this post, please click the >
>>>> following link: > > < > >
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
>>>> > > > or simply reply to this email. -- To respond to this post, please >
>>>> click the following link: < >
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
>>>> > or simply reply to this email. -- Janine Graves > -- > To respond to this
>>>> post, please click the following link: > > < >
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please
>>>> click the following link: <
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
>>>> or simply reply to this email. -- Janine Graves
>>>> --
>>>> To respond to this post, please click the following link:
>>>>
>>>> <
>>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667
>>>> >
>>>>
>>>> or simply reply to this email.
>>>
>>>
>>>
>>
>
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Janine Graves on 04-04-2012 04:38:16 PM
Go into the Studio application, right click on the app name in the Navigator window, go to Properties > Call Studio > General Settings. Change the SessionTimeout to 3 - then it'll log after 3 minutes if the license 'is hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- Its keep on sending in error log VoiceXML Session timeout occurred at element Subdialog Invoke_01: A session has timed out after 30 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed audio file insted of TTS it played but after sometime i tried to > excute then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test" in return value. >> >> I am not understanding why its getting so longer to show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog invoke i used audio element saying " Please select >>> from following".. then in subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1) and vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at 1:51 PM, Cisco Developer Community Forums < >>> cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created a new message in the forum "CVP - All >>>> Versions": >>>> >>>> -------------------------------------------------------------- >>>> With my code, you don't hear the TTS speaking from the test.vxml code? >>>> It works on my CVP8 system. What version of Studio and VXmlServer do you >>>> have?Back in CVP 7, you needed an Audio element to play to caller (say >>>> hello or something) before using a Subdialog Invoke element. On 4/4/2012 >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has >>>> created a new message in the forum "CVP - All Versions": >>>> -------------------------------------------------------------- I am using >>>> your code only...I did what ever you suggeested in the previous >>>> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community >>>> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>> created a new message in the forum "CVP - All Versions": > > >>>> -------------------------------------------------------------- > Why don't >>>> you just try replacing your menu with my code below. Perhaps the > gateway >>>> doesn't like a menu with 1 option. Also you need a return statement > or >>>> your license will be hung on VxmlServer for 30 minutes. When I omit the > >>>> return statement, my subdialog invoke works, but I do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani > >>>> Venigalla has created a new message in the forum "CVP - All Versions": > >>>> -------------------------------------------------------------- I follow the >>>> > same and gave Subdialog URI as >>>> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>> from Internet explorer the vxml file is getting > shown. I tried with >>>> LoacalApplication : True and False. Call gets dropped > at the Subdialog >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012 at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new >>>> > message in the forum "CVP - All Versions": > > > >>>> -------------------------------------------------------------- > I used the >>>> > vxml code below and put the code into a file > > >>>> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: > >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I >>>> left > Parameter and Return Value empty) > > This all worked just fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > >>>> <field > name="test" type="digits"> > <property name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> > <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To respond to this post, please click the > >>>> following link: > > < > > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548> >>>> > > > or simply reply to this email. -- To respond to this post, please > >>>> click the following link: < > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> >>>> > or simply reply to this email. -- Janine Graves > -- > To respond to this >>>> post, please click the following link: > > < > >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933> > > > or simply reply to this email. -- To respond to this post, please >>>> click the following link: < >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957> >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To respond to this post, please click the following link: >>>> >>>> < >>>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667 >>>> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872> or simply reply to this email. -- Janine Graves
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 04-04-2012 04:43:16 PM
there are still some files showing zero bytes in Activity log..Shall wait
till those files update for testing agian...
On Wed, Apr 4, 2012 at 3:38 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Go into the Studio application, right click on the app name in the
> Navigator window, go to Properties > Call Studio > General Settings. Change
> the SessionTimeout to 3 - then it'll log after 3 minutes if the license 'is
> hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM, Cisco
> Developer Community Forums wrote: Phani Venigalla has created a new message
> in the forum "CVP - All Versions":
> -------------------------------------------------------------- Its keep on
> sending in error log VoiceXML Session timeout occurred at element Subdialog
> Invoke_01: A session has timed out after 30 minutes. This is most likely
> caused by a start of call class or action element at the top of the
> callflow not completing before the voice browser's fetch timeout occurred.
> To resolve it ensure this class executes in a timely manner or run it in
> the background. Session timeouts may also occur under high load or if there
> are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at
> 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed
> audio file insted of TTS it played but after sometime i tried to > excute
> then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani
> Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test"
> in return value. >> >> I am not understanding why its getting so longer to
> show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani Venigalla
> < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog invoke
> i used audio element saying " Please select >>> from following".. then in
> subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1) and
> vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at
> 1:51 PM, Cisco Developer Community Forums < >>>
> cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created a
> new message in the forum "CVP - All >>>> Versions": >>>> >>>>
> -------------------------------------------------------------- >>>> With my
> code, you don't hear the TTS speaking from the test.vxml code? >>>> It
> works on my CVP8 system. What version of Studio and VXmlServer do you >>>>
> have?Back in CVP 7, you needed an Audio element to play to caller (say >>>>
> hello or something) before using a Subdialog Invoke element. On 4/4/2012
> >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla has
> >>>> created a new message in the forum "CVP - All Versions": >>>>
> -------------------------------------------------------------- I am using
> >>>> your code only...I did what ever you suggeested in the previous >>>>
> discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community >>>>
> Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>>
> created a new message in the forum "CVP - All Versions": > > >>>>
> -------------------------------------------------------------- > Why don't
> >>>> you just try replacing your menu with my code below. Perhaps the >
> gateway >>>> doesn't like a menu with 1 option. Also you need a return
> statement > or >>>> your license will be hung on VxmlServer for 30 minutes.
> When I omit the > >>>> return statement, my subdialog invoke works, but I
> do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer
> Community Forums wrote: Phani > >>>> Venigalla has created a new message in
> the forum "CVP - All Versions": > >>>>
> -------------------------------------------------------------- I follow the
> >>>> > same and gave Subdialog URI as >>>>
> http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>>
> from Internet explorer the vxml file is getting > shown. I tried with >>>>
> LoacalApplication : True and False. Call gets dropped > at the Subdialog
> >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012
> at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>>
> cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
> >>>> > message in the forum "CVP - All Versions": > > > >>>>
> -------------------------------------------------------------- > I used the
> >>>> > vxml code below and put the code into a file > > >>>>
> C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) >
> >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
> >>>> left > Parameter and Return Value empty) > > This all worked just
> fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0">
> > <form> > >>>> <field > name="test" type="digits"> > <property
> name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some
> digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> >
> <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To
> respond to this post, please click the > >>>> following link: > > < > >
> >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548>
> >>>> > > > or simply reply to this email. -- To respond to this post,
> please > >>>> click the following link: < > >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589>
> >>>> > or simply reply to this email. -- Janine Graves > -- > To respond to
> this >>>> post, please click the following link: > > < > >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933>
> > > > or simply reply to this email. -- To respond to this post, please
> >>>> click the following link: < >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957>
> >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To
> respond to this post, please click the following link: >>>> >>>> < >>>>
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667>>>> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To
> respond to this post, please click the following link: <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872>
> or simply reply to this email. -- Janine Graves
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406907
> >
>
> or simply reply to this email.
Subject: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 04-04-2012 04:47:16 PM
What should we do if we don't want to hung the lincese...Because the
application works sometimes sometimes not.
On Wed, Apr 4, 2012 at 3:43 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> there are still some files showing zero bytes in Activity log..Shall wait
> till those files update for testing agian...
>
> On Wed, Apr 4, 2012 at 3:38 PM, Cisco Developer Community Forums <
>
> cdicuser@developer.cisco.com> wrote:
>
> > Janine Graves has created a new message in the forum "CVP - All
> Versions":
> >
> > --------------------------------------------------------------
> > Go into the Studio application, right click on the app name in the
> > Navigator window, go to Properties > Call Studio > General Settings.
> Change
> > the SessionTimeout to 3 - then it'll log after 3 minutes if the license
> 'is
> > hung' - which is what's occurring in your case. On 4/4/2012 2:22 PM,
> Cisco
>
> > Developer Community Forums wrote: Phani Venigalla has created a new
> message
> > in the forum "CVP - All Versions":
> > -------------------------------------------------------------- Its keep
> on
>
> > sending in error log VoiceXML Session timeout occurred at element
> Subdialog
> > Invoke_01: A session has timed out after 30 minutes. This is most likely
> > caused by a start of call class or action element at the top of the
> > callflow not completing before the voice browser's fetch timeout
> occurred.
> > To resolve it ensure this class executes in a timely manner or run it in
> > the background. Session timeouts may also occur under high load or if
> there
> > are issues with a load balancer or voice browser. On Wed, Apr 4, 2012 at
> > 2:58 PM, Phani Venigalla <phani.venigalla@gmail.com>wrote: > I placed
> > audio file insted of TTS it played but after sometime i tried to > excute
> > then its silent again... > > > On Wed, Apr 4, 2012 at 2:11 PM, Phani
> > Venigalla <phani.venigalla@gmail.com > > wrote: > >> I configured "test"
> > in return value. >> >> I am not understanding why its getting so longer
> to
> > show in activity log. >> >> On Wed, Apr 4, 2012 at 1:56 PM, Phani
> Venigalla
> > < >> phani.venigalla@gmail.com> wrote: >> >>> Before the subdialog
> invoke
> > i used audio element saying " Please select >>> from following".. then in
> > subdialog invoke i am calling your code., >>> >>> I am using CVP8.0(1)
> and
> > vxml sever supports 2.0 and 2.1 as well. >>> >>> On Wed, Apr 4, 2012 at
> > 1:51 PM, Cisco Developer Community Forums < >>>
> > cdicuser@developer.cisco.com> wrote: >>> >>>> Janine Graves has created
> a
> > new message in the forum "CVP - All >>>> Versions": >>>> >>>>
> > -------------------------------------------------------------- >>>> With
> my
> > code, you don't hear the TTS speaking from the test.vxml code? >>>> It
> > works on my CVP8 system. What version of Studio and VXmlServer do you
> >>>>
> > have?Back in CVP 7, you needed an Audio element to play to caller (say
> >>>>
> > hello or something) before using a Subdialog Invoke element. On 4/4/2012
> > >>>> 12:47 PM, Cisco Developer Community Forums wrote: Phani Venigalla
> has
> > >>>> created a new message in the forum "CVP - All Versions": >>>>
> > -------------------------------------------------------------- I am using
> > >>>> your code only...I did what ever you suggeested in the previous >>>>
> > discussions. On Wed, Apr 4, 2012 at 1:39 PM, Cisco Developer Community
> >>>>
> > Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has >>>>
> > created a new message in the forum "CVP - All Versions": > > >>>>
> > -------------------------------------------------------------- > Why
> don't
> > >>>> you just try replacing your menu with my code below. Perhaps the >
> > gateway >>>> doesn't like a menu with 1 option. Also you need a return
> > statement > or >>>> your license will be hung on VxmlServer for 30
> minutes.
> > When I omit the > >>>> return statement, my subdialog invoke works, but I
> > do get an error in the > >>>> log. On 4/4/2012 12:27 PM, Cisco Developer
> > Community Forums wrote: Phani > >>>> Venigalla has created a new message
> in
> > the forum "CVP - All Versions": > >>>>
> > -------------------------------------------------------------- I follow
> the
> > >>>> > same and gave Subdialog URI as >>>>
> > http://10.9.13.79:7000/CVP/FlowSheet.vxmlI tested the by accessing >>>>
> > from Internet explorer the vxml file is getting > shown. I tried with
> >>>>
> > LoacalApplication : True and False. Call gets dropped > at the Subdialog
> > >>>> Invoke and Activity log file shown Zero bytes. On Wed, Apr > 4, 2012
> > at >>>> 1:09 PM, Cisco Developer Community Forums < > >>>>
> > cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new
> > >>>> > message in the forum "CVP - All Versions": > > > >>>>
> > -------------------------------------------------------------- > I used
> the
> > >>>> > vxml code below and put the code into a file > > >>>>
> > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address
> 10.1.78.72) >
> > >>>> > > In the Subdialog invoke element I configured > SubdialogUIR: >
> > >>>> http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I
> > >>>> left > Parameter and Return Value empty) > > This all worked just
> > fine. > > >>>> > test.vxml: > <?xml version="1.0"?> > <vxml
> version="2.0">
> > > <form> > >>>> <field > name="test" type="digits"> > <property
> > name="inputmodes" > >>>> value="dtmf"></property> > <prompt>Enter some
> > digits</prompt> > <filled> > >>>> > you entered <value expr="test"/> >
> > <return/> > </filled> > </field> > > >>>> </form> > </vxml> > -- > To
> > respond to this post, please click the > >>>> following link: > > < > >
> > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548
> >
> > >>>> > > > or simply reply to this email. -- To respond to this post,
> > please > >>>> click the following link: < > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589
> >
> > >>>> > or simply reply to this email. -- Janine Graves > -- > To respond
> to
> > this >>>> post, please click the following link: > > < > >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404933
> >
> > > > > or simply reply to this email. -- To respond to this post, please
> > >>>> click the following link: < >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404957
> >
> > >>>> or simply reply to this email. -- Janine Graves >>>> -- >>>> To
> > respond to this post, please click the following link: >>>> >>>> < >>>>
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406667>>>>
> > >>>> >>>> or simply reply to this email. >>> >>> >>> >> > -- To
> > respond to this post, please click the following link: <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406872
> >
> > or simply reply to this email. -- Janine Graves
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406907
>
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406915>
>
>
>
> or simply reply to this email.
>
Subject: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) - CVP
Replied by: Phani Venigalla on 04-04-2012 07:36:16 PM
I am using Gmail and just publishing in Cisco forums.
On Wed, Apr 4, 2012 at 6:33 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Hey Phani Venigalla,
>
> What sort of email client are you using?
>
> Your posts to the forum through your email client come to me as just one
> line – no line breaks, no paragraphs etc. Very hard to read. Can you
> rectify this please?
>
> Regards,
> Geoff
> --------------------------------------------------------------------
> Geoff Thompson Unified Contact Center Practice
> Email: geoff@hp.com HP Technology Consulting
> Phone: +1.408.447.4297 Hewlett-Packard Company
> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> ____________________________________________________________________
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405517
> >
>
> or simply reply to this email.
Subject: RE: Re: New Message from GEOFFREY THOMPSON in Customer Voice Portal (CVP) -
Replied by: Phani Venigalla on 04-04-2012 07:41:31 PM
I am using Gmail and just publishing in Cisco forums.
On Wed, Apr 4, 2012 at 6:33 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> GEOFFREY THOMPSON has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Hey Phani Venigalla,
>
> What sort of email client are you using?
>
> Your posts to the forum through your email client come to me as just one
> line – no line breaks, no paragraphs etc. Very hard to read. Can you
> rectify this please?
>
> Regards,
> Geoff
> --------------------------------------------------------------------
> Geoff Thompson Unified Contact Center Practice
> Email: geoff@hp.com HP Technology Consulting
> Phone: +1.408.447.4297 Hewlett-Packard Company
> Mobile: +1.408.204.5297 19111 Pruneridge Ave, Cupertino, CA 95014
> ____________________________________________________________________
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5405517
> >
>
> or simply reply to this email.
This is my issue with subdialoginvoke
I could able to execute once subdialoginvoke element but later its keep on giving this erroe
10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,Subdialog Invoke_01,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
10.9.13.79.1333581780374.573.MyMercy_Dev,04/04/2012 18:27:15.889,,end,how,app_session_complete
Let me know whats wrong with it
Thanks,
Phani
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 04-04-2012 07:43:16 PM
>> I am using Gmail and just publishing in Cisco forums.
That one came out well.
Please don’t reply quoting the original letter. Copy what you need from the original and paste it in. These things are very hard to follow when originals are quoted in entirety.
Regards,
Geoff
Subject: RE: Com.audium cannot be resolved
Replied by: GEOFFREY THOMPSON on 04-04-2012 07:57:36 PM
We need to keep these post a lot shorter. It's looking like spam.
Please don't just press "Reply" if you are feeding the forum from your email client. That will almost certainly include the complete email that you are responding to - and possibly much more. Just copy and quote what you need and reply to that.
If you come onto the forum, try "Quick Reply" rather than "Reply with Quote".
Regards,
Geoff
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 04-04-2012 08:16:25 PM
Why don't you just try replacing your menu with my code below. Perhaps the gateway doesn't like a menu with 1 option. Also you need a return statement or your license will be hung on VxmlServer for 30 minutes. When I omit the return statement, my subdialog invoke works, but I do get an error in the log. On 4/4/2012 12:27 PM, Cisco Developer Community Forums wrote: Phani Venigalla has created a new message in the forum "CVP - All Versions": -------------------------------------------------------------- I follow the same and gave Subdialog URI as http://10.9.13.79:7000/CVP/FlowSheet.vxml I tested the by accessing from Internet explorer the vxml file is getting shown. I tried with LoacalApplication : True and False. Call gets dropped at the Subdialog Invoke and Activity log file shown Zero bytes. On Wed, Apr 4, 2012 at 1:09 PM, Cisco Developer Community Forums < cdicuser@developer.cisco.com> wrote: > Janine Graves has created a new message in the forum "CVP - All Versions": > > -------------------------------------------------------------- > I used the vxml code below and put the code into a file > C:/CVP/VXMLServer/Tomcat/webapps/CVP/test.vxml (at IP address 10.1.78.72) > > In the Subdialog invoke element I configured > SubdialogUIR: http://10.1.78.72:7000/CVP/test.vxml > Local Application:false > (I left Parameter and Return Value empty) > > This all worked just fine. > > test.vxml: > <?xml version="1.0"?> > <vxml version="2.0"> > <form> > <field name="test" type="digits"> > <property name="inputmodes" value="dtmf"></property> > <prompt>Enter some digits</prompt> > <filled> > you entered <value expr="test"/> > <return/> > </filled> > </field> > </form> > </vxml> > -- > To respond to this post, please click the following link: > > < > http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406548 > > > > or simply reply to this email. -- To respond to this post, please click the following link: <http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406589> or simply reply to this email. -- Janine Graves
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 04-04-2012 08:44:52 PM
Even now i got your message twice.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 04-04-2012 08:48:49 PM
Now the log shown as below
GlobalErrorLogger
04/04/2012 19:36:12.702, SERVER ERROR: There has been an error with the http session: a request was made due to an event caught in the root document that refers to a session that has already ended. URI: /CVP/Server
Activity Log
Flowsheet,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
Please let me know whats wrong.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 04-04-2012 10:16:02 PM
Now the log shown as below
GlobalErrorLogger
04/04/2012 19:36:12.702, SERVER ERROR: There has been an error with the http session: a request was made due to an event caught in the root document that refers to a session that has already ended. URI: /CVP/Server
Activity Log
Flowsheet,element,warning,A session has timed out after 3 minutes. This is most likely caused by a start of call class or action element at the top of the callflow not completing before the voice browser's fetch timeout occurred. To resolve it ensure this class executes in a timely manner or run it in the background. Session timeouts may also occur under high load or if there are issues with a load balancer or voice browser.
Please let me know whats wrong.
Can someoone help me with this Issue, I was strcuk up here.
Subject: Re: New Message from Paul Tindall in Customer Voice Portal (CVP) - CVP - Al
Replied by: Phani Venigalla on 05-04-2012 07:10:16 AM
Hi Paul,
I am using vxml invoke element to execute static vxml file. It worked once.
Later its not working anymore I sent logs in my previous posts...
Please let me know,
Thanks,
Phani...
On 04-Apr-2012 11:00 AM, "Phani Venigalla" <phani.venigalla@gmail.com>
wrote:
> I think VoiceXML insert will not work for me.
>
> Please let me know how to use Subdialog Invoke
>
> I just need to excute somefile.vxml.
>
> Thanks,
> Phani.
>
>
> On Wed, Apr 4, 2012 at 10:50 AM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
>> Paul Tindall has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> The notes I have state that the audium_* variables have to be present and
>> omitting them isn't something I've ever bothered testing. The
>> audium_exit_state variable is the only one you need to pay particular
>> attention to with regard to the element settings. Any value you return in
>> audium_exit_state must have a matching exit state defined in the VoiceXML
>> Insert element settings.
>>
>> Paul
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5402249
>> >
>>
>> or simply reply to this email.
>
>
>
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 11:18:03 AM
Hi All,
I am sorry to bohter you guys,Because of very tight timelines i had approache you guys for everything.
But i strcuked up at this point. If i get moved from this point i am done.
As you said in previous post i am not using my vxml code. I am using your code which you sent yester day.
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<audio src="http://10.9.13.79:7000/CVP/Test_Agent4_1.wav"></audio>
<filled>
you entered <value expr="result/>
<return/>
</filled>
</field>
</form>
</vxml>
I even configured result in return value and after subdialog invoke element i ended up with cvp_subdialog return.
Still getting same issue.
Thanks,
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 12:26:27 PM
Hi,
I am not finding any solution for this please help me out in this regard.
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 12:59:51 PM
I tried debugging by giving this command at CLI
debug voip app vxml error
it says vxml software & call error debugging are on
when i am callling in to application i am not getting any debug info on console.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: GEOFFREY THOMPSON on 05-04-2012 01:11:49 PM
Have you issued the command “terminal monitor” ?
Regards,
Geoff
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 01:31:51 PM
Yes i issued i could see other applications running on when i issue terminal monitor
How could we see specific application
Subject: Re: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Phani Venigalla on 05-04-2012 01:54:49 PM
Hi Janine,
This is the code you have sent me
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<prompt>Enter some digits</prompt>
<filled>
you entered <value expr="test"/>
<return/>
</filled>
</field>
</form>
</vxml>
I just replace audio tag instead on prompt tag because we dont have TTS
installed.
It worked sometime but after nothing
Thnaks,
Phani.
On Thu, Apr 5, 2012 at 12:41 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Janine Graves has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Phani,
>
> You've modified the vxml code that I posted (which worked) and created
> code that is no longer valid VXML code. You will find that if you use a
> valid VXML subdialog, then the SubdialogInvoke will work correctly.
>
> I have to question why you feel qualified to be executing this. You don't
> know VoiceXML, or how to use Studio, or how to use the Cisco VoiceXML
> Gateway. I don't think that you should be trying to get this to work in a
> production environment until you have been properly trained.
>
>
> Janine
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5413203>
>
>
>
> or simply reply to this email.
>
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 02:00:47 PM
Hi Geoff
This is the log i could see in the term mon on vxml gateway
This is the log i am getting in vxml gateway
028629: Apr 5 12:44:59 CST: //2844111//AFW_:/vapp_digit_collect: numPatterns 1, minlength 0, maxlength 0, timeout 5000, interDigitTimeout 10000 hotword 0
028630: Apr 5 12:45:01 CST: //2844083//AFW_:/vapp_bgpost: url=http://10.9.13.79:7000/CVP/Server mime_type=application/x-www-form-urlencoded len=15 iov_base=audium_vxmlLog=
028631: Apr 5 12:45:01 CST: //2844083//AFW_:/vapp_bgload: url=http://10.9.13.79:7000/CVP/Test.vxml&callid=3143643121&calling_application_call_id=10.9.13.79.1333647881104.612&calling_application_order=0&calling_application_cookie=E4C7AC417DECDEE27BD5A519C3097ACB&local_application=true&sourceApplication=MyMercy_D...
028632: Apr 5 12:45:01 CST: //2844083//HTTPC:/httpc_callback: URL:http://10.9.13.79:7000/CVP/Test.vxml&callid=3143643121&calling_application_call_id=10.9.13.79.1333647881104.612&calling_application_order=0&calling_application_cookie=E4C7AC417DECDEE27BD5A519C3097ACB&local_application=true&sourceApplication=MyMercy_D..., Server rsp_code(404), fd(0)
028633: Apr 5 12:45:01 CST: //2844083/03B6F9800007/VXML:/vxml_bgload_post_done:
CALL_ERROR; http://10.9.13.79:7000/CVP/Server
Loading fail with url (http://10.9.13.79:7000/CVP/Test.vxml&callid=3143643121&calling_application_call_id=10.9.13.79.1333647881104.612&calling_application_order=0&calling_application_cookie=E4C7AC417DECDEE27BD5A519C3097ACB&local_application=true&sourceApplication=MyMercy_D...)
028634: Apr 5 12:45:01 CST: //2844083/03B6F9800007/VXML:/vxml_error_badfetch_event:
CALL_ERROR; *** error.badfetch.http.404 event is thrown
028635: Apr 5 12:45:01 CST: //2844083//AFW_:/vapp_bgpost: url=http://10.9.13.79:7000/CVP/Server mime_type=application/x-www-form-urlencoded len=71
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Hemal Mehta on 05-04-2012 02:20:49 PM
This is enough. A request too all. Anybody wanting to correspond here on this particular thread do so directly using their personal email with originator of thread. Any conversation using this thread, is a mockery of this forum as it ends up generating tonnes of meaningless emails and flooding our email boxes.
This post has generated 116 emails which has been sent to hundreds of folks and its all noise and no value. It is severely undermining the value of this forum. I would have no choice but to report this to the administrator of the forum and have this thread flagged for deletion.
Hemal
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Thursday, April 05, 2012 12:42 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Janine Graves has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Phani,
You've modified the vxml code that I posted (which worked) and created code that is no longer valid VXML code. You will find that if you use a valid VXML subdialog, then the SubdialogInvoke will work correctly.
I have to question why you feel qualified to be executing this. You don't know VoiceXML, or how to use Studio, or how to use the Cisco VoiceXML Gateway. I don't think that you should be trying to get this to work in a production environment until you have been properly trained.
Janine
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5413203>
or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 03:01:36 PM
This error i am getting whe i try to access
this static vxml file
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<field name="test" type="digits">
<property name="inputmodes" value="dtmf"></property>
<audio src="http://10.9.13.79:7000/CVP/Test_Agent4_1.wav"></audio>
<filled>
you entered <value expr="test"/>
<return/>
</filled>
</field>
</form>
</vxml>
60805: Apr 5 13:54:17 CST: //0/B475C6800007/VXML:/vxml_parse:
CALL_ERROR; http://10.9.13.79:7000/CVP/Test.vxml
at line 6: not well-formed (invalid token)
060806: Apr 5 13:54:17 CST: //2853058//AFW_:/vapp_bgload: url=http://10.9.13.79:7000/CVP/Test.vxml
060807: Apr 5 13:54:17 CST: //0/B475C6800007/VXML:/vxml_parse:
CALL_ERROR; http://10.9.13.79:7000/CVP/Test.vxml
at line 6: not well-formed (invalid token)
060808: Apr 5 13:54:17 CST: //2853058/B475C6800007/VXML:/vxml_bgload_post_done:
CALL_ERROR; http://10.9.13.79:7000/CVP/Server
Loading fail with url (http://10.9.13.79:7000/CVP/Test.vxml)
060809: Apr 5 13:54:17 CST: //2853058//AFW_:/vapp_bgpost: url=http://10.9.13.79:7000/CVP/Server mime_type=application/x-www-form-urlencoded len=62 iov_base=audium_type=error.badfetch&audium_action=error&audium_vxmlLog=
060810: Apr 5 13:54:17 CST: //2853058//AFW_:/vapp_media_play: prompt=http://10.9.13.79:7000/CVP/audio/error.wav:
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 05-04-2012 03:42:48 PM
Phani,
If you are going to expect help from this forum, you will have to educate yourself (or team up with someon) who knows more about the CVP and VoiceXML Gateway environment.
1. The reason your license is hanging, is because you're code is causing an error on the gateway, which is dropping your call, but not reporting it back to VXML
Server. So VXML Server doesn't know that the call is over. The timeout for this, as mentioned earlier, is configured under Project Properties > Call Studio>General>Session Timeout.
The 'hung' license is an unresolved recurring issue (that I hope Cisco addresses one day) that occurs if there's a problem invoking or returning from a subdialog application.
The activity log message 'session timeout occurred' - just means that there was an issue invoking or returning from a subdialog application.
Yesterday, your first call worked. But then you tried to call in again, but couldn't. We are not mind readers, but I assume that you have only 1 license and it was 'hung' from the first phone call. So, you couldn't call in a 2nd time.
2. I tested your original posed VXML code (the menu you show below) by using Subdialog Invoke, and received an error.
I turned on debugging on the gateway when I received an error.
The debugging commands I used were 'term mon' ; 'debug http client error' ; 'debug voip app error' ;and finally the one that showed me the vxml bug in your code was 'debug voip app vxml error'
.
This showed me that the gateway doesn't like the attribure dtmf="1" in the <choice> tag. If I remove that, then the menu code works fine. If the caller presses a key, then it takes me to the next application. Etc.
So you MUST learn how to enable and work with debugging on the gateway.
3. In Studio, when you use Subdialog Invoke, your VXML code is expected to behave as a VXML SUBDIALOG! And therefore, it MUST end eventually with a <return/> statement to return control back to VxmlServer. OTHERWISE, Your license will be HUNG.
OTHERWISE, Your license will be HUNG.
4. In the Studio application, you must end with a HANGUP or CVP SUbdialog Return element, to free the vxml server license.
Please find some training and reading some reference manuals. The subscribers to this forum are becoming very impatient with your lack of knowledge, lack of trying to read the reference manuals, and insistent posting without adding any new information.
Respectfully, Janine
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 05-04-2012 10:31:42 AM
Phani,
If you are going to expect help from this forum, you will have to educate yourself (or team up with someon) who knows more about the CVP and VoiceXML Gateway environment.
1. The reason your license is hanging, is because you're code is causing an error on the gateway, which is dropping your call, but not reporting it back to VXML
Server. So VXML Server doesn't know that the call is over. The timeout for this, as mentioned earlier, is configured under Project Properties > Call Studio>General>Session Timeout.
The 'hung' license is an unresolved recurring issue (that I hope Cisco addresses one day) that occurs if there's a problem invoking or returning from a subdialog application.
The activity log message 'session timeout occurred' - just means that there was an issue invoking or returning from a subdialog application.
Yesterday, your first call worked. But then you tried to call in again, but couldn't. We are not mind readers, but I assume that you have only 1 license and it was 'hung' from the first phone call. So, you couldn't call in a 2nd time.
2. I tested your original posed VXML code (the menu you show below) by using Subdialog Invoke, and received an error.
I turned on debugging on the gateway when I received an error.
The debugging commands I used were 'term mon' ; 'debug http client error' ; 'debug voip app error' ;and finally the one that showed me the vxml bug in your code was 'debug voip app vxml error'
.
This showed me that the gateway doesn't like the attribure dtmf="1" in the <choice> tag. If I remove that, then the menu code works fine. If the caller presses a key, then it takes me to the next application. Etc.
So you MUST learn how to enable and work with debugging on the gateway.
3. In Studio, when you use Subdialog Invoke, your VXML code is expected to behave as a VXML SUBDIALOG! And therefore, it MUST end eventually with a <return/> statement to return control back to VxmlServer. OTHERWISE, Your license will be HUNG.
OTHERWISE, Your license will be HUNG.
4. In the Studio application, you must end with a HANGUP or CVP SUbdialog Return element, to free the vxml server license.
Please find some training and reading some reference manuals. The subscribers to this forum are becoming very impatient with your lack of knowledge, lack of trying to read the reference manuals, and insistent posting without adding any new information.
Respectfully, Janine
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: GEOFFREY THOMPSON on 05-04-2012 10:37:49 AM
Excellent post, Janine.
Regards,
Geoff
Subject: RE: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - A
Replied by: Hemal Mehta on 05-04-2012 11:10:49 AM
Thank you Janine. For everybody who posts or seeks help here, this forum is not intended for someone to get their entire project done be spoon fed by the experts here. Do your homework and put the necessary effort yourself first and if you get stuck ask. Do not flood everybody's email boxes with same emails and asking what needs to be done at each step.
This must stop to maintain the quality in this forum.
Regards,
Hemal
________________________________
From: Cisco Developer Community Forums [cdicuser@developer.cisco.com]
Sent: Thursday, April 05, 2012 9:31 AM
To: cdicuser@developer.cisco.com
Subject: New Message from Janine Graves in Customer Voice Portal (CVP) - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Janine Graves has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
Phani,
If you are going to expect help from this forum, you will have to educate yourself (or team up with someon) who knows more about the CVP and VoiceXML Gateway environment.
1. The reason your license is hanging, is because you're code is causing an error on the gateway, which is dropping your call, but not reporting it back to VXML
Server. So VXML Server doesn't know that the call is over. The timeout for this, as mentioned earlier, is configured under Project Properties > Call Studio>General>Session Timeout.
The 'hung' license is an unresolved recurring issue (that I hope Cisco addresses one day) that occurs if there's a problem invoking or returning from a subdialog application.
The activity log message 'session timeout occurred' - just means that there was an issue invoking or returning from a subdialog application.
Yesterday, your first call worked. But then you tried to call in again, but couldn't. We are not mind readers, but I assume that you have only 1 license and it was 'hung' from the first phone call. So, you couldn't call in a 2nd time.
2. I tested your original posed VXML code (the menu you show below) by using Subdialog Invoke, and received an error.
I turned on debugging on the gateway when I received an error.
The debugging commands I used were 'term mon' ; 'debug http client error' ; 'debug voip app error' ;and finally the one that showed me the vxml bug in your code was 'debug voip app vxml error'
.
This showed me that the gateway doesn't like the attribure dtmf="1" in the <choice> tag. If I remove that, then the menu code works fine. If the caller presses a key, then it takes me to the next application. Etc.
So you MUST learn how to enable and work with debugging on the gateway.
3. In Studio, when you use Subdialog Invoke, your VXML code is expected to behave as a VXML SUBDIALOG! And therefore, it MUST end eventually with a <return/> statement to return control back to VxmlServer. OTHERWISE, Your license will be HUNG.
OTHERWISE, Your license will be HUNG.
4. In the Studio application, you must end with a HANGUP or CVP SUbdialog Return element, to free the vxml server license.
Please find some training and reading some reference manuals. The subscribers to this forum are becoming very impatient with your lack of knowledge, lack of trying to read the reference manuals, and insistent posting without adding any new information.
Respectfully, Janine
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5412735>
or simply reply to this email.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 05-04-2012 01:41:43 PM
Phani,
You've modified the vxml code that I posted (which worked) and created code that is no longer valid VXML code. You will find that if you use a valid VXML subdialog, then the SubdialogInvoke will work correctly.
I have to question why you feel qualified to be executing this. You don't know VoiceXML, or how to use Studio, or how to use the Cisco VoiceXML Gateway. I don't think that you should be trying to get this to work in a production environment until you have been properly trained.
Janine
Subject: RE: Com.audium cannot be resolved
Replied by: Hemal Mehta on 05-04-2012 02:13:01 PM
Hi,
I am working on Cisco unified call studio 8.0, I was trying to write a custom java class in the callstudio eclipse.
I am getting errors like Com.audium cannot be resolved in all import methods.
Please reply for the soultion asap.
Thanks,
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 12:30:58 PM
You can't just use a variable containing the VoiceXML. The source must resolve to something/somewhere that the VoiceXML gateway can access via the URI in a <subdialog> element. By default, if the source VoiceXML document is set in the element as "my_vxml_doc.vxml" it will physically need to exist as ... Tomcat/webapps/CVP/my_vxml_doc.vxml.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 09-04-2012 12:40:51 PM
Hi,
Can we request a Post URL in Subdialoginvoke
I am sending url post as http://xxxxxxxxxxx
Parameters in Parameter field. phone={Data.Session.callid}.pin={Data.Element.pin.value}
It shown in log it stll cosidering as a get request but not post.
Phani,
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 02:06:38 PM
You can't just use a variable containing the VoiceXML. The source must resolve to something/somewhere that the VoiceXML gateway can access via the URI in a <subdialog> element. By default, if the source VoiceXML document is set in the element as "my_vxml_doc.vxml" it will physically need to exist as ... Tomcat/webapps/CVP/my_vxml_doc.vxml.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 04:46:04 PM
Yes i issued i could see other applications running on when i issue terminal monitor
How could we see specific application
When i try to call URI with parameters from subdialoginvoke the application gets hang and vxml server reloads.
How would we send the post or get url with parameters in subdialoginvoke.
I am sending as below
http://xxxxxxxxxxxxx/get_flow?phone={Data.Session.callid}&pin={Data.Element.inPin.value}
please let me know
Phani.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 09-04-2012 09:47:28 PM
In the subdialog invoke element, you can pass parameters as "VoiceXML Parameters" using the +Parameter setting and specifying one name=value pair per line. You can then access this in the invoked subdialog as you would any VoiceXML Parameter.
If you want to pass data in the URI string, then you are doing it correctly. It'll be passed to your get_flow code as URL parameters.
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 09:56:49 PM
The URI i am trying to request contains vxml content, but not as a vxml file. When i give the same URI in webbrowser it shows as VoiceXML format.
If i pass the parameters in URI string VXML gateway gets hang and became silent.
When i add parameters in Parameter field one in each line then the log shown parameters are not passing through..
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Janine Graves on 09-04-2012 10:13:55 PM
Your variable(s) must be empty then. If you pass variables that actually have a value, and you pass them as name=value pairs, whether in the URI string or in the VoiceXML Parameter fields, then it all works just fine on my system. If it's not working in your case, then you need to put some sort of sniffer on your line or run some debug commands on the gateway and see what you are actually sending over in the URI string.
I suggest you just hard code some values http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If it doesn't work, then there's probably an issue with the gateway invoking your 'get_flow' code. You'll have to contact Cisco TAC and find out what's wrong with your system. This seems like a standard debugging step. I would hope that you've already tried this.
Janine
Subject: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Replied by: Phani Venigalla on 09-04-2012 10:36:57 PM
I suggest you just hard code some values http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If it doesn't work, then there's probably an issue with the gateway invoking your 'get_flow' code. You'll have to contact Cisco TAC and find out what's wrong with your system. This seems like a standard debugging step. I would hope that you've already tried this.
This i have already tried.. when i give the uri like this http://xxxxxxxxx/get_flow?phone=22222&pin=33333 or phone={Data.Session.callid}&pin={Data.Element.inPin.value} like this vxml gateway just hangs.
If i give only URI and parameters in parameters field, Its not sendig parameters...
Can't we execute dynamic vxml content, what i mean as i said my URL sending vxml response.
Is it necessary there should be a static vxml file in some location to initiate execution of subdialog invoke.
Subject: RE: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP -
Replied by: Hemal Mehta on 10-04-2012 09:46:26 AM
Why are posting same thread again and again ? What is the point man ? Flooding other’s email boxes with duplicate threads does not help anyone.
Hemal
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Monday, April 09, 2012 9:37 PM
To: cdicuser@developer.cisco.com
Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer Voice Portal (CVP) - C
Phani Venigalla has created a new message in the forum "CVP - All Versions":
--------------------------------------------------------------
I suggest you just hard code some values http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If it doesn't work, then there's probably an issue with the gateway invoking your 'get_flow' code. You'll have to contact Cisco TAC and find out what's wrong with your system. This seems like a standard debugging step. I would hope that you've already tried this.
This i have already tried.. when i give the uri like this http://xxxxxxxxx/get_flow?phone=22222&pin=33333 or phone={Data.Session.callid}&pin={Data.Element.inPin.value} like this vxml gateway just hangs.
If i give only URI and parameters in parameters field, Its not sendig parameters...
Can't we execute dynamic vxml content, what i mean as i said my URL sending vxml response.
Is it necessary there should be a static vxml file in some location to initiate execution of subdialog invoke.
--
To respond to this post, please click the following link:
<http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5428034>
or simply reply to this email.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 10-04-2012 09:52:26 AM
I am posting for reference..sorry will not repeat...
On 10-Apr-2012 8:47 AM, "Cisco Developer Community Forums" <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Why are posting same thread again and again ? What is the point man ?
> Flooding other’s email boxes with duplicate threads does not help anyone.
> Hemal
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Monday, April 09, 2012 9:37 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer
> Voice Portal (CVP) - C
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> I suggest you just hard code some values
> http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If
> it doesn't work, then there's probably an issue with the gateway invoking
> your 'get_flow' code. You'll have to contact Cisco TAC and find out what's
> wrong with your system. This seems like a standard debugging step. I would
> hope that you've already tried this.
>
> This i have already tried.. when i give the uri like this
> http://xxxxxxxxx/get_flow?phone=22222&pin=33333 or
> phone={Data.Session.callid}&pin={Data.Element.inPin.value} like this vxml
> gateway just hangs.
>
> If i give only URI and parameters in parameters field, Its not sendig
> parameters...
>
> Can't we execute dynamic vxml content, what i mean as i said my URL
> sending vxml response.
>
> Is it necessary there should be a static vxml file in some location to
> initiate execution of subdialog invoke.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5428034
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5429679
> >
>
> or simply reply to this email.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 10-04-2012 01:11:26 PM
Hi Hemal,
Can you please let me know why the vxml gateway hangs when i try to send
parameters In URI.
Thanks,
Phani.
On Tue, Apr 10, 2012 at 8:51 AM, Phani Venigalla
<phani.venigalla@gmail.com>wrote:
> I am posting for reference..sorry will not repeat...
> On 10-Apr-2012 8:47 AM, "Cisco Developer Community Forums" <
> cdicuser@developer.cisco.com> wrote:
>
>> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>>
>> --------------------------------------------------------------
>> Why are posting same thread again and again ? What is the point man ?
>> Flooding other’s email boxes with duplicate threads does not help anyone.
>> Hemal
>>
>> From: Cisco Developer Community Forums [mailto:
>> cdicuser@developer.cisco.com]
>> Sent: Monday, April 09, 2012 9:37 PM
>> To: cdicuser@developer.cisco.com
>> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
>> - CVP - All Versions: RE: Re: New Message from Phani Venigalla in Customer
>> Voice Portal (CVP) - C
>>
>> Phani Venigalla has created a new message in the forum "CVP - All
>> Versions":
>>
>> --------------------------------------------------------------
>> I suggest you just hard code some values
>> http://xxxxxxxxx/get_flow?phone=22222&pin=33333 and get this to work. If
>> it doesn't work, then there's probably an issue with the gateway invoking
>> your 'get_flow' code. You'll have to contact Cisco TAC and find out what's
>> wrong with your system. This seems like a standard debugging step. I would
>> hope that you've already tried this.
>>
>> This i have already tried.. when i give the uri like this
>> http://xxxxxxxxx/get_flow?phone=22222&pin=33333 or
>> phone={Data.Session.callid}&pin={Data.Element.inPin.value} like this vxml
>> gateway just hangs.
>>
>> If i give only URI and parameters in parameters field, Its not sendig
>> parameters...
>>
>> Can't we execute dynamic vxml content, what i mean as i said my URL
>> sending vxml response.
>>
>> Is it necessary there should be a static vxml file in some location to
>> initiate execution of subdialog invoke.
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5428034
>> >
>>
>> or simply reply to this email.
>> --
>> To respond to this post, please click the following link:
>>
>> <
>> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5429679
>> >
>>
>> or simply reply to this email.
>
>
Subject: RE: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP -
Replied by: Phani Venigalla on 10-04-2012 09:35:46 PM
when i try to access this URI from subdialog invoke
http://xxxxxx/get_flow?phone={Data.Session.callid}&pin={Data.Element.inPin.value}
I could see in vxm gateway log to try to hit the URI and The router gets reloaded and Gateway hangs.
Please let me know what could be the reason .If something wrong in vxml code it should throw the badfetch insted its reloading router.
Subject: Re: New Message from Hemal Mehta in Customer Voice Portal (CVP) - CVP - All
Replied by: Phani Venigalla on 11-04-2012 10:36:26 AM
Hi Hemal,
Which version of IOS gateway supports VoiceXML2.0 and VoiceXML2.1, Because
when i try to invoke vxml by passiing parameters,the router gets reloading.
Phani.
On Wed, Apr 4, 2012 at 1:16 PM, Cisco Developer Community Forums <
cdicuser@developer.cisco.com> wrote:
> Hemal Mehta has created a new message in the forum "CVP - All Versions":
>
> --------------------------------------------------------------
> Run show version on vxml gateway.
>
>
> From: Cisco Developer Community Forums [mailto:
> cdicuser@developer.cisco.com]
> Sent: Wednesday, April 04, 2012 1:06 PM
> To: cdicuser@developer.cisco.com
> Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP) -
> CVP - All Versions: Re: New Message from Hemal Mehta in Customer Voice
> Portal (CVP) - CVP - All
>
> Phani Venigalla has created a new message in the forum "CVP - All
> Versions":
>
> --------------------------------------------------------------
> Hi Hemal,
>
> Where do i check that what versions of IOS gateway i am using.
>
> Phani.
>
> On Wed, Apr 4, 2012 at 12:56 PM, Cisco Developer Community Forums <
> cdicuser@developer.cisco.com> wrote:
>
> > Hemal Mehta has created a new message in the forum "CVP - All Versions":
> >
> > --------------------------------------------------------------
> > The vxml syntax is fine and the vxml browser should not throw any errors.
> > What version of IOS gateway do you have ?
> >
> >
> > From: Cisco Developer Community Forums [mailto:
> > cdicuser@developer.cisco.com]
> > Sent: Wednesday, April 04, 2012 12:40 PM
> > To: cdicuser@developer.cisco.com
> > Subject: New Message from Phani Venigalla in Customer Voice Portal (CVP)
> -
> > CVP - All Versions: Re: New Message from Paul Tindall in Customer Voice
> > Portal (CVP) - CVP - Al
> >
> > Phani Venigalla has created a new message in the forum "CVP - All
> > Versions":
> >
> > --------------------------------------------------------------
> > So
> >
> > If the HelloWorld.vxml contains below format will it works
> >
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> >
> > <vxml version="2.1">
> >
> > <menu dtmf="true">
> >
> > <property name="inputmodes" value="dtmf"></property>
> >
> > <prompt>Welcome to Track My Health.</prompt>
> >
> > <prompt>Please choose a flow sheet.</prompt>
> >
> > <prompt>For Heart Failure - Manual Entry, please press
> > 1</prompt>
> >
> > </menu>
> >
> > </vxml>
> >
> >
> >
> > Let me know
> >
> > Thanks,
> >
> > Phani.
> >
> >
> > On Wed, Apr 4, 2012 at 12:35 PM, Cisco Developer Community Forums <
> > cdicuser@developer.cisco.com> wrote:
> >
> > > Paul Tindall has created a new message in the forum "CVP - All
> Versions":
> > >
> > > --------------------------------------------------------------
> > > Set the element subdialog URI to the absolute location
> > > http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets/HelloWorld.vxml or
> > > whatever your specific example is. Just make sure
> > w7-w8n943q1.smrcy.comis accessible to the VoiceXML gateway. Provided
> it's a
> > valid VoiceXML
> > > subdialog, you don't have the same constraints on its format as you do
> > with
> > > VoiceXML Insert.
> > >
> > >
> > > --
> > > To respond to this post, please click the following link:
> > >
> > > <
> > >
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404796
> > >
> > >
> > >
> > >
> > > or simply reply to this email.
> > >
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406490
> > >
> >
> > or simply reply to this email.
> > --
> > To respond to this post, please click the following link:
> >
> > <
> >
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406520
> > >
> >
> > or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5404867
> >
>
> or simply reply to this email.
> --
> To respond to this post, please click the following link:
>
> <
> http://developer.cisco.com/web/cvp/forums/-/message_boards/view_message/5406556
> >
>
> or simply reply to this email.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 11-04-2012 01:12:18 PM
Still not succeeded regariding the subdialoginvoke issue. Is there anything need to do at Gateway side to support VXML2.0 and 2.1.
Because its causing issue when i try to request with paramenters..
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 11-04-2012 02:08:30 PM
We are using Cisco 3900E ISR at gateway side and IOS version 15.1., I guess this shouldn't give any issue.
When trying to hit URL with Parameters in Subdialoginvoke to execute Dynamic VXML 2.1
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 13-04-2012 10:22:59 AM
Hi,
I have installed Nuance TTS vocalizer and Seechserver.
What parameters need to configure to intgrate with CVP. Both Nuance and CVP End.
Thanks,
Phani,
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 18-04-2012 12:22:54 PM
Hi,
i have custom action element to call webservice. I am able to capture response in dynamic vxml.
How do i execute this dynamic vxml from call studio.
When i try to call URL by using Subdialog invoke i am losing session between webserver and voicebroiwser.
Thanks,
Phani.
Subject: RE: Com.audium cannot be resolved
Replied by: Phani Venigalla on 23-04-2012 09:12:19 PM
Hi Guys,
Try to call the Http Post url from subdialog invoke. But i could see the gateway logs subdialog invoke not sending parameters. I am getting 500 error.
Log below.
Gateway log
4578997: Apr 23 19:44:42 CST: //238741//HTTPC:/httpc_callback: URL:http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets, Server rsp_code(500), fd(0)
4578998: Apr 23 19:44:42 CST: //238741/9AD4DB80000B/VXML:/vxml_bgload_post_done:
CALL_ERROR; http://10.9.13.79:7000/CVP/Server
Loading fail with url (http://w7-w8n943q1.smrcy.com:3001/get_flow_sheets)
4578999: Apr 23 19:44:42 CST: //238741/9AD4DB80000B/VXML:/vxml_error_badfetch_event:
CALL_ERROR; *** error.badfetch.http.500 event is thrown
when i try to do GET request i could able to the vxm output and run the application.
Any suggetions appreciated
Thanks,
Phani.
Labels: