Re: How to use a gzip javascript file in a webapp running under tomcat

2009-06-11 Thread balachandra maddina
Hi chris, Thx for the reply. just after posting the question i tried the same steps and the files are getting gzip. Thank you, bala. On 6/11/09, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bala, On 6/10/2009 8:37 AM, balachandra

Re: Using tomcat as standalone

2009-06-11 Thread balachandra maddina
Hi Chuck, Thx for the detailed info. i'll keep a note of these details during deployment. Thank you, bala. On 6/11/09, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: balachandra maddina [mailto:chandu2...@gmail.com] Subject: Using tomcat as standalone Im wondering what

How to use a gzip javascript file in a webapp running under tomcat

2009-06-10 Thread balachandra maddina
Hi There, Im wondering if its possible to referr a javascript file something like script ... src ='scriptfile.js.gz' in a html page where the script file is located in one of the tomcat webapps? if not how to send a gzip javascript file to browser? any help would be appreciated. Thx, bala.

Using tomcat as standalone

2009-06-10 Thread balachandra maddina
Hi There, Im wondering what are the performance implications of using tomcat as standalone? many suggested to use the tomcat along with IIS. but im not sure why is this required? could somebody help me on this please. Thank you, bala.

What is the working flow of chat example

2009-05-08 Thread balachandra maddina
Hi, When i try the chat example. it asks me to enter some details in text box after filling the text box and hitting the enter the same page is displayed asking me to enter details in text box. what aspect of Comet is this example representing. Thank you, bala.

Trouble Implementing CometProcessor

2009-05-06 Thread balachandra maddina
Hi All, Im trying to implement the comet chat example that is provided in tomcat docs. its said that when a servlet implements CometProcessor interface then when this servlet is called instead of calling the service method the event method will be invoked. but after implementing the interface

Re: Trouble Implementing CometProcessor

2009-05-06 Thread balachandra maddina
I just created a simple example implementing the CometProcessor interface and seems the request is calling event method. i just need to work furthour on this. sorry for the trouble. Thank you, bala. On Wed, May 6, 2009 at 12:43 PM, balachandra maddina chandu2...@gmail.comwrote: Hi All, Im

comet with httpclient

2009-05-06 Thread balachandra maddina
Hi All, Is it possible to use HttpClient as a client to comet servlet when i tried a simple HttpClient the response is never returned back. below is my comet client code... HttpClient httpclient = new DefaultHttpClient(); HttpGet httpget = new

Re: comet with httpclient

2009-05-06 Thread balachandra maddina
Hi Martin, I have the same implementation as a servlet please find the servlet code i used blow. public class CometServlet extends HttpServlet implements CometProcessor { protected ArrayListHttpServletResponse connections = new ArrayListHttpServletResponse(); protected MessageSender

StandardServer.await: Invalid command 'GET / HTTP/1.1' received

2009-05-05 Thread balachandra maddina
Hi All, When i tried to configure the tomcat6 with eclipse im getting following error 5 May, 2009 3:24:11 PM org.apache.catalina.core.StandardServer await WARNING: StandardServer.await: Invalid command 'GET / HTTP/1.1' received im using eclipse ganymede and the the server configuration is

Re: StandardServer.await: Invalid command 'GET / HTTP/1.1' received

2009-05-05 Thread balachandra maddina
Hi Rainer, Thx a lot for the solution. yes, you are right, after changing the admin port to 8005 in the config it worked fine. Thank you, bala. On 5/5/09, Rainer Frey rainer.f...@inxmail.de wrote: On Tuesday 05 May 2009 12:01:24 balachandra maddina wrote: Hi All, 5 May, 2009 3:24:11 PM

Re: Comet implimentation

2009-05-04 Thread balachandra maddina
Hi Andreas, Thx for the reply. but im looking towards a hand code solution rather using an additional framework. i have downloaded the comet example that is placed in tomcat wiki which uses an Applet as a client. and trying to understand this better so i can use this with other clients like an