Thanks!<br><br>I am using C# managed function through swig.cs. And I am calling the function:<br><br>switch_ivr_menu_init(SWIGTYPE_p_p_switch_ivr_menu new_menu,.......)<br><br>With the type "SWIGTYPE_p_p_switch_ivr_menu", do they type ever work? It has a run time error saying "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." for this variable basically it is dereferencing a Null pointer.<br>
<br>How do I resolve this if I want to call this in C#?<br><br>Thanks,<br><br>Frankie<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br><br>---------- Forwarded message ----------<br>From: Malay Thakershi <<a href="mailto:mthakershi@gmail.com">mthakershi@gmail.com</a>><br>To: FreeSWITCH Users Help <<a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a>><br>
Date: Tue, 1 Mar 2011 16:42:47 -0600<br>Subject: Re: [Freeswitch-users] How to create IVR application in C#?<br>mod_managed could be an option.<div><br></div><div><a href="http://wiki.freeswitch.org/wiki/Mod_managed" target="_blank">http://wiki.freeswitch.org/wiki/Mod_managed</a></div>
<div><br></div><div><a href="http://wiki.freeswitch.org/wiki/Mod_managed" target="_blank"></a>It allows you to use most native FS features from C# managed code.</div>
<div><br></div><div>Malay<br><br><div class="gmail_quote">On Tue, Mar 1, 2011 at 3:01 PM, Frankie Yiu <span dir="ltr"><<a href="mailto:frankie.k.yiu@gmail.com" target="_blank">frankie.k.yiu@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hi there,<br><br>I am newbie to FreeSwitch and I have question about creating an IVR application in C#, with a possibly of using VoiceXML. Could someone please points me to how I can get started or any example that I can look at?<br>
<br>Thanks a lot!!!<br><font color="#888888"><br>Frankie<br><div style="padding: 0px; margin-left: 0px; margin-top: 0px; overflow: hidden; word-wrap: break-word; color: black; font-size: 10px; text-align: left; line-height: 130%;">
</div>
</font><br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br></div>
<br><br>---------- Forwarded message ----------<br>From: GillesToo <<a href="mailto:codecomplete@free.fr">codecomplete@free.fr</a>><br>To: <a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a><br>
Date: Tue, 1 Mar 2011 14:52:28 -0800 (PST)<br>Subject: Re: [Freeswitch-users] Does FS handle three-way calling on the same POTS?<br><br>
mercutioviz wrote:<br>
> What are the instructions from the provider to create the second call?<br>
> Usually with an analog line you have to do a hook flash, then dial some<br>
> more digits, and then do another hook flash<br>
<br>
Thanks for the help. Asterisk doesn't allow using Dial() to call a second<br>
number after the original call was put on hold. A work-around is using<br>
SendDTMF() to dial the second number, but it appears there's no way to get<br>
call progress and know if the remote party has answered.<br>
<br>
Does FS provide a better way than this hack? I really need to use three-way<br>
calling on the same line since all calls are free this way.<br>
<br>
Thank you.<br>
<br>
<br>
--<br>
View this message in context: <a href="http://freeswitch-users.2379917.n2.nabble.com/Does-FS-handle-three-way-calling-on-the-same-POTS-tp6076537p6079027.html" target="_blank">http://freeswitch-users.2379917.n2.nabble.com/Does-FS-handle-three-way-calling-on-the-same-POTS-tp6076537p6079027.html</a><br>
Sent from the freeswitch-users mailing list archive at Nabble.com.<br>
<br>
<br>
<br><br>---------- Forwarded message ----------<br>From: Michael Collins <<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>><br>To: FreeSWITCH Users Help <<a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a>><br>
Date: Tue, 1 Mar 2011 15:07:28 -0800<br>Subject: Re: [Freeswitch-users] route inbound - based on sip account<br>The FS on pfSense is pretty old, but if all you are working on is a simple routing issue your best bet is to add the "info" app in the public context. Somewhere near the top of public.xml just add this:<div>
<br></div>
<div><extension name="quick info dump" continue="true"></div><div> <condition></div><div> <action application="info"/></div><div> </condition></div><div></extension></div>
<div><br></div><div>Save that, press F6 (or do reloadxml) and then make a test inbound call. Watch the console - you'll see a TON of information. Look through the pieces of data that are displayed. You should be able to find something to key off of. Once you've done that then go read up on creating your dialplan here:</div>
<div><br></div><div><a href="http://wiki.freeswitch.org/wiki/Dialplan_XML#Condition" target="_blank">http://wiki.freeswitch.org/wiki/Dialplan_XML#Condition</a></div><div><br></div><div>In fact, that whole page is important in understanding the XML dialplan. I would read it more than once.</div>
<div><br></div><div>-MC<br><br><div class="gmail_quote">On Tue, Mar 1, 2011 at 11:16 AM, Andreas Tuerpe <span dir="ltr"><<a href="mailto:andreas@tuerpe-net.de" target="_blank">andreas@tuerpe-net.de</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Hallo FreeSWITCH Users,<br>
<br>
I use FS V.0.9.6 on pfSense<br>
see on -> [<a href="http://doc.pfsense.org/index.php/FreeSWITCH" target="_blank">http://doc.pfsense.org/index.php/FreeSWITCH</a>]<br>
<br>
Symptom:<br>
German ISP "Portunity" forward inbound calls without any destination_number.<br>
<br>
<br>
ISP solution tip:<br>
FS to register over a second sip account to the provider twice.<br>
Any account has a separate number.<br>
Based on the channel over which the call come in, I have to decide which<br>
number is called.<br>
<br>
So I need help, which condition assignment must use - howto ???<br>
- which fields can I use?<br>
- which syntax I have to use?<br>
<br>
<br>
<!-- here my intention ... ???<br>
<br>
<extension name="test_did"><br>
<condition field="channel over which the call come in"<br>
expression="sip-account-1"><br>
<action application="set" data="called_number=111111"/><br>
<action application="transfer" data="1001 XML default"/><br>
<condition field="channel over which the call come in"<br>
expression="sip-account-2"><br>
<action application="set" data="called_number=222222"/><br>
<action application="transfer" data="1002 XML default"/><br>
</condition><br>
</extension><br>
<br>
??? --><br>
<br>
thanks in advance<br>
tuerpean<br>
<br>
<br>
_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</blockquote></div><br></div>
<br><br>---------- Forwarded message ----------<br>From: mazilo <<a href="mailto:Nabble@slickdeals.endjunk.com">Nabble@slickdeals.endjunk.com</a>><br>To: <a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a><br>
Date: Tue, 1 Mar 2011 17:48:49 -0800 (PST)<br>Subject: Re: [Freeswitch-users] mod_dingaling and google voice<br><br>
Yossi Neiman wrote:<br>
> Sofia UA's running on both 99.X.X.X:5060 and 192.X.X.X:5060. Machine FS<br>
> runs on is an iptables NAT/Firewall/router. SIP calls to/from the<br>
> outside world work fine otherwise.<br>
I am lost here. You have two FS machines and one on a public IP Address<br>
while the other on a private IP Address? Both are having problems with GV<br>
incoming calls?<br>
<br>
-----<br>
FreeSWITCH hosted on a Seagate DockStar with OpenWRT.<br>
--<br>
View this message in context: <a href="http://freeswitch-users.2379917.n2.nabble.com/mod-dingaling-and-google-voice-tp6072163p6079399.html" target="_blank">http://freeswitch-users.2379917.n2.nabble.com/mod-dingaling-and-google-voice-tp6072163p6079399.html</a><br>
Sent from the freeswitch-users mailing list archive at Nabble.com.<br>
<br>
<br>
<br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br><div style="visibility: hidden; left: -5000px; position: absolute; z-index: 9999; padding: 0px; margin-left: 0px; margin-top: 0px; overflow: hidden; word-wrap: break-word; color: black; font-size: 10px; text-align: left; line-height: 130%;" id="avg_ls_inline_popup">
</div>