Hi Alex,
Nice approach. I'll try that too but I'm affraid about DB performace
issues (I have a very busy mysql).
Thanks a lot.
Uriel
On Thu, Jul 8, 2010 at 3:05 PM, Alex Balashov wrote:
> Maybe the database can apply the regex and give you the transformed result?
> Databases are quite capable
Maybe the database can apply the regex and give you the transformed
result? Databases are quite capable these days. I do this in
PostgreSQL all the time.
On 07/08/2010 01:53 PM, Uriel Rozenbaum wrote:
Hi Alex, :)
I was just trying to keep it simple, but let me explain a little bit.
I'm us
Hi Alex, :)
I was just trying to keep it simple, but let me explain a little bit.
I'm using a Proxy+RTPProxy in mhomed mode. I have a public and a
private IP on that Proxy and route calls in and out of a network.
As I have many carriers that want different ANI and DNIS patterns I
have to deal wi
There may be an easier and more elegant and more performant way to
accomplish what you are trying to accomplish, but we cannot know
without seeing the pattern and the regex. :)
--
Alex Balashov - Principal
Evariste Systems LLC
1170 Peachtree Street
12th Floor, Suite 1200
Atlanta, GA 30309
Te
Hi Daniel,
Actually I'm going to partially take your advice, implementing the following:
exec_avp("echo '$avp(s:ANI)' | sed '$avp(s:carrierAniRegex)'",
"$avp(s:ANIegress)");
I'll check for performance issues later but surely this simplifies a
lot the config.
Thanks!
Uriel
On Thu, Jul 8, 2010 a
Hello,
On 7/7/10 11:06 PM, Uriel Rozenbaum wrote:
Hey guys,
I'm using Kamailio 1.5.3-notls and need to apply some re operation to an AVP.
The problem I have is that my re expression is held in an AVP, so the
parser is not recognizing it :(
Would it be very hard to change that behavior? Any id