jasper

2006-07-10 Thread Abhimanyu Koul
hi all! I am new to jasper reports. can anyone please give me some good jasper report resources. some ebooks or other resources. thanks Regards, Abhimanyu Koul FinEng Solutions (P) Ltd. # +91 22 66950676 Extn. 212 DISCLAIMER This e-mail and any attachments are confidential and intended solelyf

Action called multiple times

2006-07-10 Thread Thomas Joseph
Hi all, I have got a strange problem. My action class generates PDF, and writes on the the response and fushes it, but I can see that this action is getting called multiple times (2-5 times). I have cheked my struts-config to be just perfect (No forwards) What may be the reason for this? What can

Re: Tiles W/JSP Sans Struts

2006-07-10 Thread Jeff Conrad
Thanks, I will take a look tonight. --- Wendy Smoak <[EMAIL PROTECTED]> wrote: > On 7/8/06, Jeff Conrad <[EMAIL PROTECTED]> wrote: > > > As we are currently using Spring+Tiles, I am going to > try > > to stay abreast of the new Tiles 2.0. > > After a bit of work over the weekend, the Tiles 2 we

Re: Tags in struts

2006-07-10 Thread Adam Gordon
Maya- Let's say your TestBean class has getFoo() and getBar() methods both which return Collection objects. If these objects are instances of LabelValueBean objects it's really easy, if they are not, I'd recommend converting them to these bean objects either in your bean class or in the acti

Re: Tiles W/JSP Sans Struts

2006-07-10 Thread Greg Reddin
On Jul 10, 2006, at 2:24 PM, Wendy Smoak wrote: Keep in mind that this is in the sandbox, unreleased, and subject to change! In particular, issues SB-21 and SB-30 call for removing several elements and attributes from the TLD and DTD. This is very true. I have not closed the TLD ticket yet

Re: Tiles W/JSP Sans Struts

2006-07-10 Thread Wendy Smoak
On 7/8/06, Jeff Conrad <[EMAIL PROTECTED]> wrote: As we are currently using Spring+Tiles, I am going to try to stay abreast of the new Tiles 2.0. After a bit of work over the weekend, the Tiles 2 website is in slightly better condition (as in, it's visible now... :) ) * http://struts.apache.o

Re: Tiles: Why need to declare taglibs in each sub-jsp?

2006-07-10 Thread Greg Reddin
On Jul 10, 2006, at 1:18 PM, Mississippi John Hurt wrote: I have a MainTemplate.jsp with header, body, footer in it. Weird thing is it seems that even though I put taglib declaration in my header.jsp, as in ... <%@ taglib uri="http://jakarta.apache.org/struts/tags-html"; prefix="html" %>

Re: hosting

2006-07-10 Thread Martin Gainty
Agreed This is way WAY O/T But many of the larger Data centers are locating to locales with affordable electricity.. http://www.msnbc.msn.com/id/13774178/ M- * This email message and any files transmitted with it contain confiden

Re: Tiles: Why need to declare taglibs in each sub-jsp?

2006-07-10 Thread Yanroy
I'm not 100% sure I understand what you're doing, but it sounds like you're having a problem I just recently had as well. I'm new to struts, and I don't really understand what Tiles means. It sounds like you're including a header and footer file into a main jsp file. I assume this is done with

RE: Junit tests on remote Struts application in Eclipse

2006-07-10 Thread Chris Loschen
Yes, it does help -- thank you! I'll look into cactus and (probably better) if there's some way I can rearrange my testing strategy. TPTP seems to have some sort of datapooling arrangement which might help me. Eventually, I'm going to need to set up some multiple thread tests and confirm that c

Re: Tags in struts

2006-07-10 Thread Maya menon
Thanks Adam. Yes, I have a bean lets say, Testbean with two Collections. I have to display the value of these Collections[has objects] in a select box in my JSP. Can you send me the sample code please ? Maya Adam Gordon <[EMAIL PROTECTED]> wrote: > In my JSP I have a te

Tiles: Why need to declare taglibs in each sub-jsp?

2006-07-10 Thread Mississippi John Hurt
I have a MainTemplate.jsp with header, body, footer in it. Weird thing is it seems that even though I put taglib declaration in my header.jsp, as in ... <%@ taglib uri="http://jakarta.apache.org/struts/tags-html"; prefix="html" %> I still also have to put taglibs declaration in the subBody.jsp o

RE: Junit tests on remote Struts application in Eclipse

2006-07-10 Thread George.Dinwiddie
Chris, It sounds like you're trying to run the tests inside the container. If so, JUnit can't do that on it's own. You can use Cactus to proxy from the testrunner (outside the container) to the tests (inside the container). I've always found Cactus to be a bit of a PITA, however, and have chang

RE: Shale Validation Framework Issue.

2006-07-10 Thread Iakouchev Alexander-EAL027C
Hello Gary! Thank you for reply. Alex. -Original Message- From: Gary VanMatre [mailto:[EMAIL PROTECTED] Sent: Monday, July 10, 2006 1:13 PM To: user@struts.apache.org Subject: Re: Shale Validation Framework Issue. Please take future Shale discussions to the shale mailing list. http://sha

Junit tests on remote Struts application in Eclipse

2006-07-10 Thread Chris Loschen
Hi all, This is admittedly tangential to our topic, but some other questions on Eclipse came up last week, and people here seem knowledgeable on all sorts of subjects... If you know of a better list on which I could ask this question, please let me know: I should probably be on it. I have a st

Re: hosting

2006-07-10 Thread Hubert Rabago
This topic has come up several times already on this list. Try searching one of the mailing list archives listed on http://struts.apache.org/mail.html#Archives. On 7/8/06, Abhimanyu Koul <[EMAIL PROTECTED]> wrote: hi all! can anyone tell me about a good and cheap struts(java) web hosting comp

Re: failed validation, drop down list and request attribute

2006-07-10 Thread Hubert Rabago
You have a few options, and most of them are described by Rick R's "Validate Manually" article [1]. I would avoid the first three and only consider the last four. There's a couple of other ways to do this but you should be able to pick an appropriate solution from Rick's list. Hubert [1] http:

Re: Shale Validation Framework Issue.

2006-07-10 Thread Gary VanMatre
Please take future Shale discussions to the shale mailing list. http://shale.apache.org/mail-lists.html >- Original Message - >From: "Iakouchev Alexander-EAL027C" <[EMAIL PROTECTED]> >To: >Sent: Monday, July 10, 2006 8:56 AM >Subject: Shale Validation Framework Issue. > >Hello everybody

Re: Tags in struts

2006-07-10 Thread Adam Gordon
In my JSP I have a textbox and two list boxes[which can display multiple values]. From my database, I have an object [a data object], ListData with following information returning string result; Vector itemList; //list of object 1 ArrayList itemList1; //list of object 2 In

Re: Struts and commons logging

2006-07-10 Thread Adam Gordon
I believe, though I could be wrong, that you get logging for free, you just have to configure it. Check out the struts logging section of the struts wiki at http://wiki.apache.org/struts/StrutsLogging, you also may want to bookmark the URL http://wiki.apache.org/struts for future reference as

Tags in struts

2006-07-10 Thread Maya menon
All, In my JSP I have a textbox and two list boxes[which can display multiple values]. From my database, I have an object [a data object], ListData with following information returning string result; Vector itemList; //list of object 1 ArrayList itemList1; //list of object 2

Shale Validation Framework Issue.

2006-07-10 Thread Iakouchev Alexander-EAL027C
Hello everybody! I am a new in Shale Validation Framework. Actually I got an error after form was submitted. My Tomahawk version - 1.1.3. [http-80-Processor24] WARN org.apache.commons.validator.ValidatorResources - Form 'org.apache.shale.validator.minStringValue' not found for locale 'en_US' 2

Shale Validation Framework Issue.

2006-07-10 Thread Iakouchev Alexander-EAL027C
Hello everybody! I am a new in Shale Validation Framework. Actually I got an error after form was submitted. My Tomahawk version - 1.1.3. [http-80-Processor24] WARN org.apache.commons.validator.ValidatorResources - Form 'org.apache.shale.validator.minStringValue' not found for locale 'en_US' 2

Struts and commons logging

2006-07-10 Thread Raghuveer
We use struts applications and loggging by log 4j. We are configuring loggers like normal MVS application. But, What is that i need to do if i want my struts application to use commons-logging for logging. - To unsubscribe,

RE: Urgent help required

2006-07-10 Thread Mukta
If you don't have any customer (if u r developing a project for ur own practice), try consulting some mathematical LPP problems statements. We used to have a lot of similar problems to be solved in our LPP assignments :) -Original Message- From: Bart Busschots [mailto:[EMAIL PROTECTED] S

Re: Urgent help required

2006-07-10 Thread Bart Busschots
The only place you can get requirements is from the customer! Google can not know what your customer needs and neither can we! Bart. Medicherla Lakshmi wrote: Hi All, Can anyone give me idea of some requirements to create a project related to transportation of goods using trucks. Am try

Urgent help required

2006-07-10 Thread Medicherla Lakshmi
Hi All, Can anyone give me idea of some requirements to create a project related to transportation of goods using trucks. Am trying to search in google, but could not get appropriate results. Any links or ideas will be of great help. Thanks in Advance.

failed validation, drop down list and request attribute

2006-07-10 Thread Sandra Reichert
Hi, I have a form which contains textfields and some drop down lists. I use the validator framework to verify the values. The values for the drop down lists are set as attributes in the request. My Problem is, that this variables are empty after a failed validation. What`s the common solution? Or