Ok, this may be a silly question... but.. do you have any OpenSIPs in there? :)<br><br><div class="gmail_quote">On Thu, Feb 12, 2009 at 2:07 AM, Amit Bansal <span dir="ltr">&lt;<a href="mailto:amitbansal3@gmail.com">amitbansal3@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">I am using Salfin server as a SIP container, NetBeans as IDE, Java language &nbsp;and X-Lite as softphone.<div><br></div><div>
<a href="http://wiki.glassfish.java.net/Wiki.jsp?page=SipClickToDialExample2" target="_blank">http://wiki.glassfish.java.net/Wiki.jsp?page=SipClickToDialExample2</a></div>
<div><br></div><div>I am also tried to deploy this sample application (above link) but facing the same problem.</div><div><br></div><div>Plz help me to overcome this problem.</div><div><br></div><div>Thanks</div><div>amit</div>

<div><br></div><div><br><br><div class="gmail_quote"><div><div></div><div class="Wj3C7c">On Thu, Feb 12, 2009 at 1:00 PM, Bogdan-Andrei Iancu (via Nabble) <span dir="ltr">&lt;<a href="mailto:ml-user%2B121376-100378857@n2.nabble.com" target="_blank">ml-user+121376-100378857@n2.nabble.com</a>&gt;</span> wrote:<br>

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

Hi Amit,
<br><br>We are using weSIP for this? or....? &nbsp;Because there is no mention about 
<br>the software you are using and definitely is not OpenSIPS as you have 
<br>JAVA there :D....
<br><br>Regards,
<br>Bogdan
<br><br>Amit Bansal wrote:
</div></div><div><div><div></div><div class="Wj3C7c"><br>&gt; Hi All,
<br>&gt;
<br>&gt; I am trying to build a SIP application which will act as proxy to the 
<br>&gt; phones those are connected to it like a server that is in call centers.
<br>&gt;
<br>&gt; I have have made a servlet code is as follows..
<br>&gt;
<br>&gt; package com.sip.servlet;
<br>&gt;
<br>&gt; import javax.servlet.sip.SipServlet;
<br>&gt; import javax.servlet.sip.SipServletRequest;
<br>&gt; import javax.servlet.sip.SipServletResponse;
<br>&gt; &nbsp; 
<br>&gt;
<br>&gt; public class SimpleProxyServlet extends SipServlet
<br>&gt; {
<br>&gt; &nbsp; &nbsp; 
<br>&gt; &nbsp; &nbsp; protected void doRegister(SipServletRequest request) throws 
<br>&gt; IOException
<br>&gt; &nbsp; &nbsp; {
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; try
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; {
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println(&quot;SipServletRequest: Got doRegister:\n&quot; 
<br>&gt; + request);
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SipServletResponse resp = 
<br>&gt; request.createResponse(SipServletResponse.SC_OK);
<br>&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; resp.send();
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; }
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; catch(Exception e)
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; {
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; e.printStackTrace();
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; }
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
<br>&gt; &nbsp; &nbsp; }
<br>&gt; }
<br>&gt;
<br>&gt; and sip.xml is as follows..
<br>&gt;
<br>&gt;
<br>&gt; &lt;sip-app&gt;
<br>&gt; &nbsp; &nbsp; &lt;display-name&gt;Simple Proxy Servlet&lt;/display-name&gt;
<br>&gt; &nbsp; &nbsp; &lt;description&gt;Simple Proxy Servlet&lt;/description&gt;
<br>&gt; &nbsp; &nbsp; &lt;servlet&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;servlet-name&gt;SimpleProxyServlet&lt;/servlet-name&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;display-name&gt;SimpleProxyServlet&lt;/display-name&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;description&gt;Simple SIP proxy servlet&lt;/description&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;servlet-class&gt;com.sip.servlet.SimpleProxyServlet&lt;/servlet-class&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;load-on-startup&gt;1&lt;/load-on-startup&gt;
<br>&gt; &nbsp; &nbsp; &lt;/servlet&gt;
<br>&gt; &nbsp; &nbsp; &lt;servlet-mapping&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;servlet-name&gt;SimpleProxyServlet&lt;/servlet-name&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;pattern&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;or&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;equal&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;var&gt;request.method&lt;/var&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;value&gt;REGISTER&lt;/value&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/equal&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/or&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/pattern&gt;
<br>&gt; &nbsp; &nbsp; &lt;/servlet-mapping&gt;
<br>&gt; &lt;/sip-app&gt;
<br>&gt;
<br>&gt;
<br>&gt; I am using X-Lite softphone for testing this code. When ever first 
<br>&gt; request came to server, my doRegister of the servlet is called and 
<br>&gt; request is preocessed by the servlet. But when i am sending second 
<br>&gt; register request using other PC then it shows the request timeout on 
<br>&gt; the softphone and also my doREgister method is also not called.
<br>&gt;
<br>&gt; I have also checked that if it is problem due to sending the request 
<br>&gt; from other PC but if i send first request from other PC then servlet 
<br>&gt; process the request and again second request is not processed.
<br>&gt;
<br>&gt; Plz help me to solve this problem.
<br>&gt;
<br>&gt;
<br>&gt; Thanks.
<br>&gt; amit
<br>&gt;
<br>&gt;
<br>&gt; ------------------------------------------------------------------------
<br>&gt;
<br>&gt; _______________________________________________
<br>&gt; Users mailing list
<br></div></div>&gt; <a href="http://n2.nabble.com/user/SendEmail.jtp?type=node&amp;node=2313523&amp;i=0" rel="nofollow" target="_blank">Users@...</a>
<br><div class="Ih2E3d">&gt; <a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" rel="nofollow" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>&gt; &nbsp; 
</div></div><br><br>_______________________________________________
<br>Users mailing list
<br><a href="http://n2.nabble.com/user/SendEmail.jtp?type=node&amp;node=2313523&amp;i=1" rel="nofollow" target="_blank">Users@...</a>
<br><div class="Ih2E3d"><a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" rel="nofollow" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
<br rel="nabble-footer-start"><br>
<hr noshade size="1" color="#cccccc">
</div><div style="color:#666666;font:11px tahoma,geneva,helvetica,arial,sans-serif">
            
View message @ <a href="http://n2.nabble.com/-SIPForum-discussion--problem-in-registration-request-tp2313275p2313523.html" target="_blank">http://n2.nabble.com/-SIPForum-discussion--problem-in-registration-request-tp2313275p2313523.html</a>

<br>To unsubscribe from OpenSIPS (Open SIP Server), <a href="http://n2.nabble.com/subscriptions/Unsubscribe.jtp?code=YW1pdGJhbnNhbDNAZ21haWwuY29tfDE0NDkyNTF8MTI0ODY1MjQy" target="_blank">click here</a>.

</div>
<br rel="nabble-footer-end">
</blockquote></div><br></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>