[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Out of memory exception in implementing HttpEventServlet

2009-07-20 Thread vijayravi_srn
Hi, I have written a servlet which implements HttpEventServlet in Jboss 5.0, here is my event method. public void event(HttpEvent event) throws IOException, ServletException { HttpServletRequest request = event.getHttpServletRequest(); HttpServletResponse

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Writing Comet Programming in Jboss 5

2009-07-14 Thread vijayravi_srn
Hi, Can any one have a sample program for Comet in Jboss 5 ? I tried implementing org.jboss.servlet.http.HttpEventServlet . It is working . but after some time i am getting OutOfMemoryError. Thanks View the original post :

[jboss-user] [Advanced Documentation] - How to configure APR or native library in JBoss AS 5.0.0

2009-07-07 Thread vijayravi_srn
Hi, I am trying to configure native library in JBoss AS5.0.0 in Fedora Linux. 1) i downloaded jboss native jboss-native-2.0.6-linux2-x86-ssl.tar.gz 2) copied the *.so and engine folder into my $JBOSS_HOME/bin/META-INF/lib/linux2/x86 and copied openssl into $JBOSS_HOME/bin/ 3) started my

[jboss-user] [Advanced Documentation] - Re: How to configure APR or native library in JBoss AS 5.0.0

2009-07-07 Thread vijayravi_srn
Yes , Its working now , Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4242271#4242271 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4242271 ___ jboss-user mailing list

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Asynchronous HTTP Request is not working as excepted for Re

2009-07-05 Thread vijayravi_srn
Hi, I have written a simple Asynchronous HTTP Request RestEasy Application which contains two methods . 1) asyncBasic() -- asynchronous method 2) basic() --- normal RESTeasy http handler method i.e. synchronous I deployed this App in Jboss 5.0.0(native library enabled) and Case 1: