We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Dot is read as point in domain name by RealSpeak

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
amitkhosla
Posts: 53
Joined: Sun Feb 15, 2009 11:42 pm
Contact:

Dot is read as point in domain name by RealSpeak

Post by amitkhosla »

Hi,

We have switched from AT&T Natural Voice to RealSpeak 4.0.

But the problem we are facing is that when ever we have something like www.carepass.com, the speach engine read it as "www point carepass point com" instead of "www dot carepass dot com".


Can you please help us to rectify this thing.

Regards,
amit.

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR solution for dot is read as point in domain name

Post by support »

Hi,

As a solution, you could use the "net" IVR <say-as> type to do this.

For IVR example:

sayemail.php:

Code: Select all

<?php
header("Content-type: text/xml");
echo("<?xml version=\"1.0\"?>\n");
?>
<vxml version="2.0">
  <form>
    <var name="website" expr="'www.carepass.com'"/>
    <block> 
      <prompt>
        Your website is <say-as type="net"><value expr="website"/></say-as>.
      </prompt>
    </block>
  </form>
</vxml> 
Hope this IVR code helps.

Regards,
Plum Support

Post Reply