Re: Announcement: ZK - an OSS project to enable rich user interfaces and easy-to-develop for Web applications

2005-11-16 Thread vineesh kumar
I just ckecked the ZK Framework by downloading it. Before going to more details I hav some queries, 1)Whether this framework can be used with struts? 2)Whether this is Lisenced? I am working on a commercial project. So wether i can adopt this framework to include on my app and i can sell the pr

How to load a class when tomcat starts

2005-12-08 Thread vineesh kumar
Hi all, I need to load a java class when tomcat starts, which will initializes some configuration files and so i can use the fields in the class throught the environment.How can i do this.? Actually I am working on a distributed application, so the configuration files may change frequently but o

How to load a class when tomcat starts

2005-12-09 Thread vineesh kumar
Hi all, I need to load a java class when tomcat starts, which will initializes some configuration files and so i can use the fields in the class throught the environment.How can i do this.? Actually I am working on a distributed application, so the configuration files may change frequently but on

Re: access denied to Tomcat manager

2005-12-20 Thread vineesh kumar
you may not have access permission to the directory containing the manager utils, check the permission of the directory webapps an others On 12/21/05, Ariel Pashtan <[EMAIL PROTECTED]> wrote: > Hi, > > > > For some reason I cannot access the Tomcat Manager application from the > Tomcat home page.

Re: Multiple Webbapps, single login.jsp??

2005-12-30 Thread vineesh kumar
It's not possible for u to simply write an index.jsp which automatically redirect the user to the login page? regards vineesh On 12/30/05, DeFreitas, Nigel <[EMAIL PROTECTED]> wrote: > Also, look up the JSTL import directive - it let's you include a > resource from the same web application, a

Re: Server push

2006-01-12 Thread vineesh kumar
Dear all, I just need to implement a telnet thru web. ie, I am using servelts, I can connect to a remote host and i am able to execute some commands and i can get the results. But my problem is that, i have to maintain the telnet session between the cleint and the servlet and has to repeated

Re: Question reg. setting the environment variable

2006-01-13 Thread vineesh kumar
which windows version u r using? Usually u can right click on start->controlpanel-> system select the ADVANCED tab then click the environmental variables at the bottom and enter ur calsspath and all On 1/13/06, gupta vidhi <[EMAIL PROTECTED]> wrote: > hello, > > i'd installed jdk-1_5_0_02-

Re: Question reg. setting the environment variable

2006-01-15 Thread vineesh kumar
ot; problem was > coming?kindly tell me why such kind of problem was arising and which version > of jdk should be installed for it? > > Regards, > Vidhi > vineesh kumar <[EMAIL PROTECTED]> wrote: > which windows version u r using? > Usually u can right click on

Re: serializing java code

2006-01-23 Thread vineesh kumar
u can just impelment the serializable interface. if u want to gnerate unique IDs for each classes u can simply use the serialver tool that comes with JDK which usually resids at the $JAVA_HOME/bin On 1/24/06, Nehal Sangoi <[EMAIL PROTECTED]> wrote: > > Hi > > I need to serialize my existing java

Re: How to find what encryption algorithm tomcat is using?

2006-01-24 Thread vineesh kumar
the default key generation algorithm is DSA try man keytool if u are on a linux machine but u can specify ur own algoithm when u generating a key like %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows) $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA (Unix) regard

Re: How to find what encryption algorithm tomcat is using?

2006-01-24 Thread vineesh kumar
sorry, ur own algorithm means any standard cryptographic algorithm,supported by java On 1/25/06, vineesh kumar <[EMAIL PROTECTED]> wrote: > the default key generation algorithm is DSA > try man keytool if u are on a linux machine > but u can specify ur own algoithm when u genera

Re: How to find what encryption algorithm tomcat is using?

2006-01-25 Thread vineesh kumar
> Does the same algorithm is used for data encryption also? If yes I think > I can get complete details about algorithm in java site since just 'RSA' > is not sufficient information. > > Thanks, > Sangita > > -Original Message- > From: vineesh kumar [mai

Re: Download file Problem - 404 error

2006-01-30 Thread vineesh kumar
deepa, plz send ur web.xml and server.xml on each change.so that we can hav a look on that and understand the problem regards vineesh On 1/30/06, DEEPA M N <[EMAIL PROTECTED]> wrote: > > > Hi Anto Paul, > > Ya I extended HttpServlet method and also service() method. > I also tried wit pack

Re: Download file Problem - 404 error

2006-01-30 Thread vineesh kumar
Deepa, plz check the following things is ur class is public? whether the class name is DownloadFiles.class itself? also check the access permissions of the class and tomcat directory if ur on a X'nix machine On 1/30/06, vineesh kumar <[EMAIL P

Re: Download file Problem - 404 error

2006-01-30 Thread vineesh kumar
Deepa this error comes bcos the classpath of urs is not set correctly.please set the classpath as of to include the serv;letapi.jar and this directory. and check whether this class is public. regards vineesh On 1/31/06, DEEPA M N <[EMAIL PROTECTED]> wrote: > Hi > I did as u said. This is w

Re: Download file Problem - 404 error

2006-01-30 Thread vineesh kumar
Also check the package name On 1/31/06, vineesh kumar <[EMAIL PROTECTED]> wrote: > Deepa this error comes bcos the classpath of urs is not set > correctly.please set the classpath as of to include the > serv;letapi.jar and this directory. and check whether this class is >

Re: Download file Problem - 404 error

2006-01-31 Thread vineesh kumar
that may be the correct path also check that package com.deepa.servlet; at the first line itself is declared in ur java file On 1/31/06, Bob Hall <[EMAIL PROTECTED]> wrote: > Deepa, > > As someone pointed out in an earlier post you need to > include the following in your DownloadFile.java file: >

Re: Download file Problem - 404 error

2006-01-31 Thread vineesh kumar
that may be the correct path also check that package com.deepa.servlet; at the first line itself is declared in ur java file - Show quoted text - On 1/31/06, vineesh kumar <[EMAIL PROTECTED]> wrote: > that may be the correct path > also check that > package com.deepa.servlet; >

Re: Download file Problem - 404 error

2006-01-31 Thread vineesh kumar
Get the directory from the application.properties file > // e.g. C:\\Temp\\Files\\ > root = propFile.getProperty("app.directory"); > } > Code continues... > I m typing the url as > http://localhost:8080/Downloadfile/servlet/DownloadFiles > > I m trying in all

Re: Download file Problem - 404 error

2006-01-31 Thread vineesh kumar
configuration On 1/31/06, vineesh kumar <[EMAIL PROTECTED]> wrote: > do u changed ur web.xml also > > the code is ok it should work.but u hav to check all the other files > also like web.xml > from the older web.xml file it was written that the servlet class is > Downloadfiles

Re: Download file Problem - 404 error

2006-01-31 Thread vineesh kumar
> I hav changed web.xml after including package. In this code i m not accessing > the servlet thr' html rather i m using the url in the browser window. > http://localhost:8080/DownloadFile/servlet/DownloadFiles > > > > > vineesh kumar <[EMAIL PROTECTED]> wrote:

Re: was 404 - now 500

2006-01-31 Thread vineesh kumar
Ok now u hav created a new hirarchy now try make a new file like Download1.xml in the {TOMCAT_HOME}/conf/Catalina/localhost directory and add the following lines in that file On 2/1/06, Glen Mazza <[EMAIL PROTECTED]> wrote: > DEEPA M N wrote: > > > Hi, > > I jus tried this. I created another

Session Timeout

2006-02-27 Thread vineesh kumar
Dear all, I am having an application, which is using tomcat 5.5.9 on RedHat enterprise linux 4.0 and java 1.4 .My problem is thet in my application,at certain stage I am opening a window(using javascript) and loading an applet,which simply connects to the server and get some information,at t

Re: Users

2006-03-15 Thread vineesh kumar
ommands, e-mail: [EMAIL PROTECTED] > > -- Vineesh Kumar Software Engineer ISS-RnD Department HCL infosystems Ltd Cochin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tomcat 5.0.28 on RH 4.0

2006-03-30 Thread vineesh kumar
TED]> wrote: > Hi Folks: > > Have anyone run tomcat successfully on RHEL AS 4.0? If yes, what > version? > thanks, > -sunitha > > -- Vineesh Kumar Software Engineer ISS-RnD Department HCL infosystems Ltd Cochin -

Re: tomcat 5.0.28 on RH 4.0

2006-03-31 Thread vineesh kumar
average maximum 20 concurrent > user . > > On 3/31/06, vineesh kumar <[EMAIL PROTECTED]> wrote: > > > > Hi, > > I am running RHEL ES 4.0, with tomcat 5.5 (actual deployment > > server) and 5.0 on an experimental server for last 9 months > > consistantly

Re: Re[2]: Tomcat works on Linux localhost but not in the network

2006-04-17 Thread vineesh kumar
mail: > >> [EMAIL PROTECTED] > >> For additional commands, e-mail: > >> [EMAIL PROTECTED] > >> > >> > > > jl> __ > jl> Do You Yahoo!? > jl> Tired of spam? Yahoo! Mail has the best sp

Re: Re[4]: Tomcat works on Linux localhost but not in the network

2006-04-24 Thread vineesh kumar
jl> I recently installed Tomcat on a Linux > >> Machine > >> >> when I > >> >> jl> tried "localhost:8080" I get the welcome page > >> >> nut if I > >> >> jl> call the same from anoth

Re: tomcat response slow

2006-05-19 Thread vineesh kumar
il: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Vineesh Kumar Software Engineer ISS-RnD Department HCL infosystems Ltd Cochin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Class loading question

2006-05-22 Thread vineesh kumar
Dear Peter, > - Ensure a garbage collection before the files need to be deleted - can > be difficult, as System.GC() is only a hint (as I found out when I ran > into this under somewhat different circumstances); With java 1.5.0_04, I think it's possible to force the gc to run manually.

Re: NetBeans 5.0 and Tomcat 5.5.16 ... Please Help

2006-06-01 Thread vineesh kumar
get a '404 error' while accessing the remote sql*server. Can someone help me on this? Is there a problem with NetBeans 5.0? Is there any other IDE can I use? Lastly, is there a tomcat user group in Bangalore, India? Thanks in advance for your help. Vijaya -- Vineesh Kumar Software

Re: Unable to access installed applications

2006-06-06 Thread vineesh kumar
d webdav I checked the log file catalina.out where it is listed that my application helloWorld, tomcat-docs and webdav are installed. What could I be doing wrong? Please advice. Thanks in advance! Sree - Let's start Yahoo! Auction - Free Campaign Now

Re: Need Help

2006-06-26 Thread vineesh kumar
s with the help of tomcat only. Will you anyone please send me some information about how tomcat is running and some beginner learning materials for Tomcat. and please explain configuration files (.xml) briefly. Thanks & Regards K.G.Ravichandran HCL Technologies Ltd. -- Vineesh Kuma