Re: [OpenSIPS-Users] OPENSIPS_CP DIALPLAN

2016-08-25 Thread Jeff Wilkie
I just loaded all the web directory content from git to test but the
results are the same.  The config dir for dialplan are the same other than
the toggle for 1 on text attributes.  Are there other files/dirs that would
affect the dial plan section of CP?  Also, the git download does not
include the changes from expression string length to expression flags (5.0
cp)

Jeff


On Thu, Aug 25, 2016 at 5:11 PM, Bogdan-Andrei Iancu 
wrote:

> Hi Jeff,
>
> I run some test with the exact code on GITHUB (branch 5.0) and the edit
> actually worked well (without any further changes).
>
> The $link is a variable that is initialized in the included file
> lib/db_connect.php, so it valid (anyhow, it is used later for the actual
> query, which works ;) ).
>
> Could you check if the return of mysql_real_escape_string() is actually
> something valid or is it FALSE ?
> http://stackoverflow.com/questions/3005135/mysql-real-
> escape-string-just-makes-an-empty-string
>
> Regards,
>
> Bogdan-Andrei Iancu
> OpenSIPS Founder and Developerhttp://www.opensips-solutions.com
>
> On 25.08.2016 05:33, Jeff Wilkie wrote:
>
> If I modify the file 
> /var/www/opensips_cp/web/tools/system/dialplan/dialplan.php
> and comment out the following:
>
> //  if(get_magic_quotes_gpc()==0){
>
>
> //  $match_exp = 
> mysql_real_escape_string($match_exp,
> *$link*);
>
> //  }
>
> The updates work fine.  I think noticed that the ref to *$link* sits
> below this line in the "modify" section so I decided to remove the $link
> ref in the above lines and then uncommented the lines leaving the modify
> section like this
>
> if ($errors=="") {
>
> if(get_magic_quotes_gpc()==0){
>
>
> $match_exp = mysql_real_escape_string($
> match_exp);
>
> }
>
>
> $sql = "SELECT * FROM ".$table.
>
> " WHERE dpid=" .$dpid. " AND match_exp='"
> .$match_exp. "'".
>
> " AND id!=".$id;
>
> $resultset = *$link*->queryAll($sql);
>
>
> Let me know if I've broken something as a result but this appears to have
> corrected the problem I was having.  Unknown of any side effects currently
> :)  Take a look and let me know your thoughts.
>
> Jeff
>
>
>
> On Wed, Aug 24, 2016 at 6:22 PM, Jeff Wilkie  wrote:
>
>> Here is what it looks like to my db when I create a DialPlan
>>
>>   20 Query SELECT * FROM dialplan WHERE dpid=36 AND match_exp='877'
>>
>>   20 Query PREPARE MDB2_STATEMENT_mysql_a9e5e113b009b855c4d690637965bc74
>> FROM 'INSERT INTO dialplan\n (dpid, pr, match_op, match_exp,
>> match_flags, subst_exp, \n repl_exp, attrs) VALUES \n (36, 0,1,
>> \'877\',0,\'\',\'\',\'.30\')'
>>
>>   20 Prepare INSERT INTO dialplan
>>
>> (dpid, pr, match_op, match_exp, match_flags, subst_exp,
>>
>> repl_exp, attrs) VALUES
>>
>> (36, 0,1, '877',0,'','','.30')
>>
>>   20 Query EXECUTE MDB2_STATEMENT_mysql_a9e5e113b009b855c4d690637965bc74
>>
>>   20 Execute INSERT INTO dialplan
>>
>> (dpid, pr, match_op, match_exp, match_flags, subst_exp,
>>
>> repl_exp, attrs) VALUES
>>
>> (36, 0,1, '877',0,'','','.30')
>>
>> This is what happens when I edit that same DialPlan
>>
>>   23 Query select * from dialplan where id='9030'
>>
>>   23 Quit
>>
>>   24 Query SELECT * FROM dialplan WHERE dpid=36 AND match_exp='' AND
>> id!=9030
>>
>>   24 Query PREPARE MDB2_STATEMENT_mysql_880efa45d78ebff7cbf5f617428df4d2
>> FROM 'UPDATE dialplan SET dpid=36, pr = 0, match_op= 1, match_exp =\'\',
>> match_flags=0, subst_exp = \'\', repl_exp=\'\', attrs= \'.30\' WHERE
>> id=9030'
>>
>>   24 Prepare UPDATE dialplan SET dpid=36, pr = 0, match_op= 1, match_exp
>> ='', match_flags=0, subst_exp = '', repl_exp='', attrs= '.30' WHERE id=9030
>>
>>   24 Query EXECUTE MDB2_STATEMENT_mysql_880efa45d78ebff7cbf5f617428df4d2
>>
>>   24 Execute UPDATE dialplan SET dpid=36, pr = 0, match_op= 1, match_exp
>> ='', match_flags=0, subst_exp = '', repl_exp='', attrs= '.30' WHERE id=9030
>>
>>   24 Query DEALLOCATE PREPARE MDB2_STATEMENT_mysql_880efa45d
>> 78ebff7cbf5f617428df4d2
>>
>>   24 Quit
>>
>>
>> You can see that the container for match_ex is not getting passed to the
>> '24' SELECT statement which ends in a 0 results query apparently.
>>
>>
>> Thanks
>>
>> Jeff
>>
>> On Wed, Aug 24, 2016 at 5:30 PM, Jeff Wilkie  wrote:
>>
>>> Yes.  After any edits followed by a save with the attribute field active
>>> as text causes "Matching Regular Expression" to be deleted.
>>>
>>> Thanks
>>>
>>> Jeff
>>>
>>> On Wed, Aug 24, 2016 at 5:15 PM, Bogdan-Andrei Iancu <
>>> bog...@opensips.org> wrote:
>>>
 Jeff,

 You mean "Matching Regular Expression", right ? upon performing an edit
 + save where you only changed the attrs, the "Matching Regular
 Expression" gets to empty ?

 Regards,

 Bogdan-Andrei Iancu
 OpenSIPS Founder and Developerhttp://www.opensips-solut

Re: [OpenSIPS-Users] OPENSIPS_CP DIALPLAN

2016-08-25 Thread Jeff Wilkie
When using

$match_exp = mysql_real_escape_string($match_exp, *$link*);

I get NULL with var_dump

When using

$match_exp = mysql_real_escape_string($match_exp);

I get with a var_dump

string(10) "^\\+1907.*"

Thanks
Jeff
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Too many warnings in opensips log

2016-08-25 Thread Bogdan-Andrei Iancu

Hi Agalya,

Before those warnings, have you got an warning like:
WARNING:core:utimer_ticker: utimer task  already 
scheduled for


Regards,

Bogdan-Andrei Iancu
OpenSIPS Founder and Developer
http://www.opensips-solutions.com

On 25.08.2016 18:08, Ramachandran, Agalya (Contractor) wrote:


Hi Bogdan,

*Does OpenSIPS recover from this ?*

Answer: It depends upon the volume of the call. If am sending too many 
calls (may be more than 50 calls), OpenSIPS is not recovering. And am 
restarting


But if I send less than 10 calls then it is OK.

*Have you seen other job reported, besides "tm-utimer" ?*

Answer: I also have “blcore-expire” in logs, like once every 10 times 
of "tm-utimer"


I also observed that increasing the children process in config file, 
is solving this issue.


P.S:

e.g : Sending 10 calls to opensips, at 2 calls per sec, then I need to 
keep children as 12.


 For even 10 calls, if I keep children as 4, 4 to 6 calls are 
passing and other calls are failing.


Why do we need to increase the children process?

Just to confirm, is opensips 2.1.4 version  a stable release?

Regards,
Agalya

*From:*Bogdan-Andrei Iancu [mailto:bog...@opensips.org]
*Sent:* Thursday, August 25, 2016 10:54 AM
*To:* OpenSIPS users mailling list ; 
Ramachandran, Agalya (Contractor) 

*Subject:* Re: [OpenSIPS-Users] Too many warnings in opensips log

Hi Agalya,

Question : after you get these logs, you mentioned the inability of 
handling new calls. Does OpenSIPS recover from this ? or you have to 
restart after such an event ?


Have you seen other job reported, besides "tm-utimer" ?

Regards,

Bogdan-Andrei Iancu
OpenSIPS Founder and Developer
http://www.opensips-solutions.com

On 24.08.2016 18:31, Ramachandran, Agalya (Contractor) wrote:

Hi team,

Am using opensips 2.1.4 version and trying to do load test. When
running the test cases, am getting too many warnings in OpenSIPS log.

These warnings are coming continuously and its more than 2 page in
log file.

Below are the warnings.

Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]:
WARNING:core:handle_timer_job: utimer job  has a
3945 us delay in execution

Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]:
WARNING:core:handle_timer_job: utimer job  has a
3945 us delay in execution

Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]:
WARNING:core:handle_timer_job: utimer job  has a
3945 us delay in execution

Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]:
WARNING:core:handle_timer_job: utimer job  has a
3945 us delay in execution

Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]:
WARNING:core:handle_timer_job: utimer job  has a
3945 us delay in execution

Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]:
WARNING:core:handle_timer_job: utimer job  has a
3945 us delay in execution

When I get this Warning, calls are getting failed.

Why am getting this warning and what could be done to avoid it?

Regards,
Agalya




___

Users mailing list

Users@lists.opensips.org 

http://lists.opensips.org/cgi-bin/mailman/listinfo/users



___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] OPENSIPS_CP DIALPLAN

2016-08-25 Thread Bogdan-Andrei Iancu

Hi Jeff,

I run some test with the exact code on GITHUB (branch 5.0) and the edit 
actually worked well (without any further changes).


The $link is a variable that is initialized in the included file 
lib/db_connect.php, so it valid (anyhow, it is used later for the actual 
query, which works ;) ).


Could you check if the return of mysql_real_escape_string() is actually 
something valid or is it FALSE ?

http://stackoverflow.com/questions/3005135/mysql-real-escape-string-just-makes-an-empty-string

Regards,

Bogdan-Andrei Iancu
OpenSIPS Founder and Developer
http://www.opensips-solutions.com

On 25.08.2016 05:33, Jeff Wilkie wrote:
If I modify the file 
/var/www/opensips_cp/web/tools/system/dialplan/dialplan.php and 
comment out the following:


// if(get_magic_quotes_gpc()==0){


  //  $match_exp = 
mysql_real_escape_string($match_exp, *$link*);


//  }


The updates work fine.  I think noticed that the ref to *$link* sits 
below this line in the "modify" section so I decided to remove the 
$link ref in the above lines and then uncommented the lines leaving 
the modify section like this


if ($errors=="") {

if(get_magic_quotes_gpc()==0){


$match_exp = 
mysql_real_escape_string($match_exp);


}


$sql = "SELECT * FROM ".$table.

" WHERE dpid=" .$dpid. " AND match_exp='" 
.$match_exp. "'".


" AND id!=".$id;

  $resultset = *$link*->queryAll($sql);



Let me know if I've broken something as a result but this appears to 
have corrected the problem I was having.  Unknown of any side effects 
currently :)  Take a look and let me know your thoughts.


Jeff



On Wed, Aug 24, 2016 at 6:22 PM, Jeff Wilkie > wrote:


Here is what it looks like to my db when I create a DialPlan

  20 QuerySELECT * FROM dialplan WHERE dpid=36 AND match_exp='877'

  20 QueryPREPARE
MDB2_STATEMENT_mysql_a9e5e113b009b855c4d690637965bc74 FROM 'INSERT
INTO dialplan\n(dpid, pr, match_op, match_exp, match_flags,
subst_exp, \nrepl_exp, attrs) VALUES \n(36, 0,1,
\'877\',0,\'\',\'\',\'.30\')'

  20 PrepareINSERT INTO dialplan

(dpid, pr, match_op, match_exp, match_flags, subst_exp,

repl_exp, attrs) VALUES

(36, 0,1, '877',0,'','','.30')

  20 QueryEXECUTE
MDB2_STATEMENT_mysql_a9e5e113b009b855c4d690637965bc74

  20 ExecuteINSERT INTO dialplan

(dpid, pr, match_op, match_exp, match_flags, subst_exp,

repl_exp, attrs) VALUES

(36, 0,1, '877',0,'','','.30')


This is what happens when I edit that same DialPlan

  23 Queryselect * from dialplan where id='9030'

  23 Quit

  24 QuerySELECT * FROM dialplan WHERE dpid=36 AND match_exp=''
AND id!=9030

  24 QueryPREPARE
MDB2_STATEMENT_mysql_880efa45d78ebff7cbf5f617428df4d2 FROM 'UPDATE
dialplan SET dpid=36, pr = 0, match_op= 1, match_exp =\'\',
match_flags=0, subst_exp = \'\', repl_exp=\'\', attrs= \'.30\'
WHERE id=9030'

  24 PrepareUPDATE dialplan SET dpid=36, pr = 0, match_op= 1,
match_exp ='', match_flags=0, subst_exp = '', repl_exp='', attrs=
'.30' WHERE id=9030

  24 QueryEXECUTE
MDB2_STATEMENT_mysql_880efa45d78ebff7cbf5f617428df4d2

  24 ExecuteUPDATE dialplan SET dpid=36, pr = 0, match_op= 1,
match_exp ='', match_flags=0, subst_exp = '', repl_exp='', attrs=
'.30' WHERE id=9030

  24 QueryDEALLOCATE PREPARE
MDB2_STATEMENT_mysql_880efa45d78ebff7cbf5f617428df4d2

  24 Quit



You can see that the container for match_ex is not getting passed
to the '24' SELECT statement which ends in a 0 results query
apparently.


Thanks

Jeff

On Wed, Aug 24, 2016 at 5:30 PM, Jeff Wilkie mailto:jwil...@usipcom.com>> wrote:

Yes.  After any edits followed by a save with the attribute
field active as text causes "Matching Regular Expression" to
be deleted.

Thanks

Jeff

On Wed, Aug 24, 2016 at 5:15 PM, Bogdan-Andrei Iancu
mailto:bog...@opensips.org>> wrote:

Jeff,

You mean "Matching Regular Expression", right ? upon
performing an edit + save where you only changed the
attrs, the "Matching Regular Expression" gets to empty ?

Regards,

Bogdan-Andrei Iancu
OpenSIPS Founder and Developer
http://www.opensips-solutions.com


On 24.08.2016 23:25, Jeff Wilkie wrote:

Ok.  The value now displays but if you modify the value
and hit save, it kills the regex value upon saving. 
Also, you cannot add the regex value back into the row. 
All other values appear to be kept.

Thanks
Jeff
On Wed, Aug 24, 2016 at 11:35 AM,

Re: [OpenSIPS-Users] HEP protocol on opensips 2.1 siptrace module

2016-08-25 Thread Ramachandran, Agalya (Contractor)
Hi Saioa,

I have been using sip trace module to forward packets.

I don't have the below added in config.
modparam("siptrace", "trace_flag", "TRACE_FLAG")
modparam("siptrace", "enable_ack_trace", 1)
modparam("siptrace", "hep_capture_id", 1)

Remove, setflag(TRACE_FLAG); as we are removing trace_flag modparam.
And I have $avp(trace_id) = 1;

This works for me. Try it .

Regards,
Agalya

-Original Message-
From: users-boun...@lists.opensips.org 
[mailto:users-boun...@lists.opensips.org] On Behalf Of Saioa Perurena
Sent: Thursday, August 25, 2016 12:28 PM
To: users@lists.opensips.org
Subject: [OpenSIPS-Users] HEP protocol on opensips 2.1 siptrace module

Hi,

I'm trying to use sip trace module on opensips 2.1 to send all sip messages to 
a homer server, but it does not send the messages with hep protocol to the 
sipcapture server. Any idea of what I'm missing?

I have the following configuration on opensips script:

 Siptrace module
loadmodule "siptrace.so"
modparam("siptrace", "duplicate_uri", "sip:x.x.x.x:9060") modparam("siptrace", 
"trace_to_database", 0) modparam("siptrace", "trace_flag", "TRACE_FLAG") 
modparam("siptrace", "trace_on", 1) modparam("siptrace", "db_url","") 
modparam("siptrace", "enable_ack_trace", 1) modparam("siptrace", 
"traced_user_avp", "$avp(trace_id)") modparam("siptrace", "duplicate_with_hep", 
1) modparam("siptrace", "hep_version", 2) modparam("siptrace", 
"hep_capture_id", 1)

And at the beginning of the route:
setflag(TRACE_FLAG);
$avp(trace_id) = $fu;
sip_trace();

Thanks in advance!

Saioa.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] HEP protocol on opensips 2.1 siptrace module

2016-08-25 Thread Saioa Perurena
Hi,

I'm trying to use sip trace module on opensips 2.1 to send all sip
messages to a homer server, but it does not send the messages with hep
protocol to the sipcapture server. Any idea of what I'm missing?

I have the following configuration on opensips script:

 Siptrace module
loadmodule "siptrace.so"
modparam("siptrace", "duplicate_uri", "sip:x.x.x.x:9060")
modparam("siptrace", "trace_to_database", 0)
modparam("siptrace", "trace_flag", "TRACE_FLAG")
modparam("siptrace", "trace_on", 1)
modparam("siptrace", "db_url","")
modparam("siptrace", "enable_ack_trace", 1)
modparam("siptrace", "traced_user_avp", "$avp(trace_id)")
modparam("siptrace", "duplicate_with_hep", 1)
modparam("siptrace", "hep_version", 2)
modparam("siptrace", "hep_capture_id", 1)

And at the beginning of the route:
setflag(TRACE_FLAG);
$avp(trace_id) = $fu;
sip_trace();

Thanks in advance!

Saioa.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Too many warnings in opensips log

2016-08-25 Thread Ramachandran, Agalya (Contractor)
Hi Bogdan,

Does OpenSIPS recover from this ?
Answer: It depends upon the volume of the call. If am sending too many calls 
(may be more than 50 calls), OpenSIPS is not recovering. And am restarting
But if I send less than 10 calls then it is OK.

Have you seen other job reported, besides "tm-utimer" ?
Answer: I also have "blcore-expire" in logs, like once every 10 times of 
"tm-utimer"

I also observed that increasing the children process in config file, is solving 
this issue.

P.S:

e.g : Sending 10 calls to opensips, at 2 calls per sec, then I need to keep 
children as 12.
 For even 10 calls, if I keep children as 4, 4 to 6 calls are passing and 
other calls are failing.
Why do we need to increase the children process?

Just to confirm, is opensips 2.1.4 version  a stable release?

Regards,
Agalya

From: Bogdan-Andrei Iancu [mailto:bog...@opensips.org]
Sent: Thursday, August 25, 2016 10:54 AM
To: OpenSIPS users mailling list ; Ramachandran, 
Agalya (Contractor) 
Subject: Re: [OpenSIPS-Users] Too many warnings in opensips log

Hi Agalya,

Question : after you get these logs, you mentioned the inability of handling 
new calls. Does OpenSIPS recover from this ? or you have to restart after such 
an event ?

Have you seen other job reported, besides "tm-utimer" ?

Regards,


Bogdan-Andrei Iancu

OpenSIPS Founder and Developer

http://www.opensips-solutions.com
On 24.08.2016 18:31, Ramachandran, Agalya (Contractor) wrote:
Hi team,

Am using opensips 2.1.4 version and trying to do load test. When running the 
test cases, am getting too many warnings in OpenSIPS log.
These warnings are coming continuously and its more than 2 page in log file.
Below are the warnings.

Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 us delay 
in execution
Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 us delay 
in execution
Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 us delay 
in execution
Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 us delay 
in execution
Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 us delay 
in execution
Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 us delay 
in execution

When I get this Warning, calls are getting failed.
Why am getting this warning and what could be done to avoid it?

Regards,
Agalya




___

Users mailing list

Users@lists.opensips.org

http://lists.opensips.org/cgi-bin/mailman/listinfo/users

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Too many warnings in opensips log

2016-08-25 Thread Bogdan-Andrei Iancu

Hi Agalya,

Question : after you get these logs, you mentioned the inability of 
handling new calls. Does OpenSIPS recover from this ? or you have to 
restart after such an event ?


Have you seen other job reported, besides "tm-utimer" ?

Regards,

Bogdan-Andrei Iancu
OpenSIPS Founder and Developer
http://www.opensips-solutions.com

On 24.08.2016 18:31, Ramachandran, Agalya (Contractor) wrote:


Hi team,

Am using opensips 2.1.4 version and trying to do load test. When 
running the test cases, am getting too many warnings in OpenSIPS log.


These warnings are coming continuously and its more than 2 page in log 
file.


Below are the warnings.

Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 
us delay in execution


Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 
us delay in execution


Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 
us delay in execution


Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 
us delay in execution


Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 
us delay in execution


Aug 24 15:27:34 sturn-test /usr/local/sbin/opensips[12015]: 
WARNING:core:handle_timer_job: utimer job  has a 3945 
us delay in execution


When I get this Warning, calls are getting failed.

Why am getting this warning and what could be done to avoid it?

Regards,
Agalya



___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Username in location table of opensips-1.11 .

2016-08-25 Thread Bogdan-Andrei Iancu

Hi Panda,

Actually RFC3261 says that the AOR matching is case sensitive. So, 1.11 
is acting like that.


Please see:
http://www.opensips.org/html/docs/modules/1.11.x/registrar.html#id293632

Regards,

Bogdan-Andrei Iancu
OpenSIPS Founder and Developer
http://www.opensips-solutions.com

On 25.08.2016 13:35, Sasmita Panda wrote:

Hi All ,

 I am using opensips-1.11 . I am facing some problem while doing 
lookup .


There is two agent . SIP and SIP1
Both are register in with the above name .
Now SIP1 is calling SIP , and the request uri in INVITE is like bellow .

*INVITE sip : s...@sip-aws.i3clogic.com:5507 
*

*
*
For this request SER is sending 404 not found . This is working fine with
 opensips-1.6  . But in opensips-1.11 its not working .

  Is there any changes in 1.11 . As for RFC username should not be 
case sensitive . So why is the Server sending 404 for the request .



Please help me I am block with this .

*/Thanks & Regards/*
/Sasmita Panda/
/Network Testing and Software Engineer/
/3CLogic , ph:07827611765/


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] Username in location table of opensips-1.11 .

2016-08-25 Thread Sasmita Panda
Hi All ,

 I am using opensips-1.11 . I am facing some problem while doing lookup
.

There is two agent . SIP and SIP1
Both are register in with the above name .
Now SIP1 is calling SIP , and the request uri in INVITE is like bellow .

*INVITE sip : s...@sip-aws.i3clogic.com:5507
*

For this request SER is sending 404 not found . This is working fine with
 opensips-1.6  . But in opensips-1.11 its not working .

  Is there any changes in 1.11 . As for RFC username should not be case
sensitive . So why is the Server sending 404 for the request .


Please help me I am block with this .

*Thanks & Regards*
*Sasmita Panda*
*Network Testing and Software Engineer*
*3CLogic , ph:07827611765*
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users