RE: Request: Property vs Attribute

2002-02-14 Thread Jakkampudi, ChandraseKhar
dot Com, Fairport NY USA. -- Java Web Development with Struts. -- Tel +1 585 737-3463. -- Web http://www.husted.com/struts/ Jakkampudi, ChandraseKhar wrote: The form is initially populated from a value object like html:text property=userName value=%=userInfo.getUserName()%/ and html:hidden

RE: ActionForm Defaults/Updates Question

2002-02-14 Thread Jakkampudi, ChandraseKhar
Here is what I do. User (Generic Value Object) UserBean (Extends form bean) On initial page we have a link to viewUser.do?userId=100 In the Action class correspoding to viewUser.do, in the perform method we have (maybe through an controller or some such) User newUser =

RE: Pre and Post Processing

2002-02-12 Thread Jakkampudi, ChandraseKhar
Is there an alternative to breaking the MVC?? We have to populate drop downs from the database. So I call the DAO from the JSP through a Helper Object (will convert this to a tag) and use the returned collection to populate the drop down using the html:select tag. For efficiency, we may store

RE: Pre and Post Processing

2002-02-12 Thread Jakkampudi, ChandraseKhar
the collections and the struts tablib for the list? From: Jakkampudi, ChandraseKhar [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Pre and Post Processing Date: Tue, 12 Feb 2002 14:56:20 -0600

Wrong page sizes on opening .doc file

2002-02-06 Thread R (Chandra) Chandrasekhar
/country environment variable settings but what about 1 and 5? Thank you. --Chandra 06 Feb 02 -- Dr R (Chandra) Chandrasekhar Australian Research Centre for Medical Engineering The University of Western Australia 35 Stirling Highway, Crawley, WA 6009, AUSTRALIA Phone: +61-8-9380

Re: Wrong page sizes on opening .doc file

2002-02-06 Thread R (Chandra) Chandrasekhar
210 mm (w) and 297 mm (h): the latter are correct for A4 paper (which is what the doc file has) but the paper size is not. Fixed. Get 0.99 Dom --Chandra 06 Feb 02 -- Dr R (Chandra) Chandrasekhar Australian Research Centre for Medical Engineering The University

Re: Wrong page sizes on opening .doc file

2002-02-06 Thread R (Chandra) Chandrasekhar
RedHat RawHide). The abiword download site at http://www.abisource.com/download/ only has the .tar.gz source for version 0.9.6 as far as I can see. Sorry for the bother. --Chandra 06 Feb 02 -- Dr R (Chandra) Chandrasekhar Australian Research Centre for Medical Engineering

RE: Wizard Interface question

2002-02-06 Thread Jakkampudi, ChandraseKhar
Exactly. Which is why, for the original question about the wizard interface, I suggested putting into the session the logical form that spans pages and is broken up into multiple forms physically. As long proper cleanup is done at the last tab of the wizard interface, there should be no session

RE: Wizard Interface question

2002-02-05 Thread Jakkampudi, ChandraseKhar
I dont think this approach will work if you need transactional control across the different tabs of the wizard. For example if it is a registration wizard that collects contact info and billing info on different tabs, using different forms and commiting to the database will leave you with a lot

RE: Wizard Interface question

2002-02-05 Thread Jakkampudi, ChandraseKhar
:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 10:44 AM To: Struts Users Mailing List Subject: Re: Wizard Interface question Jakkampudi, ChandraseKhar wrote: I dont think this approach will work if you need transactional control across the different tabs of the wizard. For example

RE: Jsp in another Jsp using struts

2002-02-05 Thread Jakkampudi, ChandraseKhar
You dont need struts for this. Just use %@ include file=xxx.jsp % wherever you want to insert your JSP file. -Original Message- From: Kalpana RamiReddy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 11:54 AM To: Struts Users Mailing List Subject: Jsp in another Jsp using

RE: error display

2002-02-05 Thread Jakkampudi, ChandraseKhar
You have a typo. Change your validate to new ActionError(errors.id.required, id=123)); or your ApplicationResources.properties to error.id.required= blah Note the 's' at the end of errors in your applicationresources file -Original Message- From: Henry Lu [mailto:[EMAIL

RE: Jsp in another Jsp using struts

2002-02-05 Thread Jakkampudi, ChandraseKhar
, ChandraseKhar wrote : You dont need struts for this. Just use %@ include file=xxx.jsp % wherever you want to insert your JSP file. -Original Message- From: Kalpana RamiReddy [mailto:[EMAIL PROTECTED] m] Sent: Tuesday, February 05, 2002 11:54 AM To: Struts Users Mailing List Subject: Jsp

RE: Wizard Interface question

2002-02-05 Thread Jakkampudi, ChandraseKhar
Stephen, Session persistence across app servers would be an issue anyways if you put anything in the session would it not? So are you suggesting that if a project might migrate from single app server to multiple, then nothing should be in session scope? If atleast some objects are stored

RE: Jsp in another Jsp using struts

2002-02-05 Thread Jakkampudi, ChandraseKhar
Subject: RE: Jsp in another Jsp using struts could u please explain me how to use templates... Thanks in advance Kalpana On Tue, 05 Feb 2002 Jakkampudi, ChandraseKhar wrote : If you want to include the file as a footer consider using the template taglibs. Include can be used anywhere

RE: initializing html:select

2002-01-30 Thread Jakkampudi, ChandraseKhar
Like I said, it can take a real time expression. So you can do html:select property=selectProperty value=%=(String)request.getAttribute(xyz)% html:options property=values labelProperty=names/ /html:select You have to have scriptlets or expressions to set the value dynamically.

RE: pre-selecting multiple selects

2002-01-28 Thread Jakkampudi, ChandraseKhar
I had the same problem on a previous project. I looked at the source code and currently you can specify only one value. A workaround is to check the values yourself and set the selected option on the options. Alternatively you can get the modify the source. If you do this, I hope you can post

RE: pre-selecting multiple selects

2002-01-28 Thread Jakkampudi, ChandraseKhar
. This is a pretty messy solution, but it may have to do. I will see if I can modify the source code for a more elegant result, allowing for time constraints. regards, Paul. -Original Message- From: Jakkampudi, ChandraseKhar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 29 January 2002 12:45 PM

Re: [LIH] VB on Linux

2002-01-13 Thread Chandrasekhar Kumar/KGP
Dear user You can't run VB in Linux but you can use Delphi IDE program pro that. On Sun, 13 Jan 2002 [EMAIL PROTECTED] wrote: Could somebody who has ported VB onto Linux guide me and give me pointers to the same , for I remember that mid-last year , there were a few listers who were

library sharing without SAN

2002-01-09 Thread Chandrasekhar CR
hello , For experimental purpose can we use autochanger for sharing between two TSM servers ( solaris and windows ) without SAN ,if yes then what is the procedure to do it. if any one know about this please help me. TSM administrator

subscribe

2001-11-02 Thread Vallish Chandrasekhar
subscribe * Disclaimer: The information in this e-mail and any attachments is confidential / privileged. It is intended solely for the addressee or addressees. If you are not the addressee indicated in this message, you may not

Maintenance and planned downtime

2001-10-10 Thread Chandrasekhar Varma
we use to drive across our point to the mgmt team. Any help would be much appreciated. Thanks Chandrasekhar Varma This message is confidential and may also be legally privileged. If you are not the intended recipient, please notify us immediately. You should not copy it or use it for any

RE: US Nightmare

2001-09-12 Thread Chandrasekhar Varma
This is the most horrible thing I have ever seen. I can't imagine a human being doing that to another human let alone thousands. I hope that these brutes are really 'hunted and punished'. Don't let then go free -Original Message- From: Andrew Leong [mailto:[EMAIL PROTECTED]] Sent:

problem getting InitialContext....

2001-03-06 Thread B, Chandrasekhar
Hi all, I have a constructor in DAO(Data Access Object) which gets InitialContext. I am using this DAO in my EJB. its working fine if i use this DAO independently. The problem is when i use this DAO in my EJB it couldn't get me the context and giving the following exception.

Re: add me to the mailing list

2001-02-15 Thread B, Chandrasekhar
r u playing -Original Message- From: srinivas chakri [SMTP:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 12:21 PM To: [EMAIL PROTECTED] Subject: add me to the mailing list hello sir, Please add my mailid to the ejb mailing list.i am new to the EJB world.

[FW1] Problem with Configuration

2000-11-14 Thread N Chandrasekhar
Hi All, We are in the process of Installing the Firewall-1 Module and are facing a couple of problems :- Background : OS : Solaris 2.6 Checkpoint Ver 4.1 3 Ethernet Interfaces 3 zones are created (Internet, DMZ and the Intranet) The Internet Zone is directly connect to the Router's Ethernet

No Subject

2000-06-28 Thread Chandrasekhar Bangalore
This is chandra We are working on Turbine in our project. The ModulePeer.doSelect , doDelete all the SQL Queries are some times giving problems for time being we are using JDBC for those commands. It is not giving problem every where only in few modules. How to solve this --

Subsribe

2000-05-11 Thread Chandrasekhar PATARLAPALLI
Hi, Please add this mail Id in your mailing list. Regards, Chandrasekhar P. === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff EJB-INTEREST". For general help,

How to incorporate Fax into an application

1999-10-07 Thread Chandrasekhar Naidu
to send fax to all the numbers present in database. I came to know that we can do this using TAPI (Telephonic API). or JTAPI (Java Telephonic API) How to do this? Any help is appreciable. Thanks in advance. Chandrasekhar Naidu,Sr. Software Engineer,Oasys Technologies,Bangalore, IndiaPhone : 91 80

Re: java.sql.SQLException: Error !!!!

1999-09-02 Thread Chandrasekhar Naidu
tem.out.println("excep st:"+e); out.println("error st:"+e); } out.println("/body/html"); }//service }//class Yours, Chandrasekhar Naidu, Sr. Software Engineer, Oasys Technologies, Bangalore, India. Phone : 91 80 2280523/4/5/6 - Original Message

Re: Bean Database connection

1999-08-25 Thread Chandrasekhar Naidu
Hi, Servlet need not be a Bean, Create the connection object in init() and then pass the same toBean. and disconnect the connection in destroy() method. Yours, Chandrasekhar Naidu - Original Message - From: Ben Dudley To: [EMAIL PROTECTED] Sent: Wednesday, August

Which browsers will support XML?

1999-08-25 Thread Chandrasekhar Naidu
Hi friends,I would like to use XML with servlets. Which browsers will support the XML? I came to know that only Internet Explorer 5.0 will supprt XML, Is it true? if so what is the solution for other browsers like Netscape.Yours,Chandrasekhar Naidu

Re: Need Help Implementing...!!

1999-08-23 Thread Chandrasekhar Naidu Gorantla
Hi, You can show the result in an excel file with tab delemited format. Change the content type to excel, Use the following syntax: res.setContentType("application/vnd.ms-excel");//("Text/Html"); Everything else will be same. I tested the same, and working perfect. Yours

<    3   4   5   6   7   8