Re: [OT] generate HTML file from XML and XSLT

2003-11-13 Thread chekuri raju
to get an Html output you can use JAXP's javax.xml.transform.* Package. to mail the same out put you have to generate a String containing all the html output and use the ByteArrayDataSource.java class which u get from java mail examples from sun. i did this in one of my project.let me know if u

RE: Actions which create sessions seem to hang

2003-11-21 Thread chekuri raju
hi brian , java.util.Enumeration enum = session.getAttributeNames(); may be this will help u find out how many sessions are there. cheers srinivas Brian McSweeney <[EMAIL PROTECTED]> wrote: Hi Mike, Thanks very much for the reply. I think in jboss there is a standard session timeout anyway

RE: Can't open file: 'vip_detail_tab.MYD'. (errno: 144)

2003-11-26 Thread chekuri raju
Hai Viru, even i had the same problem some time back could fix it with this below command mysql>repair table vip_detail_tab; u can look at the help options under mysql command prompt srinivas Marcos Oliva <[EMAIL PROTECTED]> wrote: Viru, have you tried looking into the MySQL errro 144 ?, yo

Re: Scheduler

2003-12-02 Thread chekuri raju
Hi All, we are using a simple servlet which acts as a scheduler. in its init() we get the at what time to execute from props file and call java.util.Timer.schedule() in it.the schedule() takes an object(which implements java.util.TimerTask) as parameter regards srinivas

RE: [OT ]BasicDataSource class of package org.apache.commons.dbcp

2003-12-17 Thread chekuri raju
hello jitesh, why do u need to bother about BasicDataSource code if u r running it on any server just configure the configuration files and use JNDI lookup to get the connection and your close() on Connection object returns the con obj to pool regards srinivas Jitesh Sinha <[EMAIL PROTECT

RE: deleted ApplicationResources_de.properties ghost

2004-01-20 Thread chekuri raju
Hi Eric i think if ur application does not know which file to read then by default it reads AppXX_de.props file.as _de.props comes before _en.props (in alphabatical order after de we get en) thanks srinivas Eric Bariaux <[EMAIL PROTECTED]> wrote: Do you have a "default" xxx.properties fil

Re: OT Chart generation Framework

2004-01-20 Thread chekuri raju
Hi otavio, http://www.jfree.org/jfreechart/samples.html may be this url should help. we use Cwolf its really good for charts if u have any issues please get back srinivas Otávio Augusto <[EMAIL PROTECTED]> wrote: I've heard and read a lot about Cewolf, but was not able to work withit. I tryed

RE: dbcp and mysql

2004-01-25 Thread chekuri raju
hi Andrea this is my configuration url jdbc:mysql://localhost:3306/xx maxIdle 2 maxActive 5 driverClassName

RE: corporate hierarchy

2004-02-16 Thread chekuri raju
hi , http://www.jenkov.dk/projects/treetag/treetag.jsp Have a look at it its really simple i used it . if any doubts get back cheers srinivas "McCormack, Chris" <[EMAIL PROTECTED]> wrote: Write it using DHTML. I have written a few things that sound similar to what you are trying to achieve al