Re: Putting a field into the REQUEST

2005-01-07 Thread Dakota Jack
On Fri, 7 Jan 2005 18:35:44 -0500, David G. Friedman <[EMAIL PROTECTED]> wrote: > The explanation you gave made some things clear. If I understand you > correctly, you have a field in the SavePlanProfileAction.java class that you > want to display in the JSP. David, he wants to get the hidd

RE: Putting a field into the REQUEST

2005-01-07 Thread David G. Friedman
Krishna, The property tag is required for many html taglib tags. The point I was trying to get across was that one syntax uses whatever ActionForm goes with the form specified by the html:form's opening tag using the standard: Whereas you can pull any saved bean's property using the below modi

Re: cross application form bean

2005-01-07 Thread Craig McClanahan
Sessions are unique to individual applications. In addition, individual applications are loaded by different class loaders (because they have different WEB-INF/lib directories), so its quite likely that you'd get ClassNotFoundException errors even if sessions were allowed to cross the boundaries.

cross application form bean

2005-01-07 Thread Oleg
Hi, Is there a way to access a form bean (login info) cross applications. For example, a user logs in application 1, the form bean created with session scope and than redirected to the URL of second application, there application finds created from bean and will not ask to login again. I tried th

An easy way to view Struts 1.2.4 JavaDocs alongside source code

2005-01-07 Thread David G. Friedman
A few days ago I posted about JSourcery - a site having JavaDocs with clickable links to the source code of each class file. Well, I emailed them and they added Struts v1.2.4 and source code to their JavaDocs. Here is the direct link even though the front page of that site lists Struts down the bo

Re: Please explain Struts Chain

2005-01-07 Thread Dakota Jack
Lastly, on commons-chain, the docs on Chain say A [EMAIL PROTECTED] Chain} represents a configured list of * [EMAIL PROTECTED] Command}s that will be executed in order to perform processing * on a specified [EMAIL PROTECTED] Context}. Each included [EMAIL PROTECTED] Command} will be * execut

Re: Please explain Struts Chain

2005-01-07 Thread Dakota Jack
So, a Chain is a Command which holds another Command. That is about it. Jack On Fri, 7 Jan 2005 16:44:04 -0800, Dakota Jack <[EMAIL PROTECTED]> wrote: > Sorry, Wendy, the first method in Chain is void addCommand(Command command); > > Jack > > On Fri, 07 Jan 2005 16:50:57 -0700, Wendy Smoak <[

Re: Please explain Struts Chain

2005-01-07 Thread Dakota Jack
Sorry, Wendy, the first method in Chain is void addCommand(Command command); Jack On Fri, 07 Jan 2005 16:50:57 -0700, Wendy Smoak <[EMAIL PROTECTED]> wrote: > From: "Frank W. Zammetti" <[EMAIL PROTECTED]> > > Eh, I feel like I've hijacked this thread now, so let me get off this > > topic for now

Re: Please explain Struts Chain

2005-01-07 Thread Dakota Jack
It is different, Wendy, if you mean commons-chain. There is an interface Command with the method boolean execute(Context context) throws Exception; There is an interface Chain which extends Command and has the methods: boolean execute(Context context) throws Exception; boolean exec

Re: Attributes Initialization

2005-01-07 Thread Eli Segev
Wendy, I finally figured it. The issue is validation as suggested by Jason Lea. What I did not know was that to stop validation you have to add validation="false" since the default value for validation is true. Just omitting the validation from the action is not enough. Thanks for all the inp

Re: Attributes Initialization

2005-01-07 Thread Wendy Smoak
From: "Eli Segev" <[EMAIL PROTECTED]> > Validation for the init action is off. Its 'execute' method has no call to super.execute(). > This still does not solve the problem. At this point, since everything you've posted *looks* like it should work, I'd suggest that you strip the project down to th

Re: Q. Should a J2EE architect be an HTML expert

2005-01-07 Thread draegoon Z
I use HTML, CSS, Javascript, JSP, Struts, Torque, Tomcat, and MySQL. I design web apps from frontend to the server to the data model and configure the server. I'm only limited by my imagination. Although I do use best practices and design in a module way... I don't like having my head in the sand.

Re: AW: Attributes Initialization

2005-01-07 Thread Eli Segev
Leon, You don't need to specify 'input' and 'name'? Leon Rosenberg <[EMAIL PROTECTED]> wrote: I think you need following: type="segev.CreateFormAction" scope="request" > In execute of CreateFormAction you can do your initialization. > -Ursprüngliche Nachricht- > Von: [EMAIL PRO

Re: JSP bean

2005-01-07 Thread Frank W. Zammetti
That's correct Jim, it's a standard part of all my ActionForms. But, it's a generic function, you can insert it into any class and be off to the races. As I said, if you wanted to make it a helper function that you just pass a class too, that also shouldn't be a problem, and that would deal w

Re: Q. Should a J2EE architect be an HTML expert

2005-01-07 Thread Frank W. Zammetti
The more you know about all the components that will go into a system, the better architect you can be. I'm an architect myself, but I demand that I still be allowed to do some amount of coding. Sometimes it's a lot (in fact sometimes it's ALL of the coding too), sometimes it's not much at all

RE: Attributes Initialization

2005-01-07 Thread Eli Segev
Jim, I have followed your instructions. Validation for the init action is off. Its 'execute' method has no call to super.execute(). This still does not solve the problem. I agree with that it is probably a configuration issue. Jim Barrows <[EMAIL PROTECTED]> wrote: > I think that you a

Re: Please explain Struts Chain

2005-01-07 Thread Wendy Smoak
From: "Frank W. Zammetti" <[EMAIL PROTECTED]> > Eh, I feel like I've hijacked this thread now, so let me get off this > topic for now. Thanks for your insight though Joe! Go right ahead-- I got my answer in that I never cared about RequestProcessor, so I don't need to worry about Chain too much.

RE: Attributes Initialization

2005-01-07 Thread Eli Segev
David, The throws clause is in there. It just got cut in the cut and paste to the email. "David G. Friedman" <[EMAIL PROTECTED]> wrote: Eli, Where is the throws clause to match the proper signature? Regards, David -Original Message- From: Eli Segev [mailto:[EMAIL PROTECTED] Sent: T

Re: Q. Should a J2EE architect be an HTML expert

2005-01-07 Thread Dakota Jack
The key here is "expert". You can know pretty much everything you need to know as a J2EE architect about HTML and not be an expert in HTML. This, however, in my opinion, would include all technical details about all HTML tags. I cannot think of a single thing that you should forget if you know H

RE: Q. Should a J2EE architect be an HTML expert

2005-01-07 Thread Jim Barrows
> -Original Message- > From: kjc [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 4:36 PM > To: Struts Users Mailing List > Subject: Q. Should a J2EE architect be an HTML expert > > > > Question to all. > Should a J2EE architect be an HTML expert. Better question... will bei

Re: Q. Should a J2EE architect be an HTML expert

2005-01-07 Thread Vic
No. .V kjc wrote: Question to all. Should a J2EE architect be an HTML expert. Thanks in advance. -- RiA-SoA w/JDNC forums - help develop a community My blog - To unsubs

Re: Please explain Struts Chain

2005-01-07 Thread Curtis Taylor
Hi Joe, Thanks for the clarification; looks way interesting! One (rather pointed) question: Being that RequestProcessor is one of the primary extension points for the Action servlet, how will this new API affect HTTPS protocol handling? I assume that the SSLExt library will have to be completely

Re:

2005-01-07 Thread Wendy Smoak
From: "Ashish Kulkarni" <[EMAIL PROTECTED]> > is it possible to use enumeration, if yes how > Does this work?? Enumeration is an interface, don't form properties have to be concrete types? I don't see how the framework could populate this from the request, it wouldn't know what type of object

Q. Should a J2EE architect be an HTML expert

2005-01-07 Thread kjc
Question to all. Should a J2EE architect be an HTML expert. Thanks in advance. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Putting a field into the REQUEST

2005-01-07 Thread David G. Friedman
Krishna, The explanation you gave made some things clear. If I understand you correctly, you have a field in the SavePlanProfileAction.java class that you want to display in the JSP. Since the java class name has Action and not "Form" or "ActionForm" in the name, my below answer assumes your Sav

Re: JSP bean

2005-01-07 Thread Jim Douglas
Frank, You're using it from an ActionFormI have this problem in a class where I am implementing a Tiles Controller, could that be the problem? I had a database connectivity problem in this controller class already and had to resort to JNDI. Jim From: [EMAIL PROTECTED] Reply-To: "Struts

RE:

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 3:24 PM > To: Struts Users Mailing List > Subject: RE: > > Hi > i would like to use option tag from struts, do you > have a example, i dont see any in struts-examples http://struts.

RE:

2005-01-07 Thread Ashish Kulkarni
Hi i would like to use option tag from struts, do you have a example, i dont see any in struts-examples Ashish --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Ashish Kulkarni > [mailto:[EMAIL PROTECTED] > > Sent: Friday, January 07, 2005 3:11 PM > > To: user@st

RE:

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 3:11 PM > To: user@struts.apache.org > Subject: > > > method="post"> > multiple="false"> > > > > - To unsubs

user@struts.apache.org

2005-01-07 Thread Ashish Kulkarni
Hi is it possible to use in my jsp i have defined Ashish __ Do you Yahoo!? Yahoo! Mail - You care about security. So do we. http://promotions.yahoo.com/new_mail

RE: JSP bean

2005-01-07 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 2:19 PM > To: user@struts.apache.org > Subject: RE: JSP bean > > > > On Fri, January 7, 2005 4:11 pm, Jim Barrows said: > > I've never found it onerous. Java works with directory

RE: JSP bean

2005-01-07 Thread fzlists
On Fri, January 7, 2005 4:11 pm, Jim Barrows said: > I've never found it onerous. Java works with directory structures. > Eclipse uses the same directory strucutre that Java would require, and > makes it extraordinarily easy to refactor your code if you want to. > I'm not sure what you mean by p

RE: JSP bean

2005-01-07 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 2:03 PM > To: user@struts.apache.org > Subject: RE: JSP bean > > > You know, my experience with "Eclipse" has been WSAD, which > I've been far less than impressed with. Maybe I sh

RE: JSP bean

2005-01-07 Thread fzlists
You know, my experience with "Eclipse" has been WSAD, which I've been far less than impressed with. Maybe I should try plain Eclipse, especially hearing how all you guys are always singing it's praises. I'm not sure it would be any better for me personally, but it could be. Worth some time th

RE: JSP bean

2005-01-07 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 1:40 PM > To: user@struts.apache.org > Subject: RE: JSP bean > > > Eh, you guys and your fancy IDE's :) > > I'm a "by-hand" guy, gimme UltraEdit and a command line and > I'm happy

RE: JSP bean

2005-01-07 Thread fzlists
Eh, you guys and your fancy IDE's :) I'm a "by-hand" guy, gimme UltraEdit and a command line and I'm happy (and more productive than most of the guys here using WSAD frankly), but I have to admit, plug-ins like that make it tougher to stay that course! -- Frank W. Zammetti Founder and Chief So

Re: JSP bean-- commclipse plugin info

2005-01-07 Thread Bryce Fischer
http://commonclipse.sourceforge.net/ Ashish Kulkarni wrote: Hi sounds like a good plugin, but was not able to google it, can you give the website from where i can download this plugin Ashish - To unsubscribe, e-mail: [EMAIL PROTECT

RE: JSP bean-- commclipse plugin info

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 1:37 PM > To: Struts Users Mailing List > Subject: RE: JSP bean-- commclipse plugin info > > > Hi > sounds like a good plugin, but was not able to google > it, can you give the website

RE: JSP bean-- commclipse plugin info

2005-01-07 Thread Ashish Kulkarni
Hi sounds like a good plugin, but was not able to google it, can you give the website from where i can download this plugin Ashish --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > -Original Message- > > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > > Sent: Friday, January 07, 200

RE: JSP bean

2005-01-07 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 1:12 PM > To: user@struts.apache.org > Subject: Re: JSP bean > > > I always include the following method in all my There's a handy plugin called commclipse that I use to create my

help in defining the flow of action class and jsp in my struts application

2005-01-07 Thread Ashish Kulkarni
Hi I need some help in defining action classes and form beans for my application Let me explain the flow of my application 1 User will be displayed a blank HTML page, which a only one URL for login 2 When user clicks on this URL i have to go to a database and select all the user id that can be used

Re: JSP bean

2005-01-07 Thread fzlists
I always include the following method in all my ActionForms... I'm sure you can do the same in whatever bean you have, or adapt it to be able to pass the bean to it if you can't modify the bean itself... This will actually show you all fields AND their values, but you can of course hack it as yo

JSP bean

2005-01-07 Thread Jim Douglas
To all, I have a bean that's present in a JSP, does anyone know how to loop through a bean and list out the properties available? Here's the cose I have <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> form.heading

Re: Really need help - Struts with Hibernate

2005-01-07 Thread James Mitchell
Chuck demonstrates how to setup a service based approach in the very book you mentioned. Take a look at the beer4all demo app. Chuck wrote this and demo'd it at one of the Atlanta Java Users Group meetings. Here's a modified version that uses mysql... http://sourceforge.net/projects/struts ...

Really need help - Struts with Hibernate

2005-01-07 Thread Ritchie Warsito
Maybe this is not the place to ask Struts & Hibernate related issues, but the Hibernate forums & docs aren't clear on this for me, or I'm misunderstanding a lot. I hope some of you have worked with Hibernate so I'll just ask. The scenario: - All my tables are mapped properly, POJO classes have b

Re: cache problem

2005-01-07 Thread Erik Weber
Right. IE is the problem. There's nothing "cargo cult" about it, and I am insulted by that comment (perhaps that was the point). I wouldn't post frivolous comments to this list. The problem is that some browsers (including versions of both Netscape and IE reportedly) will ignore the initial set

Re: Please explain Struts Chain

2005-01-07 Thread James Mitchell
I'd love for someone else to solve the workflow problem for me once and for all! I'm not sure what others have or want in a workflow framework, but I hacked together one that I use on my day job that handles nth-level nesting. The navigation is managed via 2 Stacks and a custom action mapping clas

RE: any example struts + displaytag(export)

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Metin Erksan [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 10:43 AM > To: user@struts.apache.org > Subject: any example struts + displaytag(export) > > > > hi > > is there anybody run struts+displaytag with export > property ? i still live pr

AW: Attributes Initialization

2005-01-07 Thread Leon Rosenberg
I think you need following: In execute of CreateFormAction you can do your initialization. > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:user- > [EMAIL PROTECTED] Im Auftrag von Eli > Segev > Gesendet: Donnerstag, 6. Januar 2005 23:40 > An: Struts Users Mailin

Cannot find bean org.apache.struts.taglib.html.BEAN in any scope - Tiles problem?

2005-01-07 Thread John Moore
I know this is an old one, and I know what the standard answer is, but the standard answer doesn't seem to apply in my situation here. The standard explanation of this is that one is using, say, outside of an enclosing . What I have, though, is not simply that. I have an html:form which uses a Til

RE: Paging through a collection on a page

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Donie Kelly [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 10:39 AM > To: Struts Users Mailing List > Subject: Paging through a collection on a page > > > HI all > > > > Anybody got some sample code that allows me to display > multiple pages

Cannot find bean org.apache.struts.taglib.html.BEAN in any scope - Tiles problem?

2005-01-07 Thread John Moore
I know this is an old one, and I know what the standard answer is, but the standard answer doesn't seem to apply in my situation here. The standard explanation of this is that one is using, say, outside of an enclosing . What I have, though, is not simply that. I have an html:form which uses

Paging through a collection on a page

2005-01-07 Thread Donie Kelly
HI all Anybody got some sample code that allows me to display multiple pages from a collection with next and previous page links. The collection is stored in the form class so I’m wondering how easy this is to do. If there are some samples on the web I’d be interested in having a look. I’m not

any example struts + displaytag(export)

2005-01-07 Thread Metin Erksan
hi is there anybody run struts+displaytag with export property ? i still live problem. and it still downloads my action.is this a reason of jdeveloper10g ? any help will be appreciated,-esp code snippet- sincerely __ Do you Yahoo!? Yahoo! Ma

RE: Regex in struts

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Chaikin, Yaakov Y. [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 10:18 AM > To: 'Struts Users Mailing List' > Subject: Regex in struts > > > Hi, > > I was told that Struts uses regular expression language that > is not 100% > compatible with J

RE: cache problem

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Chaikin, Yaakov Y. [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 10:22 AM > To: 'Struts Users Mailing List' > Subject: RE: cache problem > > > Very interesting... Is this legal according to the HTML spec? Well. Let's see it's IE. A Micro

Re: cache problem

2005-01-07 Thread PA
On Jan 07, 2005, at 18:21, Chaikin, Yaakov Y. wrote: Very interesting... Is this legal according to the HTML spec? Hmmm... more like cargo cult perhaps. -- http://zoe.nu/ http://alt.textdrive.com/ - To unsubscribe, e-mail: [EMAIL

RE: JSTL import url is broken? Surely not.

2005-01-07 Thread Daffin, Miles (Company IT)
Thanks Kris. I last read the specs some 3 years ago. Looks like I have a little homework to do this weekend :) Miles > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED] > Sent: 07 January 2005 12:15 > To: Struts Users Mailing List > Subject: Re: JSTL import url is brok

RE: cache problem

2005-01-07 Thread Chaikin, Yaakov Y.
Very interesting... Is this legal according to the HTML spec? Yaakov. -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 11:49 AM To: Struts Users Mailing List Subject: Re: cache problem I don't know if this is your problem, but, to ensure that t

Regex in struts

2005-01-07 Thread Chaikin, Yaakov Y.
Hi, I was told that Struts uses regular expression language that is not 100% compatible with Java regex. Is this true? If so, where is the documentation on the regex language that Struts uses? Thanks, Yaakov. - To unsubscribe, e

Re: Handling Dynamic Input Fields in ActionForm

2005-01-07 Thread Pavel Kolesnikov
Look at indexed or mapped properties (choose what you feel is more suitable for you). http://www.google.com/search?q=struts%20indexed%20mapped%20properties Pavel On Fri, 7 Jan 2005 21:10:27 +0530, Venkata Krishna V. <[EMAIL PROTECTED]> wrote: > Hi All, > > I have got a jsp page which has dynami

Re: cache problem

2005-01-07 Thread PA
On Jan 07, 2005, at 08:12, Metin Erksan wrote: i use "no-cache" option in html headers HTML headers are not the proper place to put HTTP headers. Even in Struts. Check HTTP 1/1 Header Field Definitions section 14.9 Cache-Control. http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html Another good

Re: cache problem

2005-01-07 Thread Erik Weber
Also, there is another approach. You can append a random String to your all your links. I like to use the current UNIX time. For example: http://www.foo.com/myPage?time=1105116823 This ensures that each link appears different to the browser even if the page is the same. Erik Erik Weber wrote:

RE: cache problem

2005-01-07 Thread Durham David R Jr Contr 805 CSPTS/SCE
> hi > i put below code in my jsp and solved problem.however > i use html-meta tags it doesnot work.when i use this > method it works. but i dont understand why this occurs > like this > > sincerely Any answer would likely be speculation, but I'm glad to hear it's working for you. > <% response

Re: cache problem

2005-01-07 Thread Erik Weber
I don't know if this is your problem, but, to ensure that the "Pragma" and "Expires" meta tags work properly (at least in IE), you have to put them at the top of your page AND at the bottom of your page (I use a second "head" tag after the closing "body" tag, repeating the meta tags). Erik Meti

RE: cache problem

2005-01-07 Thread Metin Erksan
hi i put below code in my jsp and solved problem.however i use html-meta tags it doesnot work.when i use this method it works. but i dont understand why this occurs like this sincerely <% response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP

RE: cache problem

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Metin Erksan [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 12:12 AM > To: user@struts.apache.org > Subject: cache problem > > > hi > i develop an insert/delete/update struts db application.i use > jdeveloper10g and running embedded oc4j of jdev

RE: Putting a field into the REQUEST

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Krishna Mohan Radhakrishnan [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 06, 2005 11:55 PM > To: Struts Users Mailing List > Subject: RE: Putting a field into the REQUEST > > > Hi David, > > My problem is that there is a JSP called updatePlanProfileC

RE: [OT] Seeking advice on JSP + commerce

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Erik Weber [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 3:56 AM > To: Struts Users Mailing List > Subject: [OT] Seeking advice on JSP + commerce > > I could use your advice. Are there any good "boxed" JSP solutions you > know of that I could us

RE: Attributes Initialization

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Eli Segev [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 06, 2005 5:13 PM > To: Struts Users Mailing List > Subject: RE: Attributes Initialization > > > Jim, > > The 'execute' method of 'SetupSubmitAction' is never called. > The 'execute' method of

Handling Dynamic Input Fields in ActionForm

2005-01-07 Thread Venkata Krishna V.
Hi All, I have got a jsp page which has dynamically created input text fields. Please advice me how to handle these(create and access the values in Action Class) dynamically created controls in Action Form. TIA, Venkat

Re: Trouble validating

2005-01-07 Thread Matt Bathje
Miguel Atienza wrote: Hi!, I´m having trouble validating a standard form using de validation.xml file. I defined one class,MyValidatorForm that extends ValidatorForm with the fields of the form and the getters and setters methods. In the validation.xml,when I use depends="required" for the fields I

Re: ValidWhen validation

2005-01-07 Thread Matt Bathje
Betty Koon wrote: Matt, Have you tried putting just white spaces in the field for first name in the third test case. It will pass which is incorrect, that's the part I don't understand and got stucked on. It looked like validwhen treated all whitespace string value for a field the same way as the

Re: Strange problem - JDBC Realm, Struts & CSS

2005-01-07 Thread Larry Meadors
is the css protected? that would cause the login page to be unstyled. On Fri, 07 Jan 2005 11:50:15 -0300, Ritchie Warsito <[EMAIL PROTECTED]> wrote: > Hey I've got a really strange problem. > I'm using jdbc realm in my struts application and a css stylesheet for > my jsp pages. > For the realm I'

Strange problem - JDBC Realm, Struts & CSS

2005-01-07 Thread Ritchie Warsito
Hey I've got a really strange problem. I'm using jdbc realm in my struts application and a css stylesheet for my jsp pages. For the realm I'm using a login form, so not BASIC. The form page is styled with CSS. On the form page I also have locale switching options. So here's the deal: I try to ac

Trouble validating

2005-01-07 Thread Miguel Atienza
Hi!, I´m having trouble validating a standard form using de validation.xml file. I defined one class,MyValidatorForm that extends ValidatorForm with the fields of the form and the getters and setters methods. In the validation.xml,when I use depends="required" for the fields I want, It works fine,

Re: 2 Q abort renderen a options collection

2005-01-07 Thread marc
That just works, thanks alot. Jeff Beal wrote: First one: 1) set multiple="true" on your tag. 2) Create a product_id property on your form bean that is a String array: public String[] getProduct_id() { } public void setProduct_id(String[] newValue) { } (I think so, anyway. I haven't done this

Re: JSTL import url is broken? Surely not.

2005-01-07 Thread Kris Schneider
No worries, the attribute in named "uri" and not "url" for a good reason: it's an identifier, not a location. It's just been standard practice to use a URL string as the value. Check out the JSP spec for the gory details on how containers resolve those identifiers. You'll notice there's no resource

RE: [OT] WinCVS problem (free beer!)

2005-01-07 Thread Daniel Perry
Yup, browsing would be nice! I cant find a product that does it all. tortoise is nice for general cvs use (ie commiting, updating, etc from other peoples servers). I find eclipse more useful for my work though - list of files that have changes, incoming, outgoing, conflicts, built in diff - only

Re: [OT] Seeking advice on JSP + commerce

2005-01-07 Thread Vic
PHP is more productive than J2EE becuase you start w/ exisiting working code, ex: http://www.opensourcecms.com/index.php?option=content&task=view&id=139 and modify it. (unless you do RiA, where JDNC rules!) .V Erik Weber wrote: Good morning. I need some advice. I have a friend who wants me to

RE: formatting of strings

2005-01-07 Thread Krishna Mohan Radhakrishnan
HI Pavell, The class of telefoneno is String. Can we do a similar type of formatting using String. Any ideas? INFOSYS TECHNOLOGIES LIMITED 3rd Floor | "Bhavani" Technopark | Trivandrum 695 581 | India Phone +91 471 2700888 Extn 7365 | Mobile: +919895532610 [EMAIL PROTECTED]| www.infosys.com

[OT] Seeking advice on JSP + commerce

2005-01-07 Thread Erik Weber
Good morning. I need some advice. I have a friend who wants me to build his personal site. He is an artist and wants to put together an online portfolio. At first I was going to steer him toward finding a PHP programmer. But, with companies such as lunarpages now offering $8 hosting rates, I th

Re: formatting of strings

2005-01-07 Thread Pavel Kolesnikov
Krishna, what's the class of your telefoneno property? The format attribute is used only if the value to be displayed is NOT instance of java.lang.String. Pavel On Thu, 6 Jan 2005 18:56:23 +0530, Krishna Mohan Radhakrishnan <[EMAIL PROTECTED]> wrote: > Sorry Tommy, > The thing that u said simple

RE: Displaytag, number formatting, and sorting

2005-01-07 Thread Paul McCulloch
The latest version of displaytag supports a sortPropery setting. This allows you to display a nicely formatted value but sort on the underlying data. Column decorators are very rarely required now. For example: Paul > -Original Message- > From: Barn

JSTL import url is broken? Surely not.

2005-01-07 Thread Daffin, Miles (Company IT)
Dear All, The JSTL documentation states: "Using the Standard Taglib libraries is simple; you simply need to import them into your JSP pages using the taglib directive. For instance, to import the 'core' JSTL library into your page, you would include the following line at the top of your JSP pag

Re: Character encoding problems after 1.1 to 1.2.4 upgrade

2005-01-07 Thread Guillaume Cottenceau
J.Patterson Waltz III writes: > Yep. That was it. > I commented out the filter definition for ResponseOverrideFilter and > everything displayed as expected. > I then reinstated it, placing it *after* the > SetCharacterEncodingFilter in web.xml, and all was still well. Great! > Really, really a