Guest fsoudbakhsh Report post Posted 03/31/2009 09:47 PM Hello, It takes 15 second that my vbs get data from my web database (located in my web host) and pass it on to Evaluate Expression module. is there any way to faster this process? Share this post Link to post
SupportTeam Report post Posted 03/31/2009 10:33 PM The delays would most likely be on the web server. The locally ran VBScript has low overheads and runs local functions fast enough for you to not even notice it. You could use WireShark to perform the tracing to confirm when the http requests were issued and when the sending of the response completed. Suggest you try running standalone VBScripts outside of VocieGuide and use Message Boxes to at vital points throughout the script. This will also let you see how long execution of the various parts of the script takes. Whey are you using a Web host to access the database? Can't you setup things to allow use of Database Query module to access the database directly? Share this post Link to post
Guest fsoudbakhsh Report post Posted 04/05/2009 01:54 AM Thanks for your response, I will use WireShark and let you know where the delay is. I can not use local database, becuase, my client will enter their information from all over U.S.A into my web database. I need to access the database in web host to pull the information down and announce them to people. Thanks again. Share this post Link to post
SupportTeam Report post Posted 04/05/2009 08:37 AM You can just provide the IP address of the database in the database connection string. Then you just use the normal database connection - the DB just is located on another server. You should ensure that your network is capable of communicating the database connections between IVR and the DB server. Share this post Link to post