RE: HELP:I've got a new problem when I tried to use struts-menu in my Tiles using display-tag.

2006-05-19 Thread David G. Friedman
Have you asked this question on the struts-menu forum/mailing list at Sourceforge? That list might have more specific experience merging these packages. See: http://sourceforge.net/forum/forum.php?forum_id=160189 Regards, David -Original Message- From: M.Liang Liu [mailto:[EMAIL PROTE

drop down links.

2006-05-19 Thread Abhimanyu Koul
Hi! I am using drop down menus using javascript im my application. i want to know how can we use in those cases for the individual entry of the drop down menu. since it doesn't use any Abhimanyu Koul FinEng Solutions (P) Ltd. Dani Compound, 158, Vidyanagari Marg, Kalina, Santacruz (East), Mumb

Re: Shale Unit Testing

2006-05-19 Thread Craig McClanahan
On 5/19/06, Robert Alexandersson <[EMAIL PROTECTED]> wrote: Hello. I will start developing a application using Shale, for personal use. This time I want to start the right way, meaning I want to build it Testdriven, or at least creating testcases for it. Are there some exampleapplications that

Re: HELP:I've got a new problem when I tried to use struts-menu in my Tiles using display-tag.

2006-05-19 Thread M.Liang Liu
In the Tomcat 5.5.x logs file ,there's no more info. As following: log4j:WARN No appenders could be found for logger ( org.apache.catalina.startup.TldConfig). log4j:WARN Please initialize the log4j system properly. log4j:WARN No appenders could be found for logger ( org.apache.catalina.sessio

HELP:I've got a new problem when I tried to use struts-menu in my Tiles using display-tag.

2006-05-19 Thread M.Liang Liu
Hi everybody! I've got a new problem when I tried to use struts-menu in my Tiles using display-tag. I put the struts-menu in my Tiles alone and find it works well. However,the problem occurred when I put one page using display-tag in the same Tiles page including struts-menu:The struts-menu ca

[shale] pom.xml of tiles

2006-05-19 Thread Yoshitaka Tanaka
Hi, I tried buiding shale-starter by maven2. insted of ant. Then, I found a diference between groupId's structure in pom.xml and structure of repository for tiles. In http://people.apache.org/maven-snapshot-repository/org/apache/struts/shale/shale-tiles/1.0.3-SNAPSHOT/shale-tiles-1.0.3-SNAPSHOT

using tiles/validator across modules

2006-05-19 Thread Berk, Jason R.
how can I configure my struts-config files to allow modules to define the validation rules and tiles definitions they (and only they) need, while defining cross application validations/tile-defs at the default struts config level? Currently, we do NOT use the default struts config. It is defined

what is the best practice?

2006-05-19 Thread Joel Alejandro Espinosa Carra
Hi all. I think this is kind of a basic question. I have an application that haves 3 tables: users, messages and user_inbox for the relationship of first 2 ones. I have a class named MessagesManager in order to manage the messages to-and-from the database throught the business methods, one of

Null Exception in ActionForm

2006-05-19 Thread red phoenix
I have two jsp file,such a.jsp and b.jsp,one Action file and one Form file,I want to from a.jsp to call Action file,and I set value of Form in Action file,and return to b.jsp,and show value in b.jsp,so I can modify this value in b.jsp my struts-config.xml is follows: /*b.jsp*/ ...

RE: is there any way to customize the client side validation popup window

2006-05-19 Thread Chaudhary, Harsh
If you mean the Browser pop up window, then no. You could think about server side validation and generating custom pop-ups using Javascript. Harsh. -Original Message- From: Lixin Chu [mailto:[EMAIL PROTECTED] Sent: Friday, May 19, 2006 4:59 PM To: Struts Users Mailing List Subject: is t

is there any way to customize the client side validation popup window

2006-05-19 Thread Lixin Chu
Hi All, would like to know if there is any way to customize the client side validation popup window ? i am using struts client side validator. thanks lixin

non-visual automatic jsp design issue + tiles-def

2006-05-19 Thread Chris Pat
Hello In a tiles-def.xml is/how it possible to have a Without going to the complexity of a making it a tile then a controller for the tile? It appears that value can only be a jsp. Alternatively is it possible to create a "non-visual" jsp that will automatically either post a value in

Re: struts token

2006-05-19 Thread Michael Jouravlev
Search for renderToken() in FormTag.java: http://svn.apache.org/viewvc/struts/action/trunk/taglib/src/main/java/org/apache/struts/taglib/html/FormTag.java?view=markup Michael. On 5/19/06, temp temp <[EMAIL PROTECTED]> wrote: What hidden field should I use in jsp to pass the generated token to

change URL in action?

2006-05-19 Thread fea jabi
have the above code in jsp. when the user cliks on the link, and when the action method is executing want to change the URL to ...PrepareAction.do instead of having the url as .PrepareAction.do?method="add"&TOKEN=... Is it possible to do this? if so how d

Re: struts token

2006-05-19 Thread temp temp
What hidden field should I use in jsp to pass the generated token to next action class? Thanks & Regards Manfred Wolff <[EMAIL PROTECTED]> wrote: Hi mr. temp.temp 1. The Action calls saveToken(request); 2. A unique token will be generated and saved in the session and in the jsp as a hidden

Re: Another problem of Tiles:the display-tag can NOT display using paging.

2006-05-19 Thread M.Liang Liu
Thank you David G. Friedman . It is really an error about "next page" url.I fixed it by changing the requestURL of the display-tag table. Thanks for your info and it works. Anyone pointing a better way? On 5/20/06, David G. Friedman <[EMAIL PROTECTED]> wrote: Your errors suggests a tile error

RE: Another problem of Tiles:the display-tag can NOT display using paging.

2006-05-19 Thread David G. Friedman
Your errors suggests a tile error, not a displaytag error. How are you tiles defined and what is the 1st table page url and the "next page" url shown in your browser window? Regards, David -Original Message- From: M.Liang Liu [mailto:[EMAIL PROTECTED] Sent: Friday, May 19, 2006 12:25 PM

Re: struts token

2006-05-19 Thread Manfred Wolff
Hi mr. temp.temp 1. The Action calls saveToken(request); 2. A unique token will be generated and saved in the session and in the jsp as a hidden field. 3. The next action calls |*isTokenValid

Re: Another problem of Tiles:the display-tag can NOT display using paging.

2006-05-19 Thread M.Liang Liu
I've fixed through documents of display-tag. The requestURL of the should be the page which uses Layout.jsp,not the content page using display-tag. Sorry to trouble you all. On 5/20/06, M.Liang Liu <[EMAIL PROTECTED]> wrote: I tried to use display-tag to show tab

Another problem of Tiles:the display-tag can NOT display using paging.

2006-05-19 Thread M.Liang Liu
I tried to use display-tag to show tables in my little project and it works well. However,a problem occured when I tried to make use of Auto-paging in my struts Tiles. I put one page displaying table using display-tag into my one of my Layout.jsp and the first page ca

Re: [OT] HttpRequestWrapper Deprecations?

2006-05-19 Thread Dave Newton
Joe Hertz wrote: > 2) Why didn't I see these deprecations in the 1.4.2 JDK? Seems like I should > have gotten them all along. But that would imply Tomcat 5.x isn't compliant > with the 2.1 spec, and I can't believe that. I assume it's error on my part. > Were you compiling with deprecation wa

RE: ERROR: Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImplnot found

2006-05-19 Thread Miller, Andy
> does one of these archives: xercesImpl.jar or xml-apis.jar contain: >'DocumentBuilderFactoryImpl'. Yes, xercesImpl.jar contains that class... Andy Miller IS Designer Butte College 530.895.2946 -Original Message- From: C. Grobmeier [mailto:[EMAIL PROTECTED] Sent: Friday, May 19, 2006 12

Re: struts token

2006-05-19 Thread temp temp
Can you tell me how can I use struts token mechanisim with out a form bean? Thanks & Regards Manfred Wolff <[EMAIL PROTECTED]> wrote: Yes, you can. The token will be stored in the request. temp temp wrote: > Can I use struts token mechanism for an action without a form bean ? >

The Last Word re: All hail shale

2006-05-19 Thread Wendy Bossons
May I just say that I saw no offense to Dakota Jack's response to my humorous commentary, but that I did find offensive the reaction to it. Enough said, and I'm done, please don't reply to this thread. ..\Wendy - To unsubscri

Shale Unit Testing

2006-05-19 Thread Robert Alexandersson
Hello. I will start developing a application using Shale, for personal use. This time I want to start the right way, meaning I want to build it Testdriven, or at least creating testcases for it. Are there some exampleapplications that use the Shale-Test-Framework. I saw there are a couple of exam

arg variable into a bean:message?

2006-05-19 Thread José María Tristán
Hello, is posible have and arg of a message that it's a tag of the file resources.proerties? Por example: Resources.properties label.name="antonio" label.address="c/address" label.sum=live in

Re: ERROR: Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl not found

2006-05-19 Thread C. Grobmeier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Stupid question first: does one of these archives: xercesImpl.jar or xml-apis.jar contain: 'DocumentBuilderFactoryImpl'. Chris Miller, Andy wrote: > First off, my apologies if I am sending this email to the wrong list. I > have searched high and low