Re: [Freeswitch-users] Hi Guys

2009-10-21 Thread Shelby Ramsey
Question: Will the call flow look like this (above was not very clear): web -- FS -- Cantata -- PSTN (via TDM circuits) Or are you trying to replace the Cantata? SDR ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org

Re: [Freeswitch-users] UUID of the newly originated call?

2009-10-21 Thread Nagalenoj H.
I've tried with origination_uuid. First, I tried with SIP and my program executes successfully as what I expected. This program initiates a new call when a call comes and let the new call to eavesdrop the landed call. When, I experimented with PRI(openzap), I'm facing the following error. And, I

Re: [Freeswitch-users] can't dial from IPv6 to IPv6

2009-10-21 Thread ineya ineya
Sort of. I have different error now: 2009-10-21 08:34:08.446939 [NOTICE] mod_sofia.c:1521 Pre-Answer sofia/internal-ipv6/1...@franta.openstage.net! 2009-10-21 08:34:08.462967 [NOTICE] sofia.c:3925 Hangup sofia/internal-ipv6/sip:1...@[2000:2::1002]:5062 [CS_CONSUME_MEDIA]

Re: [Freeswitch-users] Hi Guys

2009-10-21 Thread Shelby Ramsey
Well ... the question is pretty generic. But based on these assumptions: -- no media (bypass media) -- routing done via XML dialplan Something along the lines of a quad core machine with 4 gigs of ram would be overkill for 692 calls. Things to remember: -- the more cores the better (FS is

Re: [Freeswitch-users] can't dial from IPv6 to IPv6

2009-10-21 Thread Jason White
ineya ineya ine...@gmail.com wrote: Sort of. I have different error now: 2009-10-21 08:34:08.446939 [NOTICE] mod_sofia.c:1521 Pre-Answer sofia/internal-ipv6/1...@franta.openstage.net! 2009-10-21 08:34:08.462967 [NOTICE] sofia.c:3925 Hangup sofia/internal-ipv6/sip:1...@[2000:2::1002]:5062

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Tihomir Culjaga
simple: action application=bridge data=h323/${number}/ if fs not registered on gk then data=h323/${numb...@xxx.xxx.xxx.xxx. TC TC2009-10-20 10:08:18.424083 [DEBUG] h323caps.cxx:3252 Found capability: TCUserInput/PointDevice 14 TC2009-10-20 10:08:18.424083 [DEBUG] h323caps.cxx:3248

Re: [Freeswitch-users] Qustion about INFO messages after Connect/Answer

2009-10-21 Thread Helmut Kuper
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Brian, hi Mike, On 20.10.2009 18:41, Brian West wrote: Or just set the var to what you want it to say? Yes, understood and it works so far. This means that I must enhance my dialplan to set this new variable to preserve old behaviour. No big

Re: [Freeswitch-users] sched_api doesn't get launched

2009-10-21 Thread Henry Huang
I can't seem to find the right thing to use in mod_java to execute api commands, only api_after_bridge 2009-10-21 17:42:46.593094 [NOTICE] mod_sofia.c:1509 Pre-Answer sofia/internal/1688...@192.168.1.66! # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Georgiewskiy Yuriy
On 2009-10-21 09:34 +0200, Tihomir Culjaga wrote freeswitch-us...@lists.fre...: TC TC TC TCI was using latest libpt.so.2.7-beta1. TC TCNow I went back to libpt.so.2.6-beta6 (can't find 2.6.5 you mentioned...) TCand FS is crashing on every call :P .. regardless if it is inbound or TCoutbound...

[Freeswitch-users] Call custom variable in condition

2009-10-21 Thread Ahmed Munir
Hi, I've declared a variable named AUTHENTICATION_STATUS in dialplan, and I want to use it in condition, as I'm listing down the configuration below; context name=SIP_incoming extension name=call-sip-extensions condition field=destination_number expression=^(\d+)$ action

Re: [Freeswitch-users] Call custom variable in condition

2009-10-21 Thread Ghulam Mustafa
Ahmed, you can't use variables set by set application within a condition, though it doesn't make sense. wondering if there is any logic behind this or it's just a simple missing feature. anyone? -m Ahmed Munir wrote: Hi, I've declared a variable named AUTHENTICATION_STATUS in dialplan, and

Re: [Freeswitch-users] Call custom variable in condition

2009-10-21 Thread Tihomir Culjaga
consider this: context name=SIP_incoming extension name=call-sip-extensions condition field=destination_number expression=^(\d+)$ action application=set data=AUTHENTICATION_STATUS=0/ action application=transfer data=${AUTHENTICATION_STATUS} XML Authen_Status/

[Freeswitch-users] NOT in dialplan expression

2009-10-21 Thread Mark Campbell-Smith
Hi! How do I do a NOT equal to in a dialplan expression Normaly in regex I would use the ! character. This doesn't seem to work in FS.. ie condition field=${variable} expression=!^1 Shouldn't that match when the variable is not starting with one?

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Tihomir Culjaga
2009/10/21 Georgiewskiy Yuriy bottle...@icf.org.ru On 2009-10-21 09:34 +0200, Tihomir Culjaga wrote freeswitch-us...@lists.fre...: TC TC TC TCI was using latest libpt.so.2.7-beta1. TC TCNow I went back to libpt.so.2.6-beta6 (can't find 2.6.5 you mentioned...) TCand FS is crashing on

Re: [Freeswitch-users] NOT in dialplan expression

2009-10-21 Thread Tihomir Culjaga
it depends of what you are trying to acheave one approach is with regex check this: http://wiki.freeswitch.org/wiki/Misc._Dialplan_Tools_regex you can set a different variable and have it true or false ... than you can compare for false state... well .. it is up to you ... T. On Wed,

Re: [Freeswitch-users] NOT in dialplan expression

2009-10-21 Thread Leon de Rooij
Hi, Negating is done with [^...] in a regex, so 'not 1' is matched with: /^[^1]$/ If you want to match on a longer sequence, you can do that with negative lookahead, for example 'not 123' can be matched like this: /^(?!123$)\d{3}$/ regards, Leon On Oct 21, 2009, at 1:34 PM, Mark

Re: [Freeswitch-users] can't dial from IPv6 to IPv6

2009-10-21 Thread ineya ineya
Codecs are fine. I spent much time experimenting with codecs and completely missed, that freeswitch is modifiyng the SDP record. When phone A is making a call the SDP contains candidate media attributes: a=candidate:123abc 1 UDP 9 2000:2::1001 5012 typ host a=candidate:123abc 1 UDP 8 10.80.62.92

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Georgiewskiy Yuriy
On 2009-10-21 13:39 +0200, Tihomir Culjaga wrote freeswitch-us...@lists.fre...: TC2009/10/21 Georgiewskiy Yuriy bottle...@icf.org.ru TC TC On 2009-10-21 09:34 +0200, Tihomir Culjaga wrote TC freeswitch-us...@lists.fre...: TC TC TC TC TC TC TC TC TC TCI was using latest libpt.so.2.7-beta1. TC TC

[Freeswitch-users] check sip client availability

2009-10-21 Thread Woody Dickson
Hi, Is there any API to tell freeswitch to send a SIP OPTION message to check the availability of a SIP client? thanks, woody ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org

Re: [Freeswitch-users] can't dial from IPv6 to IPv6

2009-10-21 Thread Brian West
What are you using to make this call? /b On Oct 21, 2009, at 6:58 AM, ineya ineya wrote: Codecs are fine. I spent much time experimenting with codecs and completely missed, that freeswitch is modifiyng the SDP record. When phone A is making a call the SDP contains candidate media

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Brian West
Your SVN Account will be done soon and the directory in endpoints is already created for you to start importing your work. Thanks, /b On Oct 21, 2009, at 7:24 AM, Georgiewskiy Yuriy wrote: On 2009-10-21 13:39 +0200, Tihomir Culjaga wrote freeswitch-us...@lists.fre ...: TC2009/10/21

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Georgiewskiy Yuriy
On 2009-10-21 09:26 -0500, Brian West wrote freeswitch-us...@lists.freeswit...: ок. BWYour SVN Account will be done soon and the directory in endpoints is BWalready created for you to start importing your work. BW BWThanks, BW BW/b BW BWOn Oct 21, 2009, at 7:24 AM, Georgiewskiy Yuriy wrote: BW

Re: [Freeswitch-users] NOT in dialplan expression

2009-10-21 Thread Rupa Schomaker
You can also look at using anti-action rather than action after the condition. condition == if action == then anti-action == else On Wed, Oct 21, 2009 at 6:34 AM, Mark Campbell-Smith mcampbellsm...@gmail.com wrote: Hi! How do I do a NOT equal to in a dialplan expression Normaly in regex I

Re: [Freeswitch-users] check sip client availability

2009-10-21 Thread Rupa Schomaker
This applies only to clients that are detected as nat, but maybe: http://wiki.freeswitch.org/wiki/Sofia.conf.xml#nat-options-ping This is applied to the profile, not an app or a var setting. On Wed, Oct 21, 2009 at 8:26 AM, Woody Dickson woodydick...@gmail.com wrote: Hi, Is there any API to

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Georgiewskiy Yuriy
On 2009-10-21 16:43 +0200, Tihomir Culjaga wrote freeswitch-us...@lists.fre...: TC TC TC TC TCmodule load crash: http://pastebin.freeswitch.org/10783 TC TCFreeSWITCH backtrace: http://pastebin.freeswitch.org/10784 TC TC TC TC TC TCnow, the only different thing is FS trunk ... TC TC i have no

Re: [Freeswitch-users] can't dial from IPv6 to IPv6

2009-10-21 Thread ineya ineya
the phone is called OpenStage On Wed, Oct 21, 2009 at 4:25 PM, Brian West br...@freeswitch.org wrote: What are you using to make this call? /b ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org

Re: [Freeswitch-users] sched_api doesn't get launched

2009-10-21 Thread Michael S Collins
Judging by this error I would assume that you're still calling sched_api as a Dialplan application and not as an FS API command. You need to figure out how to create an API obj in java and call sched_api from that object. -MC Sent from my iPhone On Oct 21, 2009, at 2:44 AM, Henry Huang

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Tihomir Culjaga
FS = 10.4.62.7 SIP phone = 10.4.62.89 H323 endpoint = 10.1.14.153 TC2. hangup from sip side doesn't release the h323 leg (now the difference is TCthat FS is not complaining about thread mismatch ant it looks clean but FS TCdoesn't send any releasecomplete message... strange) TC3.

[Freeswitch-users] Stop/Restart of Freeswitch Causes Crash

2009-10-21 Thread Jerry Richards
Sometimes if I stop (using ... command) and then restart freeswitch (using ./freeswitch command), the program will crash and return to the Linux (CentOS 5.3) prompt. I am using version 1.0.4. I just pasted the freeswitch/terminal log into the Pastebin. Best Regards, Jerry

Re: [Freeswitch-users] Stop/Restart of Freeswitch Causes Crash

2009-10-21 Thread Diego Viola
You should debug FreeSWITCH, check this out: http://wiki.freeswitch.org/wiki/Debugging_Freeswitch And then open a Jira. Diego On Wed, Oct 21, 2009 at 4:11 PM, Jerry Richards jerry.richa...@teotech.com wrote: Sometimes if I stop (using ... command) and then restart freeswitch (using

Re: [Freeswitch-users] Stop/Restart of Freeswitch Causes Crash

2009-10-21 Thread Anthony Minessale
That problem is fixed if you update to SVN trunk or latest snapshot. On Wed, Oct 21, 2009 at 11:11 AM, Jerry Richards jerry.richa...@teotech.com wrote: Sometimes if I stop (using ... command) and then restart freeswitch (using ./freeswitch command), the program will crash and return to the

Re: [Freeswitch-users] Call custom variable in condition

2009-10-21 Thread Anthony Minessale
It not only makes sense it's well documented on the wiki page. The set line is not happening right when it's encountered, the set line is copied into the channel and executed later after the whole dialplan is parsed. The dialplan is a pre-processor not a runtime engine. Here is a new feature in

Re: [Freeswitch-users] Hi Guys

2009-10-21 Thread Edward Q.
Thank you guysEd On Wed, Oct 21, 2009 at 2:49 AM, Shelby Ramsey sicfsl...@gmail.com wrote: Well ... the question is pretty generic. But based on these assumptions: -- no media (bypass media) -- routing done via XML dialplan Something along the lines of a quad core machine with 4 gigs

Re: [Freeswitch-users] Stop/Restart of Freeswitch Causes Crash

2009-10-21 Thread Anthony Minessale
no you shouldnt we don't take jiras about release revisions only trunk. On Wed, Oct 21, 2009 at 11:31 AM, Diego Viola diego.vi...@gmail.com wrote: You should debug FreeSWITCH, check this out: http://wiki.freeswitch.org/wiki/Debugging_Freeswitch And then open a Jira. Diego On Wed, Oct

[Freeswitch-users] Is background sound|music during call possible?

2009-10-21 Thread Joey Carter
Hello How can I add background music that will play during call? Thanks ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

[Freeswitch-users] Calls dropping on SIP timer expiry due to UPDATE's being ignored.

2009-10-21 Thread Keith Laaks
Hi, Hope someone knows how I am able to get around this one. Here goes... Did an upgrade to trunk (from a July vintage build) last week and noticed calls out to a provider were now failing after about 30 seconds or so - post answer. Tried latest (15183) - same thing. Analysing, I see that I

Re: [Freeswitch-users] Stop/Restart of Freeswitch Causes Crash

2009-10-21 Thread Diego Viola
Oh ok, I didn't knew that Anthony, sorry. Do as Anthony said, update to trunk :). On Wed, Oct 21, 2009 at 4:54 PM, Anthony Minessale anthony.miness...@gmail.com wrote: no you shouldnt we don't take jiras about release revisions only trunk. On Wed, Oct 21, 2009 at 11:31 AM, Diego Viola

Re: [Freeswitch-users] Call custom variable in condition

2009-10-21 Thread Michael Collins
On Wed, Oct 21, 2009 at 9:39 AM, Anthony Minessale anthony.miness...@gmail.com wrote: It not only makes sense it's well documented on the wiki page. The set line is not happening right when it's encountered, the set line is copied into the channel and executed later after the whole dialplan

Re: [Freeswitch-users] Call custom variable in condition

2009-10-21 Thread Anthony Minessale
you should not abuse it is all i mean, we have measures to limit what apps you can use in this manner but usually requiring a more complicated dialplan is a hint you are doing something wrong ;) On Wed, Oct 21, 2009 at 12:02 PM, Michael Collins m...@freeswitch.orgwrote: On Wed, Oct 21, 2009

Re: [Freeswitch-users] Is background sound|music during call possible?

2009-10-21 Thread Brian West
uuid_displace with mux option. /b On Oct 21, 2009, at 6:11 AM, Joey Carter wrote: Hello How can I add background music that will play during call? Thanks ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org

Re: [Freeswitch-users] Calls dropping on SIP timer expiry due to UPDATE's being ignored.

2009-10-21 Thread Brian West
This will be fixed soon. Watch SVN. /b On Oct 21, 2009, at 11:45 AM, Keith Laaks wrote: Hi, ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

Re: [Freeswitch-users] can't dial from IPv6 to IPv6

2009-10-21 Thread Michael Jerris
This appears to be some sort of ice implementation? We don't support sip ice at this time. Mike On Oct 21, 2009, at 7:58 AM, ineya ineya wrote: Codecs are fine. I spent much time experimenting with codecs and completely missed, that freeswitch is modifiyng the SDP record. When phone A is

Re: [Freeswitch-users] Fwd: mod_opal - call charged before H.225 connect

2009-10-21 Thread Georgiewskiy Yuriy
On 2009-10-21 17:48 +0200, Tihomir Culjaga wrote freeswitch-us...@lists.fre...: TCFS = 10.4.62.7 TCSIP phone = 10.4.62.89 TCH323 endpoint = 10.1.14.153 TC TC TC TC TC2. hangup from sip side doesn't release the h323 leg (now the difference TC is TC TCthat FS is not complaining about thread

Re: [Freeswitch-users] Qustion about INFO messages after Connect/Answer

2009-10-21 Thread Helmut Kuper
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Mike, just updated my prod system. The 1/a/ problem is solved with Anthony's originate_callee_id_name chvar. thanks alot :) So, last thing of this thread is still the unknown thing on callee's display, which is (by now) NOT affected by the

Re: [Freeswitch-users] NOT in dialplan expression

2009-10-21 Thread Michael Collins
On Wed, Oct 21, 2009 at 8:07 AM, Rupa Schomaker r...@rupa.com wrote: You can also look at using anti-action rather than action after the condition. condition == if action == then anti-action == else Rupa Leon, Nice job of explaining the options. Sometimes we forget about the powerful

Re: [Freeswitch-users] Qustion about INFO messages after Connect/Answer

2009-10-21 Thread Michael Collins
On Wed, Oct 21, 2009 at 10:43 AM, Helmut Kuper helmut.ku...@ewetel.dewrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Mike, just updated my prod system. The 1/a/ problem is solved with Anthony's originate_callee_id_name chvar. thanks alot :) So, last thing of this thread is

[Freeswitch-users] 3rd Party Dial Plan Tool

2009-10-21 Thread Jerry Richards
Can anyone recommend a good 3rd party dialplan tool that will work with Freeswitch? Best Regards, Jerry ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

Re: [Freeswitch-users] Proxy media mode with T.38 re-invite

2009-10-21 Thread Anthony Minessale
can you try trunk and let me know right away, if it's still not working i may need ssh access and call you on the phone. On Tue, Oct 20, 2009 at 10:50 PM, Kristian Kielhofner kristian.kielhof...@gmail.com wrote: Done. On Tue, Oct 20, 2009 at 5:34 PM, Anthony Minessale

Re: [Freeswitch-users] 3rd Party Dial Plan Tool

2009-10-21 Thread Brian West
none specifically exist... good ole trusty editor? /b PS: http://www.cudatel.com On Oct 21, 2009, at 1:37 PM, Jerry Richards wrote: Can anyone recommend a good 3rd party dialplan tool that will work with Freeswitch? Best Regards, Jerry ___

Re: [Freeswitch-users] 3rd Party Dial Plan Tool

2009-10-21 Thread SP
You could also try consult...@freeswitch.org On Wed, Oct 21, 2009 at 14:00, Brian West br...@freeswitch.org wrote: none specifically exist... good ole trusty editor? /b PS: http://www.cudatel.com On Oct 21, 2009, at 1:37 PM, Jerry Richards wrote: Can anyone recommend a good 3rd party

Re: [Freeswitch-users] sched_api doesn't get launched

2009-10-21 Thread Michael Jerris
The syntax is different, but the api is the same as lua: So you need an API object in order to use it. I don't know the syntax for creating an api obj in Java but in Lua it goes like this: api = freeswitch.API(); res = api:execute(sched_api,+300 none my_api my_api_args) create the API

Re: [Freeswitch-users] can't dial from IPv6 to IPv6

2009-10-21 Thread ineya ineya
Yes, I think you are right, the sip stack comes from company called M5T as far as I know, and there are references to ICE on their site. On Wed, Oct 21, 2009 at 7:29 PM, Michael Jerris m...@jerris.com wrote: This appears to be some sort of ice implementation?  We don't support sip ice at this

Re: [Freeswitch-users] sched_api doesn't get launched

2009-10-21 Thread Anthony Minessale
Yes you need an API object as described in other email. Which line of code from java caused that segfault It looks like a simple NULL string issue that we may want to hunt down. On Wed, Oct 21, 2009 at 4:44 AM, Henry Huang red.rain.se...@gmail.comwrote: I can't seem to find the right thing to

Re: [Freeswitch-users] Calls dropping on SIP timer expiry due to UPDATE's being ignored.

2009-10-21 Thread Michael Jerris
This should now be fixed in latest svn trunk. Mike On Oct 21, 2009, at 12:45 PM, Keith Laaks wrote: Hi, Hope someone knows how I am able to get around this one. Here goes... Did an upgrade to trunk (from a July vintage build) last week and noticed calls out to a provider were now

Re: [Freeswitch-users] NOT in dialplan expression

2009-10-21 Thread Michael Collins
On Wed, Oct 21, 2009 at 3:51 PM, Mark Campbell-Smith mcampbellsm...@gmail.com wrote: Thanks Guys for your suggestions! Very much appreciated. The reason I asked was that I want to check if a variable is set or not. I don't think your suggestions will work because I actually have to check

Re: [Freeswitch-users] NOT in dialplan expression

2009-10-21 Thread Anthony Minessale
Like rupa said, use anti-action? Remember FreeSWITCH XML dialplan is not a programming language it's a pre-processor routing markup Se potential use of anti-action below: extension name=checkdigits condition field=destination_number expression=^checkdigits$/ !--The next condition

Re: [Freeswitch-users] UUID of the newly originated call?

2009-10-21 Thread Anthony Minessale
which revision of FS are you using? On Wed, Oct 21, 2009 at 1:06 AM, Nagalenoj H. nagale...@gmail.com wrote: I've tried with origination_uuid. First, I tried with SIP and my program executes successfully as what I expected. This program initiates a new call when a call comes and let the new

Re: [Freeswitch-users] CS_REPORTING Channel event state

2009-10-21 Thread Anthony Minessale
better still, 1) update to trunk with make current 2) Try to reproduce, if you can: a) open a new shell b) make sure you have gdb and gcore installed c) run ./support-d/fscore_pb gcore d) report the URL On Tue, Oct 20, 2009 at 8:48 PM, Michael Jerris m...@jerris.com wrote: REPORTING is

Re: [Freeswitch-users] FreeSWITCH-users Digest, Vol 40, Issue 179

2009-10-21 Thread Ahmed Munir
Hi, Thanks for reply, it really helped me. One more thing to ask, how can we make decision against ,, =, = in condition header? Like we use == for action and != for anti-action. Kindly highlight it. -- Forwarded message -- From: Ahmed Munir ahmedmunir...@gmail.com To:

Re: [Freeswitch-users] FreeSWITCH-users Digest, Vol 40, Issue 179

2009-10-21 Thread Mark Campbell-Smith
Can't you use the inline statement to set a variable so that it can be used directly in a condition? http://wiki.freeswitch.org/wiki/Dialplan_XML#Inline_Actions On Thu, Oct 22, 2009 at 3:08 PM, Ahmed Munir ahmedmunir...@gmail.com wrote: Hi, Thanks for reply, it really helped me. One more

Re: [Freeswitch-users] FreeSWITCH-users Digest, Vol 40, Issue 179

2009-10-21 Thread Michael Collins
On Wed, Oct 21, 2009 at 9:28 PM, Mark Campbell-Smith mcampbellsm...@gmail.com wrote: Can't you use the inline statement to set a variable so that it can be used directly in a condition? http://wiki.freeswitch.org/wiki/Dialplan_XML#Inline_Actions Yes you can. Just don't abuse it like Tony

Re: [Freeswitch-users] FreeSWITCH-users Digest, Vol 40, Issue 179

2009-10-21 Thread Michael Collins
On Wed, Oct 21, 2009 at 9:08 PM, Ahmed Munir ahmedmunir...@gmail.comwrote: Hi, Thanks for reply, it really helped me. One more thing to ask, how can we make decision against ,, =, = in condition header? Like we use == for action and != for anti-action. Kindly highlight it. You can only