Looking for struts-related sample projects

2005-10-28 Thread Comain Chen
Hi, I am new to struts and Java web development. I am looking forward some projects developped using struts,jsp, e-commerce, online-shopping, portal are more appreciated. I have found a project JspShop, but it used ejb technology which I donot get into right now. So, can any one give me some help?

RE: Is there an abstract meta-model of Struts ?

2005-10-28 Thread Vance Karimi
We rely on the AndroMDA EJB and Struts cartridges to a large extent. I found the standard templates cater for basic applications extremely well. We have had to modify the AndroMDA code and templates to delivery a fully diverse MDA application, but anyone can modify it to suit their requirements

Re: Struts Validation Rule for Single Java Bean form-property

2005-10-28 Thread Laurie Harper
Yujun Liang wrote: Laurie, Thanks for the suggestion, just let you know I tried that and it seems not working, thus I am not sure whether this can be enhanced by Struts team since Java Bean inside Form Bean is a valid configuration and it is a very nice feature but there still something to im

Re: Struts Validation Rule for Single Java Bean form-property

2005-10-28 Thread Yujun Liang
Laurie, Thanks for the suggestion, just let you know I tried that and it seems not working, thus I am not sure whether this can be enhanced by Struts team since Java Bean inside Form Bean is a valid configuration and it is a very nice feature but there still something to imrprove. For exampl

Re: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Dave Newton
Frank W. Zammetti wrote: Hey, this is 2005, almost 2006, any solution must have: * At least 50 EJBs * Be based on some framework that can't be comprehended without $10,000 worth of development tools * A completely superfluous persistence framework * At least 25 XML config files * 75 UML diagr

Re: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Frank W. Zammetti
Hey, this is 2005, almost 2006, any solution must have: * At least 50 EJBs * Be based on some framework that can't be comprehended without $10,000 worth of development tools * A completely superfluous persistence framework * At least 25 XML config files * 75 UML diagrams * A document talking ab

Re: really dynamic Struts Forms

2005-10-28 Thread Murray Collingwood
Let me get this right, you have no idea what the field names on the form are going to be.you are the developer right? No matter how dynamic the form is you still have to create it using something...like some Javascript to create the input fields at least. If you are creating the input f

Re: how many Form beans

2005-10-28 Thread Murray Collingwood
Hi > 1... > CurrencyValueList form has the attribute list right!! > > can we use that in the logic:iterator using property?? > or is there any specific reason why the list is set to the request? 1. Don't mix your terms. An attribute is a value you push into the request scope or session scope -

Re: Struts 1.1 and Validation

2005-10-28 Thread Martin Gainty
Good Afternoon April First instinct is to put in some switch logic in your Actions perform But then again I asked why is your cancel calling the wrong Action perform method??? The cancel should forward to it's own Action class say CancelAction perform method() Since a page is worth a 1000 wor

Re: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Dave Newton
Frank W. Zammetti wrote: Yeah, I don't know why I thought there was more to it 20 minutes ago, that looks right to me too now. Oh, come on. There's gotta me an XML config file in there SOMEWHERE! Dave - To unsubscribe,

Re: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Frank W. Zammetti
Yeah, I don't know why I thought there was more to it 20 minutes ago, that looks right to me too now. -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com AIM: fzammetti Yahoo: fzammetti MSN: [EMAIL PROTECTED] On Fri, October 28, 2005 4:13 pm, Ric

Resource bundles in STRUTS

2005-10-28 Thread Balasubramaniam, Sezhiyan
Hi All, We are using STRUTS 1.1 for one of our Internet STRUTS application. In that we provided the multiple languages support using different files like ApplicationResources_en.properties ApplicationResources_de.properties ApplicationResources_es.properties ApplicationResources_fr.prop

Re: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Richard Yee
I think the subclassing suggestion is the easiest. public class subclass extends superclass implements theInterface { // empty class declaration } -Richard --- "Frank W. Zammetti" <[EMAIL PROTECTED]> wrote: > It's funny, I started writing up an example with a > subclass and an > implemente

Re: Struts 1.1 and Validation

2005-10-28 Thread April Francis
Martin Gainty hotmail.com> writes: > > using html:cancel bypasses form bean validate method > http://struts.apache.org/struts-taglib/tagreference-struts- html.html#cancelHTH- > Original Message - > From: "April Francis" bcbsok.com> > To: struts.apache.org> > Sent: Friday, October 28

Re: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Frank W. Zammetti
It's funny, I started writing up an example with a subclass and an implemented interface and cloning and so on and so forth and as I got near the end I said "wait, this is stupid, just loop through with reflection as I and others suggested yesterday!"... Sometimes the "brute force" method really *i

Re: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Dave Newton
Mick Knutson wrote: Because I would have to modify generated code to do that. And it only implements serializable. Nothing else. And you can't subclass it and have the subclass implement the interface? In any case, just loop through w/ reflection and check. I'm still confused though; are

Re: Struts 1.1 and Validation

2005-10-28 Thread pantichd
Swt! We're still on Struts 1.0.2 (in process of upgrading to 1.2.7) and you wouldn't believe the gyrations we've had to go through to get that functionality. Thanks! "Martin Gainty"

RE: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Mick Knutson
Because I would have to modify generated code to do that. And it only implements serializable. Nothing else. -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Thursday, October 27, 2005 4:51 PM To: Struts Users Mailing List Subject: Re: [ot] utility to verify if

[FRIDAY] Re: really dynamic Struts Forms

2005-10-28 Thread Dave Newton
Frank W. Zammetti wrote: There really isn't a way to essentially create a bean on-the-fly... not a true bean with accessors and mutators for private fields that is... the LazyActionForm is about as close as you are going to get. Never underestimate the destructive power of a Jython, jRuby, or

Re: Struts 1.1 and Validation

2005-10-28 Thread Martin Gainty
using html:cancel bypasses form bean validate method http://struts.apache.org/struts-taglib/tagreference-struts-html.html#cancelHTH- Original Message - From: "April Francis" <[EMAIL PROTECTED]> To: Sent: Friday, October 28, 2005 12:30 PM Subject: Struts 1.1 and Validation On Struts

Re: really dynamic Struts Forms

2005-10-28 Thread Brian Demers
Thanks On 10/28/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: > Hi Brian, > > There really isn't a way to essentially create a bean on-the-fly... not a > true bean with accessors and mutators for private fields that is... the > LazyActionForm is about as close as you are going to get. > > I've

Re: really dynamic Struts Forms

2005-10-28 Thread Frank W. Zammetti
Hi Brian, There really isn't a way to essentially create a bean on-the-fly... not a true bean with accessors and mutators for private fields that is... the LazyActionForm is about as close as you are going to get. I've never looked at the source, but my *guess* would be that Niall is populating a

Re: Is there an abstract meta-model of Struts ?

2005-10-28 Thread Christian Bollmeyer
Hi, I only have limited experience with MDA, and we don't use AndroMDA at work. But as I understand from their site, there's an existing cartridge for Struts already available: http://www.andromda.org/andromda-bpm4struts-cartridge/index.html I know that in Germany there are projects where the e

Re: Is there an abstract meta-model of Struts ?

2005-10-28 Thread Laurie Harper
Begur, Praveen wrote: Hi All, Quesiton: I understand that there exists a programmatic API, documentation and source-code of Struts, but is there a formal meta-model of Struts ( from an application development point of view ) ? Purpose: I am a practioner of MDA ( Model Driven Architecture ) and

Re: html:base and Tiles

2005-10-28 Thread Laurie Harper
Craig McClanahan wrote: Ah ... there might be a timing issue here, depending on when you ask the question. If you ask this question inside an Action.execute() method, the original URI is available via request.getRequestURI() ... doing a RequestDispatcher.include() call does not change those path

Re: Causing custom ActionMapping attributes to be read

2005-10-28 Thread Laurie Harper
You need to make sure your getter/setter follow the JavaBean Specification conventions; specifically, the getter and setter must have the same type. You have a boolean getter and a String setter, which is not allowed by the spec. Change one of them so they match and you should be OK. Either typ

Struts 1.1 and Validation

2005-10-28 Thread April Francis
On Struts 1.1, does the tag work? Example: If I click on the cancel button below, will validation be ignored? I have put the above in my jsp, but the struts validation still runs when I use the cancel button. I'm thinking maybe struts 1.1 doesn't have the necessary pieces in place If

Re: Performance test tool

2005-10-28 Thread Dilip Ladhani
I have used Grinder quite a bit and it is a pretty good tool. If you decide to go that way, try and use Grinder 3, as it gives you the ability to write scripts, which I found useful to handle different test scenarios. The tool is pretty well documented. It is free too. It just needs some ramp

Re: really dynamic Struts Forms

2005-10-28 Thread Laurie Harper
I haven't used the Lazy* stuff, but I always thought this was exactly the point -- to create an action form without having to specify the property names in advance. If you're not using Validator, though, and really don't know at all what parameters you'll be dealing with in advance, I'm not su

Re: really dynamic Struts Forms

2005-10-28 Thread Brian Demers
Currently thats what I am doing. Because of that I have to filter out the 'method' parameter. I was just looking if there was a clean way to do this. -Brian Demers On 10/28/05, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > Would not it be simpler to read directly from request? > > On 10/28/05,

Re: Submit buttons getting their value

2005-10-28 Thread Dave Newton
Dakota Jack wrote: [...] you are not going to do all that well in social situations. *rotflmao* Kettle, this is the Pot; you're black. Oh, man, that was funny. d - To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Re: really dynamic Struts Forms

2005-10-28 Thread Michael Jouravlev
Would not it be simpler to read directly from request? On 10/28/05, Brian Demers <[EMAIL PROTECTED]> wrote: > I don't know if thats what i am looking for either? > > My field names could be XXX, YYY, and ZZZ for one submit > and then AAA, BBB, CCC another. > > There is no way of knowing what param

[OT] Re: Submit buttons getting their value

2005-10-28 Thread Dave Newton
Dakota Jack wrote: Try to stay on topic, Martin. Less heat and more light, please. [...] Kettle, this is the Pot; you're black. d - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

Re: accessing a Collection through a jsp-bean

2005-10-28 Thread Laurie Harper
Bouvet Konsulent wrote: hello, I have a Struts form-bean which contains a HashMap. The keys of this hashmap is an object of type GeSectionComponent. In my jsp, I iterate over a collection of these GeSectionComponents. For each iteration, I would like to lookup in the HashMap to retrieve the value

Re: how many Form beans

2005-10-28 Thread fea jabi
Thanksyou all for helping me thru this. I've got it working now. From: "Murray Collingwood" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: "Struts Users Mailing List" Subject: Re: how many Form beans Date: Sat, 29 Oct 2005 00:01:32 +1000 Hi again > CurrencyValueList must be

Re: [ot] utility to verify if an Object implements all methods from Interface?

2005-10-28 Thread Richard Yee
Mick, You could write a wrapper object that wraps (extends) the generated object and implements the interface. If the extended object does not have all of the methods defined in the interface, you will get a compile error. -Richard --- Mick Knutson <[EMAIL PROTECTED]> wrote: > I have some genera

Re: Struts, Hibernate and composite keys

2005-10-28 Thread Laurie Harper
Gaet wrote: Hi, For those who are using Hibernate with struts, just a simple question : How do you do to display the value of a composite key when using for instance, the tag Example : - A table "Person" has a composite key "lastname" and "firstname". So, with hibernate

Re: really dynamic Struts Forms

2005-10-28 Thread Brian Demers
I don't know if thats what i am looking for either? My field names could be XXX, YYY, and ZZZ for one submit and then AAA, BBB, CCC another. There is no way of knowing what parameters i will get. -Brian On 10/28/05, David Evans <[EMAIL PROTECTED]> wrote: > I think this might help: > http://www.

Re: accessing a Collection through a jsp-bean

2005-10-28 Thread Wendy Smoak
From: "Bouvet Konsulent" <[EMAIL PROTECTED]> Absolutely non-working code looks something like: <% .getPowerLimits(comp); %> What version of the Servlet spec are you working with? The example below is for Servlet 2.3 / JSTL 1.0 / Struts-EL (though it doesn't use Struts tags.) [unte

Re: html:base and Tiles

2005-10-28 Thread Craig McClanahan
On 10/28/05, Laurie Harper <[EMAIL PROTECTED]> wrote: > > Craig McClanahan wrote: > > On 10/27/05, Laurie Harper <[EMAIL PROTECTED]> wrote: > > > >>I feel like I should know the answer to this one but I seem to be > >>stumped... How do I get the actual request URI (or URL) in a JSP that's > >>inclu

Re: Struts Validation Rule for Single Java Bean form-property

2005-10-28 Thread Laurie Harper
Hmm, I'm not sure how to specify the validation rules with that configuration; you could try with depends="... L. Yujun Liang wrote: Hello, I define a single Java Bean Form Bean, do you know how to define the validation rule? Thanks. Regards Yujun Liang [EMAIL PROTECTED] (0408) 467 448 1.

Re: html:base and Tiles

2005-10-28 Thread Laurie Harper
Craig McClanahan wrote: On 10/27/05, Laurie Harper <[EMAIL PROTECTED]> wrote: I feel like I should know the answer to this one but I seem to be stumped... How do I get the actual request URI (or URL) in a JSP that's included via Tiles? Both ${pageContext.request.requestURI} and ${pageContext.r

Re: really dynamic Struts Forms

2005-10-28 Thread David Evans
I think this might help: http://www.niallp.pwp.blueyonder.co.uk/lazyactionform.html On Fri, 2005-10-28 at 08:15, Brian Demers wrote: > Hello all, > > I am creating a dynamic struts application. I don't think > DynaActionForm is what I am looking for. > > My page contains many input fields which

Re: logic:iterate and bean:write not showing when jstl c:out does

2005-10-28 Thread Laurie Harper
If the page is loading without errors but not rendering those tags, the most likely cause is missing taglib directives. Check the HTML source that gets generated to see if the tags are coming through as written in the JSP; if so, that's almost certainly what's wrong. L. Stephen Souness wrote:

Causing custom ActionMapping attributes to be read

2005-10-28 Thread Dave
I'm using Struts 1.1. I have an ActionMapping class: public class My_ActionMapping extends SecureActionConfig { protected boolean secured = false; public boolean getLoginSecured() { System.out.println("Getting Login Secured"); return secured; } public void setLoginSecured (String S

Re: Performance test tool

2005-10-28 Thread Larry Meadors
JMeter was a turd the last time I looked at it. The docs were all out of date, and the app was about as intuitive as quantum physics in a mix of German and Hebrew. IMO, I'd spend the $$ to get one that was usable. Maybe Grinder is better... Larry On 10/28/05, Marco Mistroni <[EMAIL PROTECTED]>

Re: Performance test tool

2005-10-28 Thread pantichd
We use Mercury's LoadRunner. It's a pretty decent tool but like Christian says, it comes with a hefty price. David Z. Pantich Christian Bol

really dynamic Struts Forms

2005-10-28 Thread Brian Demers
Hello all, I am creating a dynamic struts application. I don't think DynaActionForm is what I am looking for. My page contains many input fields which are dynamically generated at run time. Is there any way to put these fields into a struts form? >From what I have read, fields for a DynaActionF

accessing a Collection through a jsp-bean

2005-10-28 Thread Bouvet Konsulent
hello, I have a Struts form-bean which contains a HashMap. The keys of this hashmap is an object of type GeSectionComponent. In my jsp, I iterate over a collection of these GeSectionComponents. For each iteration, I would like to lookup in the HashMap to retrieve the value corresponding to the GeSe

Re: Performance test tool

2005-10-28 Thread Christian Bollmeyer
Hi, you may want to take a look at this one: http://grinder.sourceforge.net/g3/features.html If you want code-based auditing/profiling/code metrics capabilities, there are a lot of commercial tools on the market, most of them bearing a hefty price tag. One exception is Oracle's JDeveloper which

RE: Performance test tool

2005-10-28 Thread Marco Mistroni
JMeter? HTH marco -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 28 October 2005 15:40 To: user@struts.apache.org Subject: Performance test tool Hi I'm looking for a good tool for performance testing and analysis for a medium size web-application. Th

Performance test tool

2005-10-28 Thread kurt
Hi I'm looking for a good tool for performance testing and analysis for a medium size web-application. The testing results are for the management of the company. I need some recommandations. Thanks Kurt - To unsubscribe, e-ma

Re: how many Form beans

2005-10-28 Thread fea jabi
I have 2 questions. 1... CurrencyValueList form has the attribute list right!! can we use that in the logic:iterator using property?? or is there any specific reason why the list is set to the request? 2... In the Struts config. I'll be specifying the formbean to use is CurrencyValueList for th

Struts, Hibernate and composite keys

2005-10-28 Thread Gaet
Hi, For those who are using Hibernate with struts, just a simple question : How do you do to display the value of a composite key when using for instance, the tag Example : - A table "Person" has a composite key "lastname" and "firstname". So, with hibernate mapping, acce

Re: java.util.Date in Action Form Bean

2005-10-28 Thread Murray Collingwood
Thanks Richard, I wasn't aware of this. mc On 28 Oct 2005 at 6:48, Richard Yee wrote: > You should be aware that when using a java.text.DateFormat class or its > subclass as a static variable in a bean that can be accessed via > multiple threads simultaneously, you need to synchronize access to

Re: how many Form beans

2005-10-28 Thread Murray Collingwood
Hi again > CurrencyValueList must be extending the CurrencyValue right!! No. CurrencyValueList extends ActionForm. It contains one property that is a "List" (as in java.util.List. This property will contain a list of the CurencyValues. So, to build this in your Action form you will have so

Re: java.util.Date in Action Form Bean

2005-10-28 Thread Richard Yee
You should be aware that when using a java.text.DateFormat class or its subclass as a static variable in a bean that can be accessed via multiple threads simultaneously, you need to synchronize access to it because DateFormat is not thread-safe. So you should change the code below to: publ

Re: how many Form beans

2005-10-28 Thread fea jabi
Thanks!! CurrencyValueList must be extending the CurrencyValue right!! CurrencyValueList there are get and set methods for List? I created the String[][] in action. how to convert that to a List? Thanks. From: "Murray Collingwood" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List"

Re: [OT] It's FRIDAY!!!

2005-10-28 Thread DGraham
Access denied. -Dennis Guillermo Castro <[EMAIL PROTECTED]> 10/28/2005 09:31 AM Please respond to "Struts Users Mailing List" To Struts Users Mailing List cc Subject Re: [OT] It's FRIDAY!!! Yes, but with so many public webmails, why can't they just open an account there to use it on

Re: how many Form beans

2005-10-28 Thread Murray Collingwood
Hi When I first read the subject line I thought the question was, "How many form beans does it take to change a light bulb?" Maybe this is a question for the more advanced Struts user - I'm not sure of the answer to that question. Any ideas Wendy / Laurie? I like to keep things simpleI t

Re: [OT] It's FRIDAY!!!

2005-10-28 Thread Guillermo Castro
Yes, but with so many public webmails, why can't they just open an account there to use it on public mailing lists? just my .02 cents On 10/28/05, James Mitchell <[EMAIL PROTECTED]> wrote: > > Sometimes employers require such a disclaimer from all employees, > others enforce it on the mail server

Re: [OT] It's FRIDAY!!!

2005-10-28 Thread David Delbecq
Complaining about someone's gender can be a full troll topic with some people i know :) Ok, you wanna start a disclaimer hunt? Some user of the redhat mailing list suggested this one in 2003 https://www.redhat.com/archives/fedora-list/2005-March/msg06354.html "IMPORTANT: This email is intended

Re: Problem with logic:iterate (and nested:iterate) and indexed form items - Help required

2005-10-28 Thread Murray Collingwood
Hi Mike Maybe I'm simplifying it somewhat and I'm not sure of your form-bean structure, however the outer loop should loop through 'familymembers' as it is looping it should set a form-bean for the inner loop identifying a 'familymember'. I also like to add the type here - helps my inline do

Re: [OT] It's FRIDAY!!!

2005-10-28 Thread Simon Chappell
On 10/28/05, James Mitchell <[EMAIL PROTECTED]> wrote: *snip* > Complaining about this is like complaining about someone's gender. Is that an option? All I can think about now is The Lumberjack Song! ;-) -- www.simonpeter.com -

Re: how many Form beans

2005-10-28 Thread fea jabi
According to what you suggested I created the below in the action String row1[][] = {{"type1","currency1","amount1"}, {"type2","currency2","amount2"}, {"type3","currency3","amount3"}, {"type4","currency4","amount4"}

Problem with logic:iterate (and nested:iterate) and indexed form items - Help required

2005-10-28 Thread Mike Manley
Hi, I have a problem trying to create a multi row edit form which has to be able to dynamically decide which columns should be displayed for edit. My jsp uses the code below. id="familymembers"> id="formItem"> <% Input

Re: Showing my ignorance here. Sorry.

2005-10-28 Thread Wendy Smoak
Every once in a while I'll see an e-mail with a +1 in the body. Sorry for my ignorance but can someone please explain the meaning of "+1"? Here are some links that explain how voting works at the ASF and in Struts: http://www.apache.org/foundation/voting.html http://struts.apache.org/bylaw

Re: caching of message resources when using bean:message tag

2005-10-28 Thread James Mitchell
Yes, they are cached by default. You can always provide your own implementation or extension. I did. -- James Mitchell Software Engineer / Open Source Evangelist Consulting / Mentoring / Freelance EdgeTech, Inc. http://www.edgetechservices.net/ 678.910.8017 AIM: jmitchtx Yahoo: jmitchtx MSN

Re: [OT] It's FRIDAY!!!

2005-10-28 Thread James Mitchell
Sometimes employers require such a disclaimer from all employees, others enforce it on the mail server. Either way, it is not likely the choice of the people who send them. Honestly, I don't really understand why you created this thread. Complaining about this is like complaining about so

Re: caching of message resources when using bean:message tag

2005-10-28 Thread Lucas Opara
I have got same problem as Günther. Are you sure the messages are cached in formats HashMap? Because when you look at the source code of MessageResources, only the method getMessage with args uses the cache. How are the messages cached when you use getMessage(Locale,String)? -

Re: Showing my ignorance here. Sorry.

2005-10-28 Thread pantichd
Oh, OK. Thanks for clearing that up. By the way, I just want to say that this mailing list is awesome. I think we all sometimes take for granted the unbelievable level of "support" we get from something like this and all for free. Thanks everyone for donating your time to help out.

[OT] It's FRIDAY!!!

2005-10-28 Thread Larry Meadors
So, here is an irrelevant topic. What is with the 500 word essays for email discalimers on public mailing lists? "This e-mail is confidential and intended for the use of the named recipient only." WTH?!? Larry By opening this email, you acknowledge that you are a Friday slacker like me.

Re: Showing my ignorance here. Sorry.

2005-10-28 Thread Murray Collingwood
It's a vote in favour of something. -1 is a vote against. Kind regards mc On 28 Oct 2005 at 8:24, [EMAIL PROTECTED] wrote: > Hello, > > Every once in a while I'll see an e-mail with a +1 in the body. Sorry for > my ignorance but can someone please explain the meaning of "+1"? > > Thanks! >

Re: Tag library not detected

2005-10-28 Thread Murray Collingwood
Hi Laurent Can you please post samples of the code you are using, the taglib definition and the exact name and location of the tld files? Kind regards mc On 28 Oct 2005 at 13:34, Laurent wrote: > Hi, > > In my project I have a tag library. Its associated tld file is in the > webapp/WEB-INF d

Re: Showing my ignorance here. Sorry.

2005-10-28 Thread Larry Meadors
+1 == I agree, like if someone said your email discalimer was too long..I would reply and say: +1! Larry On 10/28/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hello, > > Every once in a while I'll see an e-mail with a +1 in the body. Sorry for > my ignorance but can someone please expla

Re: Problems emailing from struts

2005-10-28 Thread Borislav Sabev
C.F. Scheidecker Antunes wrote: Hello, Thanks for the info. I am still having problems sending email from a struts action. I've created a separate class emailClient to send the message. The class is on the end of the email. I have mailapi.jar under /WEB-INF/lib/ version 1.3.3.01

Showing my ignorance here. Sorry.

2005-10-28 Thread pantichd
Hello, Every once in a while I'll see an e-mail with a +1 in the body. Sorry for my ignorance but can someone please explain the meaning of "+1"? Thanks! - The information contained in this message is intended only for the personal and confidential use o

Re: elements appearance

2005-10-28 Thread Laurent
Anna Krajewska wrote: > I have a problem with tag. I want to set a styleclass or some > style parameters for the button, but when I set styleClass="button" and > styleId=""something" (I did not manage to find what this attribute is for, > and there is no difference beetween situations when it's

Tag library not detected

2005-10-28 Thread Laurent
Hi, In my project I have a tag library. Its associated tld file is in the webapp/WEB-INF directory. This works fine on my (linux) server but in the Netbeans IDE (windows) the tags are never parsed. They stay as in the HTML served to the browser. The xmlns also stays in the HTML. There are no erro

Re: Cross-Site Scripting attack

2005-10-28 Thread Christian Bollmeyer
Hi, don't have any recommendations specifically for CSS attacks at hand, but you may want to hava a look at WebGoat and WebScarab avai- lable from here: http://www.owasp.org/software/webgoat.html WebGoat teaches common Java web security pitfalls and has been quite successfuly used here for inte

elements appearance

2005-10-28 Thread Anna Krajewska
Hi I have a problem with tag. I want to set a styleclass or some style parameters for the button, but when I set styleClass="button" and styleId=""something" (I did not manage to find what this attribute is for, and there is no difference beetween situations when it's present in the tag an whe

Xls & CSV format reports with Jasper reports

2005-10-28 Thread Meenakshi Singh
hi all, please help. I am unable to generate csv & xls reports with Jasper reports. Problems: System Doesn't recognize the format for csv & xls. It gives the download file box with save & cancel buttons & then open & associate with box. In case of CSV: I selects the excel prg to associate the fi