Peter,<br>   Appreciate your detailed response. The client we are using is compliant with the GSM RCS spec and the xml (including the use of external anchors) comes straight from the specs. Are you aware of  any  RLS capable clients that doesn&#39;t use external anchors but comply with the RCS specifications for presence? We&#39;ve used Jitsi - but that doesn&#39;t seem to support rls. <br>

<br>Your description below got me thinking on how the back end subscribes would get routed. Since the code would find the clients own entry in the resource-list (see below) it initiates a back-end subscribe to it - and when it was coming to my routing logic in the config file since it was a subscribe with a supported &quot;eventlist&quot; header - it was calling rls_handle_subscribe again causing the looping issue. So the way I resolved that was by adding the following code in my routing logic:<br>
<br><pre>  &lt;list name=&quot;rcs&quot;&gt;
    &lt;display-name&gt;All Contacts&lt;/display-name&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/%7E%7E/resource-lists/list%5B@name=%22doubango%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22doubango%22%5D</a>&quot;
/&gt;
    &lt;entry uri=&quot;<a>sip:8475551001@ip</a>&quot; /&gt;
  &lt;/list&gt;</pre><br><br> if( is_method(&quot;SUBSCRIBE&quot;))<br>        {<br>                #xdbg(&quot;======== Handling subscribe request ==== \n&quot;);<br>                if ($hdr(&quot;User-Agent&quot;) =~&quot;IM-client&quot;)<br>
                {<br>                   $var(ret_code) = rls_handle_subscribe();<br>                   #xdbg(&quot;========= RLS Handle subscriber returned with ret code: $var(ret_code) ===\n&quot;);<br>                   if ($var(ret_code) == 10)<br>
                   {<br>                      xdbg(&quot;======== Calling Handle subscribe ===== \n&quot;);<br>                      handle_subscribe();<br>                   }<br>                }<br>                else<br>
                {<br>                   handle_subscribe();<br>                }<br>                t_release();<br>        }<br><br>This seems to resolve the looping issue. However, now I don&#39;t see an entry for the dialog in the rls_watchers table. I see the following entries in the respective tables:<br>
<ul><li>One presentity in the presentity table - <b>Yes</b><br></li><li>One presence.winfo dialog in the active_watchers table- <b>Yes</b> <b>+ 1 presence entry </b><br></li><li>One presence dialog in the rls_watchers table- <b>No entries after the change</b><br>
</li><li>One presence dialog for each &lt;entry /&gt; in the resource-list in the pua table- <b>Yes</b> (just itself for now)<br></li><li>One presence dialog for each &lt;entry /&gt; in the resource-list in the active_watchers table- <b>Yes (just itself for now)</b><br>
</li><li>One entry in the watchers table for each watcher/presentity
 relationship indicating state (active, pending, terminated, etc) - 
these are the cached (to avoid the overhead of continually re-parsing 
the same XML document) results of the presence module processing 
pres-rules for each presence subscription- <b>Yes (just itself for now)</b><br></li></ul><br>I am pretty sure if I add a contact this is not going to work because of the external anchors. But not sure why an entry is not getting added to the rls_watchers table after my change. I would think it should get added for the initial subscribe from the client. <br>
<br><br><br>Again appreciate you taking the time to respond. Is there any plan to add support for external anchors in the new future? <br><br>Thanks,<br>Sangeeta<br>
<br><pre><br><br></pre><br><br> <br><br><div class="gmail_quote">On Fri, Oct 26, 2012 at 12:07 PM, Peter Dunkley <span dir="ltr">&lt;<a href="mailto:peter.dunkley@crocodile-rcs.com" target="_blank">peter.dunkley@crocodile-rcs.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><u></u>


  
  

<div>
Hi,<br>
<br>
External anchors are not currently supported by the Kamailio RLS module.  The presence of these do not explain all of the symptoms you are seeing - but you are not going to be able to get your resource-lists working properly if they are in there - at best these will be ignored, at worst they will cause errors.<br>


<br>
For each &lt;entry /&gt; in your resource list the RLS module will create a back-end subscription (using the PUA module) to a Presence Server.  When using Kamailio it is often the case that this Presence Server is actually the Kamailio presence module running on the same instance of Kamailio as RLS and PUA - but even in this case Kamailio will create and send a real SUBSCRIBE request (it&#39;ll just loop to itself).<br>


<br>
After logging in with an RLS capable client you should end up with the following:
<ul>
    <li>One presentity in the presentity table
    </li><li>One presence.winfo dialog in the active_watchers table
    </li><li>One presence dialog in the rls_watchers table
    </li><li>One presence dialog for each &lt;entry /&gt; in the resource-list in the pua table
    </li><li>One presence dialog for each &lt;entry /&gt; in the resource-list in the active_watchers table
    </li><li>One entry in the watchers table for each watcher/presentity relationship indicating state (active, pending, terminated, etc) - these are the cached (to avoid the overhead of continually re-parsing the same XML document) results of the presence module processing pres-rules for each presence subscription
</li></ul>
The rls_presentity table will be empty until you have multiple clients signed in concurrently and are sharing presence between them.<br>
<br>
Regards,<br>
<br>
Peter<div><div><br>
<br>
On Fri, 2012-10-26 at 10:44 -0500, Sangeeta Shah wrote:
<blockquote type="CITE">
<pre>Hugh,
   Thanks for the response.

When the client subscribes to the presence.winfo event - it does
result in an entry in the active_watchers table.

Then it is sending a subscribe to the presence event with the
supported header set to &quot;eventlist&quot;

Also I am starting from an empty database. So as you said, the client
is getting a 404 back and then putting the pres-rules, rls-services,
and resource-lists documents. The client that is connecting has no
contacts. All 3 documents have external anchors which I unfortunately
cannot disable :(

So the resource-list XML is as follows:
&lt;resource-lists xmlns=&quot;urn:ietf:params:xml:ns:resource-lists&quot;&gt;
  &lt;list name=&quot;rcs&quot;&gt;
    &lt;display-name&gt;All Contacts&lt;/display-name&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22doubango%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22doubango%22%5D</a>&quot;
/&gt;
    &lt;entry uri=&quot;<a>sip:8475551001@ip</a>&quot; /&gt;
  &lt;/list&gt;
  &lt;list name=&quot;rcs_blockedcontacts&quot;&gt;
    &lt;display-name&gt;Blocked Contacts&lt;/display-name&gt;
  &lt;/list&gt;
  &lt;list name=&quot;rcs_revokedcontacts&quot;&gt;
    &lt;display-name&gt;Revoked Contacts&lt;/display-name&gt;
  &lt;/list&gt;
  &lt;list name=&quot;oma_allcontacts&quot;&gt;
    &lt;display-name&gt;OMA All Contacts&lt;/display-name&gt;
  &lt;/list&gt;
  &lt;list name=&quot;oma_blockedcontacts&quot;&gt;
    &lt;display-name&gt;OMA Blocked Contacts&lt;/display-name&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22rcs_blockedcontacts%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22rcs_blockedcontacts%22%5D</a>&quot;
/&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22rcs_revokedcontacts%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22rcs_revokedcontacts%22%5D</a>&quot;
/&gt;
  &lt;/list&gt;
  &lt;list name=&quot;oma_buddylist&quot;&gt;
    &lt;display-name&gt;OMA BuddyList&lt;/display-name&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22rcs%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22rcs%22%5D</a>&quot;
/&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22oma_pocbuddylist%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22oma_pocbuddylist%22%5D</a>&quot;
/&gt;
  &lt;/list&gt;
  &lt;list name=&quot;oma_grantedcontacts&quot;&gt;
    &lt;display-name&gt;OMA Granted Contacts&lt;/display-name&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22rcs%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22rcs%22%5D</a>&quot;
/&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22oma_buddylist%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22oma_buddylist%22%5D</a>&quot;
/&gt;
  &lt;/list&gt;
  &lt;list name=&quot;oma_pocbuddylist&quot;&gt;
    &lt;display-name&gt;OMA POC BuddyList&lt;/display-name&gt;
  &lt;/list&gt;
  &lt;list name=&quot;doubango&quot;&gt;
    &lt;display-name&gt;My Default Contacts&lt;/display-name&gt;
  &lt;/list&gt;
&lt;/resource-lists&gt;

Now when I run tcpdump on the loopback interface I see a ton of
messages generated from the server - to the server as follows
(excerpt), there are a ton of presence subscribes and corresponding
notifies that are going back to the server, only one instance of the
publish below:

PUBLISH <a>sip:8475551001@ip</a> SIP/2.0

Via: SIP/2.0/UDP kamailio-ip;branch=z9hG4bK6596.773f3d36.0

To: <a>sip:8475551001@kamailio-ip</a>

From: <a>sip:8475551001@kamailio-ip</a>;tag=533cb9e91f4b999cf76861cbb9ed54ed-404e

CSeq: 10 PUBLISH

Call-ID: <a href="mailto:3a1e3ea20824a642-1670@127.0.0.1" target="_blank">3a1e3ea20824a642-1670@127.0.0.1</a>

Content-Length: 499

User-Agent: kamailio (3.3.2 (x86_64/linux))

Max-Forwards: 70

Event: reg

Expires: 3601

Content-Type: application/reginfo+xml



&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;reginfo xmlns=&quot;urn:ietf:params:xml:ns:reginfo&quot; version=&quot;0&quot; state=&quot;full&quot;&gt;
  &lt;registration aor=&quot;<a>sip:8475551001@kamailio-ip</a>&quot; id=&quot;0x7f62677013a0&quot;
state=&quot;active&quot;&gt;
    &lt;contact id=&quot;0x7f6267701410&quot; state=&quot;active&quot; event=&quot;created&quot;
expires=&quot;600000&quot; callid=&quot;ea899804-de89-fdff-2f22-176bd8996221&quot;
cseq=&quot;15648&quot; received=&quot;&quot; path=&quot;&quot; user_agent=&quot;IM-client/OMA1.0
Boghe/v2.0.97.687&quot;&gt;
      &lt;uri&gt;<a>sip:8475551001@10.51.2.181:63311</a>;transport=udp&lt;/uri&gt;
    &lt;/contact&gt;
  &lt;/registration&gt;
&lt;/reginfo&gt;
SIP/2.0 200 OK

Via: SIP/2.0/UDP kamailio-ip;branch=z9hG4bK6596.773f3d36.0

To: <a>sip:8475551001@kamailio-ip</a>;tag=a6a1c5f60faecf035a1ae5b6e96e979a-a070

From: <a>sip:8475551001@kamailio-ip</a>;tag=533cb9e91f4b999cf76861cbb9ed54ed-404e

CSeq: 10 PUBLISH

Call-ID: <a href="mailto:3a1e3ea20824a642-1670@127.0.0.1" target="_blank">3a1e3ea20824a642-1670@127.0.0.1</a>

Expires: 3600

SIP-ETag: a.1351264309.1668.1.0

Server: kamailio (3.3.2 (x86_64/linux))

Content-Length: 0



SUBSCRIBE <a>sip:8475551001@kamailio-ip</a> SIP/2.0

Via: SIP/2.0/UDP kamailio-ip;branch=z9hG4bK761d.6ebf4355.0

To: <a>sip:8475551001@kamailio-ip</a>

From: <a>sip:8475551001@kamailio-ip</a>;tag=533cb9e91f4b999cf76861cbb9ed54ed-bfdd

CSeq: 10 SUBSCRIBE

Call-ID: <a href="mailto:3a1e3ea20824a642-1668@127.0.0.1" target="_blank">3a1e3ea20824a642-1668@127.0.0.1</a>

Content-Length: 0

User-Agent: kamailio (3.3.2 (x86_64/linux))

Max-Forwards: 70

Event: presence

Contact: &lt;<a>sip:kamailio-ip:5060</a>&gt;

Expires: 7210

Supported: eventlist

Accept: application/pidf+xml, application/rlmi+xml,
application/watcherinfo+xml, multipart/related



SIP/2.0 200 OK

Via: SIP/2.0/UDP kamailio-ip;branch=z9hG4bK761d.6ebf4355.0

To: <a>sip:8475551001@kamailio-ip</a>;tag=a6a1c5f60faecf035a1ae5b6e96e979a-8fd4

From: <a>sip:8475551001@kamailio-ip</a>;tag=533cb9e91f4b999cf76861cbb9ed54ed-bfdd

CSeq: 10 SUBSCRIBE

Call-ID: <a href="mailto:3a1e3ea20824a642-1668@127.0.0.1" target="_blank">3a1e3ea20824a642-1668@127.0.0.1</a>

Expires: 7200

Contact: &lt;<a>sip:kamailio-ip:5060</a>&gt;

Require: eventlist

Server: kamailio (3.3.2 (x86_64/linux))

Content-Length: 0



SUBSCRIBE <a>sip:8475551001@kamailio-ip</a> SIP/2.0

Via: SIP/2.0/UDP kamailio-ip;branch=z9hG4bK25f.0e3d3f64.0

To: <a>sip:8475551001@kamailio-ip</a>

From: <a>sip:8475551001@kamailio-ip</a>;tag=533cb9e91f4b999cf76861cbb9ed54ed-62f4

CSeq: 10 SUBSCRIBE

Call-ID: <a href="mailto:3a1e3ea20824a642-1672@127.0.0.1" target="_blank">3a1e3ea20824a642-1672@127.0.0.1</a>

Content-Length: 0

User-Agent: kamailio (3.3.2 (x86_64/linux))

Max-Forwards: 70

Event: presence

Contact: &lt;<a>sip:kamailio-ip:5060</a>&gt;

Expires: 7210

Supported: eventlist

Accept: application/pidf+xml, application/rlmi+xml,
application/watcherinfo+xml, multipart/related



SIP/2.0 200 OK

Via: SIP/2.0/UDP kamailio-ip;branch=z9hG4bK25f.0e3d3f64.0

To: <a>sip:8475551001@kamailio-ip</a>;tag=a6a1c5f60faecf035a1ae5b6e96e979a-ceeb

From: <a>sip:8475551001@kamailio-ip</a>;tag=533cb9e91f4b999cf76861cbb9ed54ed-62f4

CSeq: 10 SUBSCRIBE

Call-ID: <a href="mailto:3a1e3ea20824a642-1672@127.0.0.1" target="_blank">3a1e3ea20824a642-1672@127.0.0.1</a>

Expires: 7200

Contact: &lt;<a>sip:kamailio-ip:5060</a>&gt;

Require: eventlist

Server: kamailio (3.3.2 (x86_64/linux))

Content-Length: 0

I am not sure if it&#39;s the nature of the resource-list document or
something in the config file that&#39;s causing this loop. I am guessing
it might be the following entry:
  &lt;list name=&quot;rcs&quot;&gt;
    &lt;display-name&gt;All Contacts&lt;/display-name&gt;
    &lt;external anchor=&quot;<a href="http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22doubango%22%5D" target="_blank">http://10.50.251.13:5060/xcap-root/resource-lists/users/sip:8475551001@ip/index/~~/resource-lists/list%5B@name=%22doubango%22%5D</a>&quot;
/&gt;
    &lt;entry uri=&quot;<a>sip:8475551001@ip</a>&quot; /&gt;
  &lt;/list&gt;

But why would all these subscribes go back to the server? Should I be
handling them in the routing code in the config file. They all have
unique to tags/from tags/and call ids.

I am willing to modify the code with some direction on how to better
handle this.

Thanks,
Sangeeta

On Fri, Oct 26, 2012 at 9:36 AM, Hugh Waite
&lt;<a href="mailto:hugh.waite@crocodile-rcs.com" target="_blank">hugh.waite@crocodile-rcs.com</a>&gt; wrote:
&gt; Hi,
&gt;
&gt; I don&#39;t know what might cause exactly the issues you are seeing, but here&#39;s
&gt; what I would do to track it down.
&gt;
&gt; 1. If no xcap documents exist on the system, the client will get a 404 and
&gt; should usually PUT some new (empty) documents.
&gt;
&gt; Assuming these &#39;empty&#39; documents exist, the following should happen when the
&gt; client logs in.
&gt; a. When the SUBSCRIBE to presence.winfo arrives it should create a single
&gt; entry in the &#39;active-watchers&#39; table. It should show a single subscription
&gt; to presence.winfo where the watcher and presentity URI are the same user.
&gt; c. When the SUBSCRIBE to RLS arrives, it should create a single entry in
&gt; &#39;rls_watchers&#39;. As there are no contacts in the resource-list doc, there are
&gt; no rls subscriptions.
&gt;
&gt; My questions to try and debug would be:
&gt; 1. Does the above happen when starting from a clean database and not having
&gt; any contacts or external links in the resource-list?
&gt;
&gt; 2. If that works, can you add contacts directly to the resource-list (like
&gt; below) and try again. Does that cause a problem? You should see entries in
&gt; &#39;pua&#39; and &#39;active-watchers&#39; for the added contacts.
&gt;
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&gt; &lt;resource-lists xmlns=&quot;urn:ietf:params:xml:ns:resource-lists&quot;&gt;
&gt;     &lt;list name=&quot;oma_buddylist&quot;&gt;
&gt;         &lt;entry uri=&quot;<a>sip:160000@example.com</a>&quot;&gt;
&gt;             &lt;display-name&gt;160000&lt;/display-name&gt;
&gt;         &lt;/entry&gt;
&gt;         &lt;entry uri=&quot;<a>sip:160001@example.com</a>&quot;&gt;
&gt;             &lt;display-name&gt;160001&lt;/display-name&gt;
&gt;         &lt;/entry&gt;
&gt;     &lt;/list&gt;
&gt; &lt;/resource-lists&gt;
&gt;
&gt; 3. Finally add the external documents and external anchors and try again.
&gt;
&gt; I haven&#39;t personally used anything that uses the external anchors feature,
&gt; but if it is only the external URIs that are causing the problem, kamailio
&gt; may think it is subscribing to the same URI each time causing a recursive
&gt; loop. This may be visible on a network trace taken on the loopback
&gt; interface.
&gt;
&gt; Regards,
&gt; Hugh
&gt;
&gt;
&gt;
&gt; On 26/10/2012 13:36, Sangeeta Shah wrote:
&gt;
&gt; Did anyone get a chance to look at this post. I upgraded to Kamailio
&gt; 3.3.2 since the changelog indicated several RLS fixes. But as soon as
&gt; I bring my client up I see 4000 entries in my PUA table and about 500+
&gt; entries in the rls_watchers table for the same presentity.
&gt;
&gt; What would trigger behavior like this? Either I have an error or am
&gt; missing something in the config file or it&#39;s my XML. Any thoughts. I
&gt; have included my config params in this email chain and my
&gt; rls-services, pres-rules and resource-lists documents are from the OMA
&gt; specs with external anchors etc.
&gt;
&gt; Thanks,
&gt; Sangeeta
&gt;
&gt; On Mon, Oct 22, 2012 at 3:32 PM, Sangeeta Shah &lt;<a href="mailto:sangeeta.shah@gmail.com" target="_blank">sangeeta.shah@gmail.com</a>&gt;
&gt; wrote:
&gt;
&gt; Hello All,
&gt;    I am hoping the authors of the RLS/PUA modules can answer this
&gt; question since I am not sure what&#39;s going on. I have the rls module
&gt; enabled, with the following config spec:
&gt;
&gt; # ------rls module params ------
&gt; modparam(&quot;rls&quot;, &quot;db_url&quot;, DBURL)
&gt; modparam(&quot;rls&quot;, &quot;db_mode&quot;, 2)
&gt; modparam(&quot;rls&quot;, &quot;integrated_xcap_server&quot;, 1)
&gt; modparam(&quot;rls&quot;, &quot;to_presence_code&quot; ,10)
&gt; modparam(&quot;rls&quot;, &quot;server_address&quot;, &quot;<a>sip:rls@ip:5060</a>&quot;)
&gt;
&gt;
&gt; #!endif
&gt;
&gt; and
&gt; modparam(&quot;pua_reginfo&quot;, &quot;default_domain&quot;, &quot;ip&quot;)
&gt; modparam(&quot;pua_reginfo&quot;, &quot;server_address&quot;, &quot;<a>sip:reginfo@ip</a>&quot;)
&gt; modparam(&quot;pua&quot;, &quot;db_mode&quot;, 2)
&gt;
&gt; So for both I have DB_MODE set to DB ONLY. For whatever reason, even
&gt; though all I am doing is bringing up my client I see over 250+ entries
&gt; in the rls_watchers table for the same watcher and over 100 entries in
&gt; the pua list table for the same presentity?
&gt;
&gt; Anyone have any idea what would be triggering this. There is
&gt; definitely not anymore more than the normal messaging going on between
&gt; the client and the server.
&gt;
&gt; Only error I see in the syslog:
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11745]: ERROR:
&gt; db_mysql [km_dbase.c:122]: driver error on query: Duplicate entry
&gt; &#39;1350937406&#39; for key &#39;expires_idx&#39;
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11744]: DEBUG:
&gt; presence [subscribe.c:1216]: subs-&gt;contact= <a>sip:rls@ip:5060</a> - len = 25
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11761]: DEBUG:
&gt; &lt;core&gt; [db_val.c:117]: converting STRING <a href="tel:%5B8475551001" value="+18475551001" target="_blank">[8475551001</a>]
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11746]: DEBUG:
&gt; &lt;core&gt; [parser/msg_parser.c:626]:  method:  &lt;SUBSCRIBE&gt;
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11745]: ERROR:
&gt; &lt;core&gt; [db_query.c:210]: error while submitting query
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11744]: DEBUG:
&gt; rls [rls.h:241]: did=
&gt; <a href="mailto:41826031568472f9-11752@127.0.0.1" target="_blank">41826031568472f9-11752@127.0.0.1</a>;533cb9e91f4b999cf76861cbb9ed54ed-93a3;a6a1c5f60faecf035a1ae5b6e96e979a-464d
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11761]: DEBUG:
&gt; &lt;core&gt; [db_val.c:117]: converting STRING [10.50.251.12]
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11746]: DEBUG:
&gt; &lt;core&gt; [parser/msg_parser.c:628]:  uri:     &lt;<a>sip:8475551001@ip</a>&gt;
&gt; Oct 22 15:22:22 RCS-Presence /usr/local/sbin/kamailio[11745]: ERROR:
&gt; pua [pua_db.c:1149]: DB insert failed
&gt;
&gt;
&gt;
&gt; --
&gt; Sangeeta Shah
&gt;
&gt;
&gt;
&gt;
&gt; --
&gt; Hugh Waite
&gt; Principal Design Engineer
&gt; Crocodile RCS Ltd.
&gt;
&gt;
&gt; _______________________________________________
&gt; SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list
&gt; <a href="mailto:sr-users@lists.sip-router.org" target="_blank">sr-users@lists.sip-router.org</a>
&gt; <a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users" target="_blank">http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</a>
&gt;



</pre>
</blockquote>
<br>
</div></div><span><font color="#888888"><table cellpadding="0" cellspacing="0" width="100%">
<tbody><tr>
<td>
<pre>-- 
Peter Dunkley
Technical Director
Crocodile RCS Ltd
</pre>
</td>
</tr>
</tbody></table>
</font></span></div>

<br>_______________________________________________<br>
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list<br>
<a href="mailto:sr-users@lists.sip-router.org" target="_blank">sr-users@lists.sip-router.org</a><br>
<a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users" target="_blank">http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Sangeeta Shah<br>