My Purpose:<br><br>1. At Opensips, iam getting registration request as sip:aaa_bbb_cc@domain.<br>So, i need to parse this &quot;username: aaa_bbb_ccc&quot; and store it in MySQL DB as aaa,bbb,ccc against the coulmn a,b,c.<br>
<br>2. When user is registred, the URL has to be parsed and stored. During de-registration corresponding entries from the MYSQL table should be deleted.<br><br>3. In test.sh: iam parsing the username e.g &quot;aaa_bbb_ccc&quot; and rewriting it as &quot;aaa&quot;,&quot;bbb&quot;,&quot;ccc&quot; and storing it in MySQL DB.<br>
<br>Now to integrate with OpenSIPS as a fisrt step during registration , iam using exec_msg to execute this test.sh.<br><br>Is there any other solution, i can do it. ?<br><br><br><div class="gmail_quote">On Tue, Jul 6, 2010 at 7:36 PM, Brett Nemeroff <span dir="ltr">&lt;<a href="mailto:brett@nemeroff.com">brett@nemeroff.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">On Tue, Jul 6, 2010 at 8:31 AM, Premalatha Kuppan <span dir="ltr">&lt;<a href="mailto:premalatha@ngintech.com" target="_blank">premalatha@ngintech.com</a>&gt;</span> wrote:<br>
<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Thanks. I have tried $rU, but is executing as null,<br><br>executing [./etc/opensips/test.sh &lt;null&gt;]<br><br>Is exec_msg is teh correct command to use to execute shell script ?<br><br></blockquote></div><br></div><div>
It&#39;s been a while  since I&#39;ve used it, but I think so. The point of the _msg version of it is that it makes the whole SIP message available to the shell script. </div>

<div><br></div><div>exec_msg(&quot;test.sh $rU&quot;);</div><div><br></div><div>should work...</div><div><br></div><div>You shouldn&#39;t really need to pass in $rU since I believe rU is available in variables inside your script. </div>


<div><br></div><div>Is there a reason you are doing what you are doing with exec instead of other modules? I used to use it when I was learning SER back in the day, but really, it&#39;s just a very expensive shortcut.</div>


<div><br></div><div>Maybe we can help you use some of the other modules to achieve what you need?<br><font color="#888888">-Brett</font></div>
<br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.opensips.org">Users@lists.opensips.org</a><br>
<a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
<br></blockquote></div><br>