Re: [Freeswitch-dev] CCXML/VXML module

2009-03-05 Thread mszlazak
Yup, one thing you start noticing rather quickly when writing up a VXML application is how much inline javascript is being used in the tags. The nature of script and the nature of the xml gets blurred. Where can I read up on VXML being converted to Javascript. Mark. -Original Me

Re: [Freeswitch-dev] MS Access (mdb) and FreeSwitch - Javascript?

2008-10-27 Thread mszlazak
Hi Mike, I've looked again at the ODBC page http://wiki.freeswitch.org/wiki/ODBC#ODBC_in_the_core It does into details about compiling mod_spidermonkey_odbc then editing conf/autoload_configs/spidermonkey.conf.xml http://wiki.freeswitch.org/wiki/Mod_spidermonkey_odbc This describes the sit

Re: [Freeswitch-dev] MS Access (mdb) and FreeSwitch - Javascript?

2008-10-27 Thread mszlazak
Hi Michael. I appreciate your suggestions and will definitely consider them. Here is my background and the scenario. One amateur/hobby programmer (me) that has not programmed in anything but JavaScript for a long, long time but does have spare time to try (re)learning a few things to do this

Re: [Freeswitch-dev] MS Access (mdb) and FreeSwitch - Javascript?

2008-10-24 Thread mszlazak
Thank you Mike! I'll look at the linked to page next week and hopefully quickly proceed from there. Cheers. -Original Message- From: Michael Jerris <[EMAIL PROTECTED]> To: freeswitch-dev@lists.freeswitch.org Sent: Fri, 24 Oct 2008 2:44 pm Subject: Re: [Freeswitch-dev] MS Acce

Re: [Freeswitch-dev] MS Access (mdb) and FreeSwitch - Javascript?

2008-10-24 Thread mszlazak
Hi Mike, I check some of it out but couldn't find anything specifically on MS Access and the ODBC driver that FreeSwitch uses. There is this example: use("ODBC"); var db = new ODBC("dsnName", "username", "password"); var sql = "select * from users"; db.connect(); if (!db.query

[Freeswitch-dev] MS Access (mdb) and FreeSwitch - Javascript?

2008-10-24 Thread mszlazak
Hello, Running FreeSwitch on Windows in an "low-key" "home set-up" type situation, I would like to access an MS Access database. As I understand it so far, FreeSwitch can connect to it's sqlite db and has an ODBC driver for Unix/Linux based db's but my use needs a way to connect Access. Ther