Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-19 Thread Talal Rabaa
Looks like you have another service (not necessarily Tomcat) running on port 98. On 2011-11-19, at 1:44 PM, Eric Kemp wrote: > Summary: I'm looking for ideas on how to resolve this "Address already > in use" error when configuring SSL in Tomcat APR. > > Environment: > Running Apache Tomcat/6.0.2

RE: Deploy application from Eclipse (windows) to Tomcat (in linux).

2008-08-08 Thread Talal Rabaa
Check out SCP task for Ant (link below). Incorporate it into your project build script and you can call it in or out of Eclipse to update your Linux deployment. Once perfected, you can have Eclipse deploy updates automatically to the Linux box as a supplemental builder. http://ant.apache.org/

RE: Setting up Comet on Tomcat 6

2008-08-05 Thread Talal Rabaa
comet testing.comet.CometConnection testcomet /comet server.xml has hit http://localhost:8080/comet with my browser, output is Comet test servlet initialized. Comet test initialized. Received event BEGIN Filip Talal Rabaa wrote: > package testing.comet; > > import java.io.IOExcepti

RE: Setting up Comet on Tomcat 6

2008-07-31 Thread Talal Rabaa
package testing.comet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.catalina.CometEvent; import org.apache.catalina.CometPro

Re: Setting up Comet on Tomcat 6

2008-07-30 Thread Talal Rabaa
this class. Anthony On 30/07/08 9:27 AM, "Filip Hanik - Dev Lists" <[EMAIL PROTECTED]> wrote: > does your servlet iimplement the CometProcessor interface? > > Filip > > Talal Rabaa wrote: >> Hello! >> >> I apologize if this question has been

Setting up Comet on Tomcat 6

2008-07-29 Thread Talal Rabaa
Hello! I apologize if this question has been asked many times before. I've searched quite a bit for concrete answers on how to setup Comet but I'm having no luck. From what I understand, all that is needed to successfully set it up is to replace the default connector with either NIO or APR.