Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Atanu Neogi
So, essentially, your web application is creating server socket instances and listening on them outside the context of Tomcat, right? That is, from your servlet code you are doing something like (new java.net.ServerSocket()).accept() ? Why do you call the ports are random? Is it because your

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Atanu Neogi
does not use RMI. The server sockets are used to pass data (serialized ofcourse) between the client and our web server. Our webapplication displays real-time data of our servers. Atanu Neogi wrote: So, essentially, your web application is creating server socket instances and listening on them

Re: CORRECTION: Can a servlet receive a response to its own request?

2005-05-18 Thread Atanu Neogi
Make your servlet act like a java HTTPS client using the java.net.URL, java.net.HttpURLConnection and javax.net.ssl.HttpsURLConnection classes. Read from the response input stream (using java.io. classes) returned by the connection. You will need to write your own hostname verifier and have

RE: No such list! s (AM I THE ONLY ONE GETTING THIS SPAM)?

2005-05-17 Thread Atanu Neogi
We have all been getting it for last couple of days. I added a spam filter on the sender domain. Guy Katz [EMAIL PROTECTED] 05/17/2005 01:46 AM Please respond to Tomcat Users List tomcat-user@jakarta.apache.org To Tomcat Users List tomcat-user@jakarta.apache.org cc Subject RE: No such

In-memory session replication without Clustering

2005-05-13 Thread Atanu Neogi
Hi, a.What is the best way to share a HttpSession between web applications running on a single Tomcat instance ? That Tomcat instance is not a cluster node and clustering has not been enabled. b. What is the best way to share other java Object information (without using common

Re: In-memory session replication without Clustering

2005-05-13 Thread Atanu Neogi
PM Please respond to Tomcat Users List tomcat-user@jakarta.apache.org To Tomcat Users List tomcat-user@jakarta.apache.org cc Subject Re: In-memory session replication without Clustering From: Atanu Neogi [EMAIL PROTECTED] Sent: Friday, May 13, 2005 10:38 AM Hi, a.What is the best

RE: Interface to admin manager web application

2005-04-29 Thread Atanu Neogi
cc Subject RE: Interface to admin manager web application Well you can use a httpurlConnection ? In your java code to do the work Regards Guru -Original Message- From: Atanu Neogi [mailto:[EMAIL PROTECTED] Sent: 29 April 2005 00:42 To: Tomcat Users List Subject: Interface

Interface to admin manager web application

2005-04-28 Thread Atanu Neogi
Hi, I need to write a non-browser GUI application to do the same set of actions currently performed by the HTML interface of the Tomcat manager and admin web applications. I looked at whatever documentation is currently avialable for JMX proxy servlet. Before I delve into the Tomcat