Voice recognition in a VoIP phonecall

G.Wilks

New Member
Hello,

I've got an event management company, and I spend a lot of time with hanging on the phone, and also online. I've found out something lately which can make organizing smoother, faster, and more comfortable. But I also have a problem. See, I'm expert in business life, but I don't know much about programming... I think this software could be very useful for my company, but I don't know nothing about its quaility. According to the site, there are downloadable sample programs. It would be a great help, if I could get to know your expert opinion about them! The more the better! :)
Here you can find the samples: http://www.voip-sip-sdk.com/p_206-h...-phonecall-using-ozeki-voip-sip-sdk-voip.html
Thank you very very much
 
IVR Voice Navigation

I am testing an IVR example program related to Graphical User Interface for the voice recognition. I use the Ozeki VoIP SIP SDK library and one of their webpage (http://www.voip-sip-sdk.com/p_412-voip-ivr-voice-navigation-voip.html) to my work.

The SIP registration information of this sample application is stored in the application configuration (app.config) file. I could see how I can add the SIP data in the configuration file. I had to add my own SIP registration data in this to have the program work properly.
1. <?xml version="1.0" encoding="utf-8" ?>
2. <configuration>
3. <appSettings>
4. <add key="IsRegRequired" value="true"/>
5. <add key="displayname" value="oz879"/>
6. <add key="username" value="oz879"/>
7. <add key="registername" value="oz879"/>
8. <add key="regpass" value="oz879"/>
9. <add key="domainhost" value="192.168.112.100"/>
10. <add key="port" value="5060"/>
11. <add key="nat" value="0"/>
12. </appSettings>
13. </configuration>

Bye,
Niko
 
Back
Top