Re: LazyLists

2007-03-02 Thread Laurie Harper
My first guess would be that your accessor methods are inconsistent: public List getBeneficiaries() public BeneficiaryVO getBeneficiaries(int index) public void setBeneficiaries(BeneficiaryVO beneficiaryVO) The setter is wrong, which will confuse the property introspection. On the other h

Re: OutputStreamPath

2007-03-02 Thread Laurie Harper
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dave, Dave Newton wrote: --- Laurie Harper <[EMAIL PROTECTED]> wrote: URL res = Thread.currentThread() .getContextClassLoader() .getResource(pathToConfigurationFile); // Save the properties

Re: What view technologies I can use with Struts 1 ???

2007-03-02 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Puchaz, puchacz wrote: > If anyone could list me all view technologies that I can use with JSF? And > tell me where I can find information how to add them to application. > > Please... > > ps > In Spring 2.0 those are: > o JSP > o Excel >

RE: What view technologies I can use with Struts 1 ???

2007-03-02 Thread Christopher Loschen
Maybe it's just Friday and I'm tired and cranky, but can't you do your own homework? You're not going to learn anything by having us do it for you. Several people have suggested starting with some Google research -- I agree that would be a good place to start. Research is so easy these days that th

What view technologies I can use with Struts 1 ???

2007-03-02 Thread puchacz
Hi I make comaprison of frameworks (Spring, Struts 1 and JSF) If anyone could list me all view technologies that I can use with JSF? And tell me where I can find information how to add them to application. Please... ps In Spring 2.0 those are: o JSP o Excel o Tiles

Re: [S2] Working with other technologies

2007-03-02 Thread Matt Filion
Some basic google searches will reveal most of this information for you. Here are a few links i found that will be helpful. http://lijinjoseji.wordpress.com/2007/01/04/three-advantages-of-integrating-structs-into-spring-2/ http://www-128.ibm.com/developerworks/java/library/j-sr2.html One of the

Re: [S2] Working with other technologies

2007-03-02 Thread Dave Newton
--- puchacz <[EMAIL PROTECTED]> wrote: > I would like to know how the situation looks in > Struts 1. Spring provides several support classes that allow you to use Actions as Spring beans. See the org.springframework.web.struts JavaDocs for specific classes or various Spring/Struts docs online. >

Re: [S2] Working with other technologies

2007-03-02 Thread puchacz
I was searching in struts 1 lib directory and there is nothing like "struts-2-{plugin name}-plugin.jar". I found it in Struts 2 but I would like to know how the situation looks in Struts 1. I know that i am bothering You, but I am a student who's compering Frameworks and I do this with Struts 1,

Re: [S2] Working with other technologies

2007-03-02 Thread Matt Filion
There are a lot of plugins that are shipped with the full struts release (if you look at the lib folder they have the name struts-2-{plugin name}-plugin.jar). There is one in there for spring and another for JSF. There are also example applications shipped with struts 2 the one I suggest you ta

Re: [S2] Working with other technologies

2007-03-02 Thread Dave Newton
Spring can be tightly integrated w/ Struts2. I use Spring *extensively* in S2 and it's great! I dont' work with JSF, so I can't comment on that. --- puchacz <[EMAIL PROTECTED]> wrote: > > That I have my project in Struts Technologies , but > I can add some > functionality or component or anythi

Re: [S2] Working with other technologies

2007-03-02 Thread Dave Newton
S1-Spring integration is also quite simple and the Spring distro includes several classes that make Actions-as-beans configuration trivial. --- puchacz <[EMAIL PROTECTED]> wrote: > > Ok thank YOu very much for Your answer, but I will > ask You for something else > :-). All You told me it's for S

Re: [S2] Working with other technologies

2007-03-02 Thread puchacz
Ok thank YOu very much for Your answer, but I will ask You for something else :-). All You told me it's for Struts 2, but do You know if there was the same situation with Strus 1 ??? Thanx Matt Filion wrote: > > There are a lot of plugins that are shipped with the full struts release > (if you

Re: [S2] Working with other technologies

2007-03-02 Thread puchacz
That I have my project in Struts Technologies , but I can add some functionality or component or anything from other Framework technologies like Spring or JSF Dave Newton-4 wrote: > > --- puchacz <[EMAIL PROTECTED]> wrote: >> I don't understand. In one article I found >> information that Spring

Re: Real time data display in a struts based application.

2007-03-02 Thread Dave Newton
--- Maya menon <[EMAIL PROTECTED]> wrote: > I really dont think we can download any of these > external libraries. I would highly recommend using a library. If nothing else you'll want Prototype (or a variant, like prototype-lite etc.) for writing the Javascript if for no other reason than to a

Re: [S2] Working with other technologies

2007-03-02 Thread Dave Newton
--- puchacz <[EMAIL PROTECTED]> wrote: > I don't understand. In one article I found > information that Spring can be > intagrated with Struts, JSF, etc And the author > wrote that it's diffrent > situation than in Struts. And now, You tell me that > the same situation is in > Struts??? So this

Re: Real time data display in a struts based application.

2007-03-02 Thread Maya menon
Musachy, Yes, we use struts 1.x, and I really dont think we can download any of these external libraries. So said so, I have to write javascript etc to achive these "AJAX timed events".. Any one has done it to achieve it ? I believe javascript,XML etc are needed.. any exampl

Re: How to use for multiple fields of form

2007-03-02 Thread Java Guru
Hi Every One, I solved the problem. I crated another filed fullName in Persons.javaand added setter and getter methods for it. I used the following statement to populate select -

Re: [S2] Working with other technologies

2007-03-02 Thread puchacz
I don't understand. In one article I found information that Spring can be intagrated with Struts, JSF, etc And the author wrote that it's diffrent situation than in Struts. And now, You tell me that the same situation is in Struts??? So this guy were telling that Spring is better I don't

Re: Passing parameter through

2007-03-02 Thread Glenn
You can pass the map as a property in the link such as: Struts will build a query string with the values in the map. - maestro

[OT][ANN] JAVAWUG BOF 25 / 27 March 2007 @ 18:30 / Adobe Flex with Ben Forsaith / Skills Matter

2007-03-02 Thread Peter . Pilgrim
Hi I would like to formally announce that ``JAVAWUG'' (Java Web User Group) is holding the BOF 25 at the Skills Matter, London. Ben Forsaith will give a presentation on Adobe Flex on Tuesday 27th March 2007 at Skills Matter Ben will talk about integrating Flex with Java server side frameworks F

Re: LazyLists

2007-03-02 Thread Glenn
Thanks for the help its very appreciated. This code has been working for over a year without any problems in a Java 1.4 and J2EE 1.3. The LazyList hand cranking can be found here: http://wiki.apache.org/struts/StrutsCatalogLazyList Here are the plain methods in the InsuranceForm: private Benefic

How to use for multiple fields of form

2007-03-02 Thread Java Guru
Hi every one, I have a Question for you. I am trying to display and attribute of session on a form.It is something like this on normal jsp. --

Re: Dynavalidator Question:

2007-03-02 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 James, James Drinkard wrote: > I'm using Struts 1.0 version with a dynaform and a select control. > For some reason the struts validator doesn't work with that control. > I've seen that mentioned in an article before. Is this corrected in > later vers

Re: Working with other technologies

2007-03-02 Thread Richard Yee
Well that is a bit of a broad question. What type of frameworks are you looking for? If you are a developer, then you should be able to integrate almost any framework with Struts. -Richard puchacz wrote: Hi I have a question. If anyone could list me all frameworks that I can intagrate with S

Re: Working with other technologies

2007-03-02 Thread Leon Rosenberg
the answer is: goto www.google.com type in "java framework" you got your answer... with 90% accuracy... regards Leon On 3/2/07, puchacz <[EMAIL PROTECTED]> wrote: Hi I have a question. If anyone could list me all frameworks that I can intagrate with Struts? If there are any ?? Thanx -- View

Working with other technologies

2007-03-02 Thread puchacz
Hi I have a question. If anyone could list me all frameworks that I can intagrate with Struts? If there are any ?? Thanx -- View this message in context: http://www.nabble.com/Working-with-other-technologies-tf3334031.html#a9270920 Sent from the Struts - User mailing list archive at Nabble.com.

Working with other technologies

2007-03-02 Thread puchacz
-- View this message in context: http://www.nabble.com/Working-with-other-technologies-tf3334030.html#a9270918 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

RE: help required on managing a struts action with popup's

2007-03-02 Thread Raghupathy, Gurumoorthy
Can't you set the "target" of the form to "_parent" Once you submit then the parent window will populate automatically :) Assuming that you have used struts tag library for the form fields . Read http://www.htmlcodetutorial.com/forms/_FORM_TARGET.html Regards Guru --

Passing parameter through

2007-03-02 Thread Rauf Khan
Hi Iam facing problem with . my JSP page has two forms for which iam using *LookupDispatchAction* for submitting the page information. Below this iam displaying the details of the employees for which i have added two links (Edit, Delete) by using . Each employee has a unique id which i need to

RE: Re: DynaValidatorForm and BigDecimal problem

2007-03-02 Thread Gundersen, Richard
Hi Yep, I realised that was a limitation as I was putting it in. But for me, this is still quite a nice solution because the values need to be very precise so using BigDecimal all the way through gives me a (perhaps false) sense of security. Also, it's a big system and I have to change a lot of fi