Java based spell check

2011-06-27 Thread Ashish Kulkarni
Hi Does anyone know of open source Java based spell check which does not call google webservice for spell check? Like pspell in PHP which can be hosted in intranet environment -- Ashish www.ayurwellness.com www.mysoftwareneeds.com

[OT]Configure websphere for storing session in database

2010-07-08 Thread Ashish Kulkarni
Hi Has anyone configured websphere to store session in DB2 on AS400, or any other database, I found this URL which explains how to do it, but i am not sure how to test it, i am trying to configure this with DB2 on AS400 http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=/com.ib

Re: [OT] Bypass basic authentication for included webpage

2009-11-03 Thread Ashish Kulkarni
e > user's auth info match the included page's auth info? > > > > > -Original Message- > > From: Ashish Kulkarni [mailto:ashish.kulkarn...@gmail.com] > > Sent: Tuesday, November 03, 2009 11:32 AM > > To: Struts Users Mailing List > > Subject:

[OT] Bypass basic authentication for included webpage

2009-11-03 Thread Ashish Kulkarni
Hello I have to include a webpage into my existing web application, this webpage required basic authentication, so when i include this webpage into my application and run i get a basic authentication pop up window, is there a way i can pass user id, password in header or some thing so i dont get th

Re: [Struts 1.2]Validation and multiple struts-config files

2009-09-08 Thread Ashish Kulkarni
HiAny ideas? On Fri, Aug 28, 2009 at 11:42 AM, Ashish Kulkarni < ashish.kulkarn...@gmail.com> wrote: > HiIf i have 2 struts-config.xml file can i have ValidatorPlugIn tag in > both struts-config.xml file, will this work?? > > I ran into some issue trying to do so, i was gett

[Struts 1.2]Validation and multiple struts-config files

2009-08-28 Thread Ashish Kulkarni
HiIf i have 2 struts-config.xml file can i have ValidatorPlugIn tag in both struts-config.xml file, will this work?? I ran into some issue trying to do so, i was getting could not find testForm in local "en_us" kind of error when trying to add client side validation For example if i have struts

Re: Handle Japanese characters from jsp page into ActionClass

2009-07-28 Thread Ashish Kulkarni
27, 2009 at 4:32 PM, Greg Lindholm wrote: > That filter will work with struts 1. Just be sure it's early in the filter > chain before anyone is reading the request. > I always make it the first filter. > > On Mon, Jul 27, 2009 at 4:23 PM, Ashish Kulkarni < > ashish.k

Re: Handle Japanese characters from jsp page into ActionClass

2009-07-27 Thread Ashish Kulkarni
HiI am using struts 1.2.6 and not yes in struts 2, So should i just put in a general filter to do encoding? Ashish On Mon, Jul 27, 2009 at 4:10 PM, Greg Lindholm wrote: > On Mon, Jul 27, 2009 at 3:34 PM, Ashish Kulkarni < > ashish.kulkarn...@gmail.com> wrote: > > > HiI

Handle Japanese characters from jsp page into ActionClass

2009-07-27 Thread Ashish Kulkarni
HiI have a jsp page which displays data in UTF-8 encoding, there is a input text field, when user enter japanese characters in this input text and data is transferred to Actionclass i get junk value, How do i handle japanese characters in ActionClass, do i have to do anything special in servlet or

[OT] Return Hashmap java object from servlet

2009-07-07 Thread Ashish Kulkarni
HiIs it possible to return Hashmap object from java Servlet, What kind of ContentType can i set to the response? The other option is to set data from HashMap into XML and return it as XML file. for example. I have servlet like below public class ReturnObjectServlet extends HttpServlet { public

Struts validation with multiple struts-config.xml file (struts 1.2.6)

2009-06-15 Thread Ashish Kulkarni
HiI am having issues with struts validation when i have more then one struts-config.xml file defined in web.xml Struts performs no validation for the rules i have in validation.xml file, which is part of struts-config.xml, but if i remove struts-config-admin.xml from web.xml then it performs the r

[OT] Bandwidth calculation

2009-05-18 Thread Ashish Kulkarni
HiI have to find out how much data is transferred between the client and web application server and from web application server and database, i want to find out KB or MB of data per webpage request or per session. I need to prepare a report for networking team to make sure that the webapplication

Re: [OT] Authorization and Authentication Question

2009-03-11 Thread Ashish Kulkarni
HiI was able to configure LDAP to do authentication, but how do i use UserDetailsService, is there any example of how to use this and implement it in my project to get user and role from DB2 database On Wed, Mar 11, 2009 at 10:50 AM, Ashish Kulkarni < ashish.kulkarn...@gmail.com>

Re: [OT] Authorization and Authentication Question

2009-03-11 Thread Ashish Kulkarni
ing. > > -Original Message- > From: Ashish Kulkarni [mailto:ashish.kulkarn...@gmail.com] > Sent: Wednesday, March 11, 2009 9:53 AM > To: Struts Users Mailing List > Subject: Re: [OT] Authorization and Authentication Question > > HiThanks for the suggestion, this applicatio

Re: [OT] Authorization and Authentication Question

2009-03-11 Thread Ashish Kulkarni
t; > > On Tuesday 10 March 2009 17:56:30 Ashish Kulkarni wrote: > > > HiIs it possible to Authenticate user using LDAP, but authorize using a > > DB2 > > > database, > > > I have situation where i need to authenticate and authorize some web > > pages. >

[OT] Authorization and Authentication Question

2009-03-10 Thread Ashish Kulkarni
HiIs it possible to Authenticate user using LDAP, but authorize using a DB2 database, I have situation where i need to authenticate and authorize some web pages. I want to authenticate users against LDAP, but have to maintain authorization list, roles etc in DB2 database Has anyone done anything

what is difference between listing config file with comma delimited or by module

2009-02-25 Thread Ashish Kulkarni
HiCan some one explain with example difference between configuring multiple config files separated by comma or as module How does it affect the URL? Can i define bean in one configuration file and action using this bean in different configuration file? I have an application where about 10 beans an

migration of Struts

2009-02-23 Thread Ashish Kulkarni
HiI have inherited a struts 1.2.6 application, i need to add some features to this web application. what will be the best migration policy to latest version of Struts without lot of efforts, Should i migrate it to struts 1.3.10 or to latest version 2.1.6? Is there any documentation for this migr

[OT] UML and Reverse Engineering

2008-04-11 Thread Ashish Kulkarni
Hi Is there any decent Open Source tool out there which can be used to do reverse engineering of Java code, If not open source then some thing which really works, Any input would be really appreciated Ashish

Re: display XML file in JSP page

2008-04-01 Thread Ashish Kulkarni
Hi thanks it works On 4/1/08, Laurie Harper <[EMAIL PROTECTED]> wrote: > > Ashish Kulkarni wrote: > > Hi > > I need to display XML file in JSP page (raw XML file) > > in my Action Class i read this XML file, but how do i display in proper > > format in JSP,

display XML file in JSP page

2008-04-01 Thread Ashish Kulkarni
Hi I need to display XML file in JSP page (raw XML file) in my Action Class i read this XML file, but how do i display in proper format in JSP, i want the XML file displayed as is. Regards Ashish

Re: Compile error in JSP after upgrading from servlet specification 2.3 to 2.4

2008-03-31 Thread Ashish Kulkarni
( ApprovalsValidFilter.java:90) On 3/28/08, Laurie Harper <[EMAIL PROTECTED]> wrote: > > Ashish Kulkarni wrote: > > Hi > > I get compile error in jsp at line > > > > > There's nothing wrong with that line. What is the full error you're > getting?

Compile error in JSP after upgrading from servlet specification 2.3 to 2.4

2008-03-28 Thread Ashish Kulkarni
Hi I get compile error in jsp at line I jsut upgraded web.xml from 2.3 to 2.4, i added following lines in web.xml http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2

Re: [OT] Read XML file from folder outside web application

2008-03-28 Thread Ashish Kulkarni
Hi i did File f = new File(mypath); and it works What is the danger of doing so? Ashish On 3/28/08, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > > 2008/3/28, Ashish Kulkarni <[EMAIL PROTECTED]>: > > > I can use servletContext.getResource('/WEB-INF/myconfig.xml&#

[OT] Read XML file from folder outside web application

2008-03-28 Thread Ashish Kulkarni
Hi I can use servletContext.getResource('/WEB-INF/myconfig.xml'); to read myconfig.xml file which is under WEB-INF from a servlet If i keep this file at c:/test/myconfig.xml file, can i read it from a servlet, if so how?? Ashish

Re: [OT] Write a thread to check database in web application

2007-11-05 Thread Ashish Kulkarni
sure that the class with does check database function will not go in loop or be there for ever Any suggestions On 11/5/07, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: > > On Mon, November 5, 2007 10:40 am, Ashish Kulkarni wrote: > > Hi > > I have to write a thread in we

[OT] Write a thread to check database in web application

2007-11-05 Thread Ashish Kulkarni
Hi I have to write a thread in web application which will check some values in database, and then perform some function depending on the values. There wont be any user input and this thread should be called after like 10 minutes, also i want to have a jsp page from where i can maintain this thread

[OT] Blogging Website information

2007-10-14 Thread Ashish Kulkarni
Hi I was wondering if any one knows or uses blogging website where we can put Java, HTML, Javascript code and it will be formatted differently, for example if you have used http://forum.java.sun.com you can specify [code][/code] and it formats it differently What i need to do is, write some templa

Re: [OT] Need suggestion about designing web application

2007-09-27 Thread Ashish Kulkarni
ce. The mapping of the datasource name is (usually) done > when the application is deployed. I am not familiar with how WebLogic > handle this, but maybe this website can help: > http://edocs.bea.com/wls/docs92/webapp/configureresources.html > > Nils-H > > On 9/27/07, Ashish Kul

Re: [OT] Need suggestion about designing web application

2007-09-27 Thread Ashish Kulkarni
for site 2. So there cannot be one JNDI name, but 2 JNDI in web application server, so what about this scenario On 9/27/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > > 2007/9/27, Ashish Kulkarni <[EMAIL PROTECTED]>: > > Hi > > We a to develop a web applicati

[OT] Need suggestion about designing web application

2007-09-26 Thread Ashish Kulkarni
Hi We a to develop a web application which we want to be able to deploy on any J2EE compatiable application server. We would create a war file for deployment, but there is a issue with database connection, We do not know the JNDI name, So we thought we would put xml file under WEB-INF folder, and a

Re: Validation using validation.xml issue

2007-08-31 Thread Ashish Kulkarni
Hi The error is thrown by validator frame work, and hence it never reaches action class where i can load those list again, I am not very sure how validtor framework works Ashish On 8/31/07, Laurie Harper <[EMAIL PROTECTED]> wrote: > > Ashish Kulkarni wrote: > > Hi > > I

Validation using validation.xml issue

2007-08-31 Thread Ashish Kulkarni
Hi I have a defined following bean in struts-config.xml In my action class i set datereqList and pass it along to the jsp, the jsp displays it as drop down box, in my validtion.xml i am checking to make sure that color is not blank, So when validation finds that color is blank it send response t

Re: reading properties file in action class

2007-08-31 Thread Ashish Kulkarni
Hi Thanks, it works On 8/31/07, nuwan chandrasoma <[EMAIL PROTECTED]> wrote: > > Hi, > > use getResources() method in the action > > Thanks, > > Nuwan > > On 8/31/07, Ashish Kulkarni <[EMAIL PROTECTED]> wrote: > > > > Hi > > I have abc.p

reading properties file in action class

2007-08-31 Thread Ashish Kulkarni
Hi I have abc.properties and abc_fr.properties file, if i have to print values from properties file in jsp i use tag and it will print value depending on locale, But what i want to get those values in action class, is there an direct method to do so, Like some thing getText("PL1143.datecompare") i

Re: Struts and Weblogic 10.0 issue

2007-08-30 Thread Ashish Kulkarni
ibute specifications, ">" or > "/>". > > at > > - Original Message - > From: "Ashish Kulkarni" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > Sent: Wednesday, August 29, 2007 7:18 PM > Subject: Re: Struts and

Re: Struts and Weblogic 10.0 issue

2007-08-29 Thread Ashish Kulkarni
? You showed me the stack > trace. I want to see the actual JSP line. > > On 8/29/07, Ashish Kulkarni <[EMAIL PROTECTED]> wrote: > > > > Done, voted for it > > On 8/29/07, John Liptak <[EMAIL PROTECTED]> wrote: > > > > > >

Re: Struts and Weblogic 10.0 issue

2007-08-29 Thread Ashish Kulkarni
Done, voted for it On 8/29/07, John Liptak <[EMAIL PROTECTED]> wrote: > > > Know bug CR321242. Vote for it if you have a support contract. > > > -- > View this message in context: > http://www.nabble.com/Struts-and-Weblogic-10.0-issue-tf4341662.html#a12388355 > Sent from the Struts - User mailing

Re: Struts and Weblogic 10.0 issue

2007-08-29 Thread Ashish Kulkarni
nder( ControlTreeWalker.java:529) at com.bea.netuix.nf.ControlTreeWalker.walk( ControlTreeWalker.java:220) at com.bea.netuix.nf.Lifecycle.processLifecycles On 8/28/07, Paul Benedict <[EMAIL PROTECTED]> wrote: > > Can you paste in the line of the JSP that is erring? > > On 8/28/07, Ashish Kulkarni &

Re: Struts and Weblogic 10.0 issue

2007-08-28 Thread Ashish Kulkarni
Hi It seems that weblogic console application may have error installing application developed using struts, i was able to deploy the application using command on dos Ashish On 8/28/07, Ashish Kulkarni <[EMAIL PROTECTED]> wrote: > > Hi > This is an existing application, which

Re: Struts and Weblogic 10.0 issue

2007-08-28 Thread Ashish Kulkarni
or your application and try and > get the error at runtime, vs. application deployment. > > Other than that, can you show the input field that is causing the > exception? > > > Ashish Kulkarni-2 wrote: > > > > Hi > > Has anybody run into problem installting struts ba

Struts and Weblogic 10.0 issue

2007-08-28 Thread Ashish Kulkarni
Hi Has anybody run into problem installting struts based web application on Weblogic 10.0? I have a struts application using struts 1.2.6, which i am trying to install on weblogic and i keep getting the following error This application works fine in Websphere, tomcat, Sun Error opening /jsp/app/in

logging with Log4J

2007-08-27 Thread Ashish Kulkarni
Hi Does anyone have an exmple of using log4j for logging struts messages, I have an web application where i use log4j for logging, i have a mapslog4j.xml file in WEB-INF folder and load this log file using DOMConfigurator in a servlet. This servlet is loaded before struts servlet, but some how this

Re: effect of removing commons-logging from classpath?

2007-08-24 Thread Ashish Kulkarni
Hi How do i configure sturts logging then, i have a log4j.properties file where i set my application logging, can i use the same for struts logging Ashish On 8/24/07, Paul Benedict <[EMAIL PROTECTED]> wrote: > > Impossible. Struts is built with Commons Logging. > > On 8/24/0

effect of removing commons-logging from classpath?

2007-08-24 Thread Ashish Kulkarni
Hi I have a struts 1.2.4 application, and i have log4j.jar and commons-logging.jar in classpath In my application i use log4j for logging, i wanted to know what would be effect of removing commons-logging.jar file from classpath

Re: [OT] Question about performance with last array

2007-08-10 Thread Ashish Kulkarni
the best of A-B-C or A-C-B or some thing else, any ideas? On 8/10/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > > 2007/8/10, Ashish Kulkarni <[EMAIL PROTECTED]>: > > Hi > > I have a program which creates permutations for 10 letters, so the > values i >

[OT] Question about performance with last array

2007-08-09 Thread Ashish Kulkarni
Hi I have a program which creates permutations for 10 letters, so the values i get is 10 ^10 which is more then 3 million Now i have to go through all 3 million records and do some calculations to determine the best possible combination . Any ideas what i should use, LinkedList, ArrayList, HashMap

[OT] mathematical algorithm in java

2007-05-18 Thread Ashish Kulkarni
Hi Are there any mathematical algorithm in java, for example CPM, or branch and bound algorithm Open source is good, but not a requirement, anything in C or C++ is also okay, can try to call them from java Can anyone provide some links for them Ashish

Re: [OT] How to handle non UTF characters in XML

2007-04-16 Thread Ashish Kulkarni
Hash: SHA1 > > Ashish, > > Ashish Kulkarni wrote: > > I have java class which creates an XML file from SQL resultset, > > It works fine in USA, but i am having issues when this process runs in > > Germany where they have non UTF characters in there database like ü or > á.

[OT] How to handle non UTF characters in XML

2007-04-16 Thread Ashish Kulkarni
Hi I have java class which creates an XML file from SQL resultset, It works fine in USA, but i am having issues when this process runs in Germany where they have non UTF characters in there database like ü or á. How do we handle this kind of situation in XML file, i set the XML file to be of UTF-8

Re: Issue in compiling application in websphere

2007-04-11 Thread Ashish Kulkarni
Hi I got the issue, it is the double quote , i change the jsp from to and it worked, i dont understand by websphere was not able to compile with double quotes Ashish On 4/11/07, Ashish Kulkarni <[EMAIL PROTECTED]> wrote: Hi I am getting the following jsp compilation error in web

Issue in compiling application in websphere

2007-04-11 Thread Ashish Kulkarni
Hi I am getting the following jsp compilation error in websphere 5.1 org.apache.jasper.compiler.ParseException: /pages/purchasing/contract.jsp(128,61) Attribute system has no value at org.apache.jasper.compiler.JspReader.parseAttributeValue( JspReader.java:599) This jsp compiles fine in tomcat

How can i open new window and forward request to another action class

2007-04-02 Thread Ashish Kulkarni
Hi I have to handle the following situation. 1. When user click submit on the webpage, the request goes to the action class. 2 This action class performs some task, 3 If the task is ok then this action class should forward the request to another action class and also open a new browser window 4 i

Java Source Compare utility

2006-07-19 Thread Ashish Kulkarni
Hi Is there any open source Java source comparision utility, I have 2 versions of smae code and want to find what are the excat changes, Thanx Ashish

[OT] utility to print DOM object of XML file

2006-05-24 Thread Ashish Kulkarni
Hi Is there a apache or some utility which will print XML file if i provide a document object. I am writing a program to build XML file in memory and then write it to a file, i need this utility for debug so i can print the xml file in standard output, (screen or log file) . I am using java 1.4.2

Issue with DHTML and DIV position

2006-05-02 Thread Ashish Kulkarni
Hi I am attaching a html file along this mail, and also posting a shorttext URL to view the html file What i basically want to do is get the div with  id="showtwo" below the 2 link displayed Can anyone help with this issue The code link is http://www.shortText.com/zlj8z or you can download the h

Re: ************* forwarding to a servlet from my jsp ***********

2006-04-19 Thread Ashish Kulkarni
Hi You have use following code in jsp RequestDispatcher dispatcher = request.getRequestDispatcher(servlet path); dispatcher.forward(request, response); On 4/19/06, Sony Thomas <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a struts application. From one of the jsp pages I have to forward > t

[OT] Need information about books to buy

2006-04-07 Thread Ashish Kulkarni
Hi I need to buy couple of books, 1 for AJAX, and 2 for Webservices, I know the basics of Ajax and Webservices, and need to use them in real time application These are the onces i have seen, need input from people who have read them so can purchase them Ajax 1 Ajax Hacks, by Bruce W. Perry Oreill

Has anyone intregrated DWR with AJAX?

2006-04-04 Thread Ashish Kulkarni
hi I have a website which is developed using struts, I am looking to convert some of it to AJAX and working on different approaches, In my current application, i have a common Action class which has all the common functions like getting the information stored in ServletContext, or Session or getti

RE: issue with Struts , DWR, javascript in Firefox browser

2006-04-04 Thread Ashish Kulkarni
Hi Thanx for the answer, where in documenation is it written that styleId is id?? Ashish --- "Slattery, Tim - BLS" <[EMAIL PROTECTED]> wrote: > > I am trying to do a test application using struts, > DWR > > I am having problem with document.getElementById > > method in javascript, this works fin

issue with Struts , DWR, javascript in Firefox browser

2006-04-04 Thread Ashish Kulkarni
Hi I am trying to do a test application using struts, DWR I am having problem with document.getElementById method in javascript, this works fine in IE 6.0 and opera I am using struts tag and then in my javascript doing the following document.getElementById('last').value= data; Firefox gives me

Re: using AJAX and Struts Action class how to refresh data on jsp page

2006-04-03 Thread Ashish Kulkarni
ank W. Zammetti" <[EMAIL PROTECTED]> wrote: > On Mon, April 3, 2006 1:19 pm, Ashish Kulkarni said: > > In Struts, i want to populate ActionForm, and then > > refresh jsp page > > This is pretty much the exact opposite of what AJAX > is for :) Refreshing > the whol

using AJAX and Struts Action class how to refresh data on jsp page

2006-04-03 Thread Ashish Kulkarni
hi I am trying to learn AJAX and struts together (will use some standard solution later) This is what i am doing, In my jsp i have 2 text fields FirstName and LastName when the user enters FirstName and hits enter i call a javascript which creates XMLHttpRequest objects, and calls a Action class u

[OT] Web application for pushing contents

2006-03-22 Thread Ashish Kulkarni
Hi We have an requirement where we want to update contents on a webpage automatically after 2 hours. I was doing to research if i can do it using push technology, for example our webapplication (written in struts) will push data to these client machines, after 2 hours and refresh the display page t

[OT]Struts - AJAX, best solution

2006-03-14 Thread Ashish Kulkarni
Hi I have a couple of questions below 1 What is the best soluction to have struts and AJAX work together? I have read about DWR, Java Web parts, AjaxAnywhere, But which is the good one, and why? 2 What is better for response XML file or comman delimeted string, or build HTML in action class and

RE: [OT] Utility to create DDL from a database

2006-01-19 Thread Ashish Kulkarni
ort tool? > What database are > you using? > > Ashish Kulkarni inquired > > Is there any open source utility which i can use > to > > create DDL from an existing database, so i can use > it > > to run to create tables on other database. > > This utility s

[OT] Utility to create DDL from a database

2006-01-19 Thread Ashish Kulkarni
Hi Is there any open source utility which i can use to create DDL from an existing database, so i can use it to run to create tables on other database. This utility should be smart enough to create DDL statements for tables with primary key, before tables with foreign key. That way when i run the D

[OT] utility or tool to convert HTML and JSP tags to struts or JSF tags again

2006-01-13 Thread Ashish Kulkarni
Hi we some HTML pages and jsp pages, which we want to convert to struts, or JSF Is there a utility which would read this html or jsp page and convert the tags to struts tags? I thought struts-console did it, but it seems it does not do it Is there any utilities out there open source, free possibly

Re: Create tabs using struts

2006-01-12 Thread Ashish Kulkarni
mize it: > http://www.jroller.com/page/javadujour/20060110 > > Works in both Ajax and non-Ajax mode. > > Michael. > > On 1/12/06, Ashish Kulkarni > <[EMAIL PROTECTED]> wrote: > > Hi > > Is there a any facility to create tabs in struts? > > I want to create a

Re: Create tabs using struts- URL does not work

2006-01-12 Thread Ashish Kulkarni
hi there the short description URL http://www.jroller.com/page/javadujour/20060110 does not work, give 403 error Just one more question, i can i programmatically decide which tab is to be displayed, for example, user clicks a button on tab1 , can i open tab 2 and load information and show it to use

convert html or jsp tags to struts tags

2006-01-12 Thread Ashish Kulkarni
Hi Is there a open source or free utility to convert html tags and jsp tags to equivalant struts tags? I have some HTML pages and plain jsp pages which i would like to convert to struts tags Ashish __ Do You Yahoo!? Tired of spam? Yahoo! Mail has

Create tabs using struts

2006-01-12 Thread Ashish Kulkarni
Hi Is there a any facility to create tabs in struts? I want to create a jsp page where user can click on link in one tab and the selected link will open more details in other tab, that way i dont have to reload all the page each time user click on link, i am planning to use AJAX to update other ta

How to update part of JSP using AJAX and struts action class

2006-01-12 Thread Ashish Kulkarni
Hi I have a jsp where there are 2 drop down boxes, I want to populate the value in second drop down box depending on the selection of first dropdown box, Suppose onClick event on first dropdown box i call a struts Action using AJAX, this Action class populates the Form bean and sends it back to H

Re: How to iterate using

2006-01-11 Thread Ashish Kulkarni
Hello I did a typing mistake here, i did have in my code, corcoresponding to getL082CODE method in my bean Ashish --- Rahul Akolkar <[EMAIL PROTECTED]> wrote: > On 1/11/06, Ashish Kulkarni > <[EMAIL PROTECTED]> wrote: > > Hi > > Thanx now it works, > > but

Re: How to iterate using

2006-01-11 Thread Ashish Kulkarni
AIL PROTECTED]> wrote: > On 1/11/06, Ashish Kulkarni > <[EMAIL PROTECTED]> wrote: > > Hi > > I have defined a DynaValidatorForm in > > struts-config.xml file like this > > > type="org.apache.struts.action.DynaActionForm"> > > > type=&

How to iterate using

2006-01-11 Thread Ashish Kulkarni
Hi I have defined a DynaValidatorForm in struts-config.xml file like this In My jsp i have defined a Action class which uses this bean I want to iterate through all viewNames in my jsp using tag How do i go it I tried But i get Unable to find a value for "viewNames" in object o

tag question

2006-01-11 Thread Ashish Kulkarni
Hi I am a bit confused about using and tag Suppose i have defined following in struts-config.xml file I have a bean where in i have get and set method for name and desctiption, suppose the bean is called MyBean and viewNames vector is populated by MyBean class How do i define it in jsp page

Re: Discussion forum software -- open source

2005-12-28 Thread Ashish Kulkarni
Hi you can have a look at Jforum at http://www.jforum.net/ a good software for helpdesk and discussion forum Ashish www.shriayurveda.com --- slam dunk <[EMAIL PROTECTED]> wrote: > Some of the add on modules to phpBB might not be > commercial use friendly. > Though most likely you won't need them

[OT] IDE for developing portals

2005-12-28 Thread Ashish Kulkarni
Hello What are the IDE available for developing web portals. I know a few like bowstreet (www.bowstreet.com) or IBM rational developer(http://www-128.ibm.com/developerworks/rational/products/rad/) are there anyother tools which i sould look at, preferrably open source. Ashish

[OT] utility to move data from one database to other

2005-12-15 Thread Ashish Kulkarni
Hi Is there any open source utility which will help in moving data from one database to other, Does this utility works with most available and commonly used databases. Ashish __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protecti

[OT] using Sun java studio creator or Sun Java Studio Enterprise

2005-12-13 Thread Ashish Kulkarni
Hi Has anyone used either of the tools from Sun, what is the difference between them? do they support struts development? What is your opinion about them, currently i am using myeclipseide are they worth switching? Is there a way to migrate existing projects Ashish __

[OT] Open source reporting tool in java

2005-12-06 Thread Ashish Kulkarni
Hi I need a open source reporting tool to generate reports in web application, basically create PDF reports and also pie charts and graphs etc. It should be able to create promts, and can be integrated in web appication I have looked into jasper and ireports, which looks cool Also itext and FOP bu

struts portal bridge question

2005-11-21 Thread Ashish Kulkarni
Hi Is there any tutorial, or document which shows how to use this struts portal bridge, Is there a place to download all the required jar files etc i checked this site http://portals.apache.org/bridges/multiproject/portals-bridges-struts/index.html but did not got a lot of info or documentation As

[OT] how to convert an existing struts web application into portal

2005-11-09 Thread Ashish Kulkarni
Hi We have developed a webapplication using struts, i was wondering is there a straight forward way to convert it into a portal? or do we have to develop it again Are any good resources avalibale to learn more about portal development Ashish __

Re: [OT]what techonolgies will you use to develop a new web application

2005-11-09 Thread Ashish Kulkarni
n app that uses > Spring+Struts+Tiles+iBATIS+Tomcat. > > Provide some more details on what the app will do, > and you will get > more accurate answers. > > Larry > > > On 11/9/05, Ashish Kulkarni > <[EMAIL PROTECTED]> wrote: > > Hi > > Suppose i

[OT]what techonolgies will you use to develop a new web application

2005-11-09 Thread Ashish Kulkarni
Hi Suppose i have to develop a new web application what are the best and latest techonlogies you recommend to use. 1 Framework : struts,struts+shale,jsf,tapestry 2 front end(jsp): AJAX with JSF tages or with JSTL 3 database connection: ibatis, hibernate, object relation dataase mapping 4 business

[OT] How do we answer, How heavy the application is?

2005-11-08 Thread Ashish Kulkarni
Hi I have developed a web application using struts, it has about 50 action class, about 30 servlets for applet servlet communication and about 90 jsp. Now there is another person who wants to host this application and he wants to know "How much heavy the application is" So how do i answer him, is t

How do i do this validation in struts using validWhen

2005-11-01 Thread Ashish Kulkarni
Hi Suppose i have entry text fields on a jsp, named ttype and comment, i want to add a validation saying that if ttype='2', then comment cannot be blank, if ttype='3' or any other value then comment can be blank, what i am trying is following test (ttype==2) and (comm

how do know if the validtor function is called or not

2005-10-31 Thread Ashish Kulkarni
Hi I want to validate 1 field from jsp, if other field value is '3'. so i added the following validation in validation.xml ttype 2 but it seems it is not working, here is what i have defined in my struts-config.xml file And this is how i have defin

[OT] properties file editor , or plugin for eclipse 3.1.1

2005-10-14 Thread Ashish Kulkarni
Hi Is there a good properties file editor as plugin for eclipse, This properties file editor must be able edit at the same time properties files for different locale, for example if i add a property to my.properties, then it must be able to add it my_fr.properties, my_ru.properties etc Also if poss

Re: [OT] Struts , Portal how does this fit

2005-10-06 Thread Ashish Kulkarni
; > > > HTH, > > Martin- > > > > - Original Message - > > From: "Kjersti Berg" <[EMAIL PROTECTED]> > > To: "Struts Users Mailing List" > > > Sent: Thursday, October 06, 2005 2:12 AM > > Subject: Re: [OT] Str

[OT] Struts , Portal how does this fit

2005-10-05 Thread Ashish Kulkarni
Hi 1 . Suppose we have a site up and running which has been developed using struts, can this website be a part of portal, 2 . If we have to develop a portal, can we use struts. Is there a tutorial, or how to for creating a portal using struts, or converting a existing website develop

Re: loosing style sheet, when reloading or visiting the jsp page again..found the reason

2005-10-04 Thread Ashish Kulkarni
Hi the issue was i had defined style sheet above tag i just moved the style sheet definiation below tag and now it works I wonder what may be the reason for not working Ashish --- Wendy Smoak <[EMAIL PROTECTED]> wrote: > From: "Ashish Kulkarni" <[EMAIL PROTECTED]

Re: loosing style sheet, when reloading or visiting the jsp page again

2005-10-04 Thread Ashish Kulkarni
Hi i include the style sheet --- "Frank W. Zammetti" <[EMAIL PROTECTED]> wrote: > I can't imagine why that would happen, but, do you > define the stylesheet > in the page or link/include it? > > Frank > > Ashish Kulkarni wrote: > > Hello >

loosing style sheet, when reloading or visiting the jsp page again

2005-10-03 Thread Ashish Kulkarni
Hello I have a jsp page where in i have defined a style sheet, when i reload the page, or revisit the page from some other link i loose the style sheet, and the page looks ugly does anyone know why this happens, and how to resolve this It happens in IE and mozilla browser Ashish

[OT]Open source Backup software for windows

2005-09-28 Thread Ashish Kulkarni
Hello Does anyone know or used an open source for databaup from windows XP, i need this software to be able select folders for backup, backup files changed, add if does not exist, and schedule backup from my laptop and desktop Ashish __ Yahoo! M

[OT] question about XSL and XPATH

2005-09-27 Thread Ashish Kulkarni
Hi suppose i have a XML file as below, i want to print only value where id = name. I want to do this using XSL, not java program for example once i read throug all the XML file, i should get output as 123 and 456 abc xyz abc 123 xyz 456 jkl 998 This is the XSL i have been trying *

[OT]properties file question

2005-08-31 Thread Ashish Kulkarni
Hi i have a properties file where in i define all the connection options like date format=iso time format=hms I am having problem with this file when running in turkey because of space character. is there a way i can convert this properties file to work in all languages Ashish ___

Re: [OT] Find properties file in classpath

2005-08-17 Thread Ashish Kulkarni
Hi is there a problem if i do some thing like below URL url = null; url = this.getClass().getClassLoader().getResource("approvals.properties"); if(url== null) { ClassLoader.getSystemResource("approvals.properties"); } Ashish

[OT] Find properties file in classpath

2005-08-17 Thread Ashish Kulkarni
Hi how do i find all the properties file available in classpath?? Ashish __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -

  1   2   >