Re: [shale] using the eclipse ide (maybe ith ant or maven2)

2006-06-14 Thread stephan opitz
hello, it is ok... one can develop with eclipse & view it via mvn package cargo:start (start from console) thx stephan 2006/6/14, Hermod Opstvedt <[EMAIL PROTECTED]>: Hi The problem lies with the eclipse plugin and the maven embedder. This is fixed in the next version of the plugin Hermod

Re: [OT] Re: XML Help

2006-06-14 Thread Krishnakanth
Hai all, Thanks for your advise. As per Meena told I also notice that there is some "text nodes" comes while parsing XML file.The type of that node is "Text" and the value/name is something like "#text" For Mr.Dave: Hai Dave thanks for your mail...I think you are al

Re: Display of the processing message when the page is submitted

2006-06-14 Thread Stephen Souness
You could probably include some Javascript in an onSubmit event to open a new window as your dialogbox, and a corresponding piece of Javascript in the resulting page to close the dialogbox window. I generally try to avoid Javascript, so I'm not aware of any such functionality being provided by

Re: pls help

2006-06-14 Thread paz . periasamy
Hello Ceena, These requirements are not Struts specific. 1. paging using struts Ans: I believe that you are trying to develop pagination in your screens. This totally depends on your business requirement. 2) need to open a popup window within another pop up window. Ans: This is Javascript logi

pls help

2006-06-14 Thread Ceena Bose
hi, pls help me solve the following. 1)paging using struts 2) need to open a popup window within another pop up window. regards ceena Send instant messages to your online friends http://in.messenger.yahoo.com Stay connected with your friends even when away from PC. Link:

Re: [newb question] Turning on DEBUG level logging

2006-06-14 Thread Martin Gainty
George/Darren public class SomeAction extends Action { ActionForward execute(.. { //get a category static Category cat = Category.getInstance(StrutsServletClass.class.getName()); // From here on, log away! Methods are: cat.debug(your_message_string), // cat.info(...), cat.warn(...), ca

Re: changing scope of custom JSTL class variables

2006-06-14 Thread Craig McClanahan
On 6/14/06, Calvin G. Dodge <[EMAIL PROTECTED]> wrote: I'm maintaining and upgrading an existing Struts application (written by someone else long ago, with no chance of contacting the authors). I just discovered that our custom tag class variables have global scope - when a tag class (derived f

changing scope of custom JSTL class variables

2006-06-14 Thread Calvin G. Dodge
I'm maintaining and upgrading an existing Struts application (written by someone else long ago, with no chance of contacting the authors). I just discovered that our custom tag class variables have global scope - when a tag class (derived from javax.servlet.jsp.tagext.TagSupport) is used, an in

Re: how many active sessions are in the system

2006-06-14 Thread Martin Gainty
Hey Carl- if you contextObject.getManager().getActiveSessions() you should be able to get the count of Active Sessions.. Anyone else Martin-- * This email message and any files transmitted with it contain confidential informatio

RE: [newb question] Turning on DEBUG level logging

2006-06-14 Thread George.Dinwiddie
I'm not sure about using 'DEBUG' as the name of an appender. Why not try something like 'logfile'? I'm not very familiar with configuring Log4j using XML. A simple .properties file has always done everything I need. > -Original Message- > From: Darren Hall [mailto:[EMAIL PROTECTED] > S

how many active sessions are in the system

2006-06-14 Thread Carl Smith
Is there anyway in J2EE to get how many active sessions are in the system? Thanks in advance. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: [shale] Backing view

2006-06-14 Thread Marty Phee
Done: http://issues.apache.org/struts/browse/SHALE-192 Craig McClanahan wrote: On 6/14/06, Marty Phee <[EMAIL PROTECTED]> wrote: Removed spring and it works. Thanks for the pointer. So, if I use spring you must have managed beans for all JSP's? Not sure if I"m actually going to use spring.

Re: [shale] Backing view

2006-06-14 Thread Craig McClanahan
On 6/14/06, Marty Phee <[EMAIL PROTECTED]> wrote: Removed spring and it works. Thanks for the pointer. So, if I use spring you must have managed beans for all JSP's? Not sure if I"m actually going to use spring. It appears that this is the effective state of the current implementation. But

Re: [shale] Backing view

2006-06-14 Thread Marty Phee
I tried every permutation last night and couldn't get it to work without the managed bean. included. Thanks for the pointers. Seems to be with spring. I removed it and it works now. Craig McClanahan wrote: Comments interspersed below. On 6/14/06, Marty Phee <[EMAIL PROTECTED]> wrote:

Re: [shale] Backing view

2006-06-14 Thread Marty Phee
Removed spring and it works. Thanks for the pointer. So, if I use spring you must have managed beans for all JSP's? Not sure if I"m actually going to use spring. Wendy Smoak wrote: On 6/14/06, Marty Phee <[EMAIL PROTECTED]> wrote: Here you go. Again this is Shale with Tiger. 13:27:47,79

Advanced MessageProperties file

2006-06-14 Thread Scott Van Wart
I'm working on a slightly more flexible way of getting messages out of the .properties file, and am posting this to the list for a few reasons: 1) To make sure it hasn't already been done 2) To see if it's useful to anyone else 3) If this is the right approach to whatever it is I seem to think I

Re: web.xml specifications from 2.4 to 2.3

2006-06-14 Thread Ed Griebel
You can't do it without changing your JSPs. It isn't as simple as wrapping everything with as JSP tags cannot be nested within attributes. Also, to my knowledge there is no way to just include some jar file to enable EL exprs. A suggestion too, your code: can be rewritten as: HTH, -ed On 6

Re: [shale] Backing view

2006-06-14 Thread Wendy Smoak
On 6/14/06, Marty Phee <[EMAIL PROTECTED]> wrote: Here you go. Again this is Shale with Tiger. 13:27:47,796 ERROR [faces]:253 - Servlet.service() for servlet faces threw exception java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered? ... org.ap

Re: [shale] Backing view

2006-06-14 Thread Craig McClanahan
Comments interspersed below. On 6/14/06, Marty Phee <[EMAIL PROTECTED]> wrote: Here you go. Again this is Shale with Tiger. 13:27:47,796 ERROR [faces]:253 - Servlet.service() for servlet faces threw exception java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderLis

Re: How to implement autorefresh?

2006-06-14 Thread David Durham
Cassio Pereira wrote: You should use javascript to post your form from time to time using the function "window.setInterval(function, milliseconds)" that you can read about at http://www.w3.org/TR/Window/#timers. If ou don't want the flickering effect that it causes, you could also use Ajax with

Re: [newb question] Turning on DEBUG level logging

2006-06-14 Thread Robin Curts
I'm working on getting logging up on struts with Log4J right now as well. I'm also new to struts. I am using the following log4j.xml file (in my WEB-INF/classes) directory and getting a log file successfully. My XML: http://jakarta.apache.org/log4j/";> class="org.apache.log4j.DailyRolli

Re: [shale] Backing view

2006-06-14 Thread Marty Phee
Here you go. Again this is Shale with Tiger. 13:27:47,796 ERROR [faces]:253 - Servlet.service() for servlet faces threw exception java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered? at org.springframework.web.jsf.FacesContextUtils.getRequir

RE: [newb question] Turning on DEBUG level logging

2006-06-14 Thread Darren Hall
I tried that. There is no output from log4j to the daily catalina.log files. However, taking another path, I created a new (and much simpler) log4j.xml file. Using this new file, I now see the following log file created 'C:\Program Files\Apache Group\Tomcat 5.5\logs\uwaf-debug.log'. So... progress

Re: accssing object in JSP

2006-06-14 Thread Frank W. Zammetti
Oh, I agree... this is only the kind of solution I'd dream up with some crazy requirement, as there seems to be in the OP :) I can't imagine what design criteria would say you can't put an object in ANY scope! But, if that's the case, it's time for some creative/wacky (depending on your point

Re: [shale] Backing view

2006-06-14 Thread Craig McClanahan
On 6/14/06, Marty Phee <[EMAIL PROTECTED]> wrote: Newbie, I'm using Shale with tiger. JSP, subscribe (example from somewhere) that does a save. All this works fine, but I made a change so that the return should send it to a "Success" page. /subscribe.jsp success /suc

SV: [shale] using the eclipse ide (maybe ith ant or maven2)

2006-06-14 Thread Hermod Opstvedt
Hi The problem lies with the eclipse plugin and the maven embedder. This is fixed in the next version of the plugin Hermod -Opprinnelig melding- Fra: stephan opitz [mailto:[EMAIL PROTECTED] Sendt: 14. juni 2006 19:16 Til: Struts Users Mailing List Emne: Re: [shale] using the eclipse id

Re: Customizing message translation

2006-06-14 Thread Niall Pemberton
Struts uses MessagesResources to perform the key-->text translation. The default implementation used is PropertyMessageResources (both in the org.apache.struts.util package). If you want to use your own MessageResources implementation then you need to create two classes - the custom implementatio

[shale] Backing view

2006-06-14 Thread Marty Phee
Newbie, I'm using Shale with tiger. JSP, subscribe (example from somewhere) that does a save. All this works fine, but I made a change so that the return should send it to a "Success" page. /subscribe.jsp success /success.jsp I kept getting a 500 error: 12:11:39

Re: [shale] using the eclipse ide (maybe ith ant or maven2)

2006-06-14 Thread stephan opitz
hello it works in eclipse... next important problem is... i can define lifecycles like compile package cargo:start etc.. if i do this in eclipse it does not work... compile works but if i use package or cargo:start eclipse throws [ERROR] project-execute : org.apache.struts.ShaleShop:ShaleSho

Re: accssing object in JSP

2006-06-14 Thread Scott Van Wart
Frank W. Zammetti wrote: One option might be a static HashTable in some class... key the table by some calculated ID representing the request.. for that, see the RequestHelpers.generateGUID() method in Java Web Parts: Scott Van Wart wrote: Sonu S wrote: I can not store bean in request or sess

[shale] component id + clay templates

2006-06-14 Thread Ryan Wynn
If a have a shared html template how can I parameterize component ids such that the template can be used more than once within the view? For example, if I have a within a reusable template, and I used the template twice in a view, I would get an error because the of duplicate ids in the faces

Re: accssing object in JSP

2006-06-14 Thread Frank W. Zammetti
One option might be a static HashTable in some class... key the table by some calculated ID representing the request.. for that, see the RequestHelpers.generateGUID() method in Java Web Parts: http://javawebparts.sourceforge.net/javadocs/javawebparts/request/RequestHelpers.html (http://javaweb

Problem with multiple windows

2006-06-14 Thread Aasim, Omair
Hello I read through several discussions about this problem but havent come to a conclusion on how to resolve it. A very simple explanation of my problem I have two JSP pages. On page 1 - several account numbers are displayed. When a user selects a particular account, in my action class, I'm get

Re: Pass dates between two windows

2006-06-14 Thread Scott Van Wart
José María Tristán wrote: Again, very thanks I think that the second option es better that our needs. When the uses press teh button "search" a pop-up it's open. This pop-up contains the list whith the employers and a "close" button. The fist windows is always visible and it's possible to intera

Re: Default value for text field

2006-06-14 Thread Scott Van Wart
Pankaj Gupta wrote: Please tell me in Struts context. What do I need to write in my html:text tag? " type="text"> Not sure how well that works... if you're using a JSP 2.4-compliant container and the JSTL (which you would need to above to use fmt:), you could use this: <%@ taglib

Re: accssing object in JSP

2006-06-14 Thread Scott Van Wart
Sonu S wrote: I can not store bean in request or session or any scope (design issues...) If you can't store the bean in any scope, then you really have no way of getting anything from the action to the jsp... I see no solution to your problem with this constraint. - Scott --

accssing object in JSP

2006-06-14 Thread Sonu S
Hi 2 all I am using struts in my application. In my application i am getting array of objects of MyClass. This Class has methods like getName(), getId(),. I am getting this array of object in Action class. I want to use these array in JSP. For this i am doing in Action Class i am doing.

Customizing message translation

2006-06-14 Thread Scott Van Wart
I'd like to expand the message translation with a few things. I was wondering where I should look for plugging in my own processing of keys->message text. Thanks, Scott - To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

RE: evaluating list backed action form value in javascript

2006-06-14 Thread Shoukat, Faisal
Ok, I tried the following which was using a input tag as normal: " size="20" onblur="calculate(this.value, '', '', '', '')"/> The this.value parameter passes the correct value to my javascript function and I can submit it to the action

RE: web.xml specifications from 2.4 to 2.3

2006-06-14 Thread Samere, Adam J
You need to use the 1.0 JSTL implementation as you said. Your taglib directives will then need to use the 1.0 uri, for example: <[EMAIL PROTECTED] uri="http://java.sun.com/jstl/core"; prefix="c" %> (no /jsp/ in the path) -Adam -Original Message- From: chuanjiang lo [mailto:[EMAIL PROTE

Re: web.xml specifications from 2.4 to 2.3

2006-06-14 Thread chuanjiang lo
i have some other pages that uses and etc etc.. I've read on the net and realize that the 2.3 specifications supports only JSTL 1.0 and it would not evaluate the EL expressions. So how do i make it evaluate the EL expression without changing my implementation. On 6/14/06, Rahul Akolkar <[EM

Re: web.xml specifications from 2.4 to 2.3

2006-06-14 Thread Rahul Akolkar
On 6/14/06, Dave Newton <[EMAIL PROTECTED]> wrote: chuanjiang lo wrote: > property="business_id"/> > You need to use the EL-enabled tag libs (struts-el or something like that) when you don't have JSP 2.0 available. Indeed: http://struts.apache.org/struts-action/struts-el/index.html -Rahul

Re: web.xml specifications from 2.4 to 2.3

2006-06-14 Thread Dave Newton
chuanjiang lo wrote: > property="business_id"/> > You need to use the EL-enabled tag libs (struts-el or something like that) when you don't have JSP 2.0 available. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

Re: [newb question] Turning on DEBUG level logging

2006-06-14 Thread Dave Newton
Darren Hall wrote: > I'm not starting it from the command line any longer. Therefore, I can't see > any console output from Tomcat. > Try using a ConsoleAppender and tail -f the log file in the tomcat log directory. Dave -

web.xml specifications from 2.4 to 2.3

2006-06-14 Thread chuanjiang lo
Hi all, I need some advice here. I have developed my application using 2.4 specifications but the deployment server is only up to 2.3 specifications. So i have to make some changes in web.xml as the following. http://java.sun.com/dtd/web-app_2_3.dtd";> ... When i run the web application,

RE: [newb question] Turning on DEBUG level logging

2006-06-14 Thread Darren Hall
Hey George, Interesting problem with that console... I'm deploying my war file through Tomcat 5.5 manager (web based interface). Since Tomcat is running as a service on Windows, there really is no console per se. In the past, I've started tomcat from the command line, and I was able to see output

RE: [newb question] Turning on DEBUG level logging

2006-06-14 Thread George.Dinwiddie
Darren Hall asked: > I've included the log4j.jar in my WEB-INF/lib directory and > created a log4j.xml file based on an example I found online > (rather then a log4j.properties file). The application > deploys error free and executes - however my log files are > not created. > > I can think of

Re: log4j - urgent

2006-06-14 Thread Dave Newton
Darren Hall wrote: > (continued from previous msg) > > HERE is the log4j.xml file I'm using (I forgot to include it in my last > message). > Whew, I knew there was a reason I almost always use the properties file. Java + XML: Like crack for people that like to type. Dave --

Re: [shale] using the eclipse ide (maybe ith ant or maven2)

2006-06-14 Thread Gary VanMatre
>From: "Wendy Smoak" <[EMAIL PROTECTED]> > > On 6/14/06, stephan opitz wrote: > > i wanted start programming with shale... > > so i tried to integrate the shale blank war into eclipse as a new tomcat > project > > > > because i was not able to configure maven2 and shale into eclipse i'm using

Re: How to implement autorefresh?

2006-06-14 Thread Cassio Pereira
You should use javascript to post your form from time to time using the function "window.setInterval(function, milliseconds)" that you can read about at http://www.w3.org/TR/Window/#timers. If ou don't want the flickering effect that it causes, you could also use Ajax with the timer. On 6/14/06,

How to implement autorefresh?

2006-06-14 Thread Pankaj Gupta
I need to call a method from the action class that periodically refreshes my page in struts application automatically. Can someone please suggest how to do it? regards, Pankaj - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: ApplicationResources vs. MessageResources

2006-06-14 Thread Wendy Smoak
On 6/13/06, Eric Rank <[EMAIL PROTECTED]> wrote: I know that ApplicationResources and MessageResources do similar things, but I'm confused about how to understand their individual roles 1. What are the similarities and differences between MessageResources and ApplicationResources in a struts ap

Re: ajax:autocomplete tag

2006-06-14 Thread Sony Thomas
Thanks for all who helped me to solve this problem. I made it work in my application. Once again thanks a lot sony :-) Samere, Adam J wrote: You can forward to a JSP from your action rather than coding tags into your action, then generate XML in your JSP rather than HTML. Your JSP (aside f

RE: [newb question] Turning on DEBUG level logging

2006-06-14 Thread Darren Hall
[REPOST under correct thread] (continued from previous msg) HERE is the log4j.xml file I'm using (I forgot to include it in my last message). Also, I'vd tried creating the "logs" directory under the [CATALINA_HOME]/bin directory, and still no log files have been created. http://jakarta.apach

RE: log4j - urgent

2006-06-14 Thread Darren Hall
(continued from previous msg) HERE is the log4j.xml file I'm using (I forgot to include it in my last message). http://jakarta.apache.org/log4j/";>

RE: Error using validator

2006-06-14 Thread José María Tristán
Yes, in this line I pass a String to a method set of the form-bean. I suppose that it's owed that the form-bean It does not exist. -Mensaje original- De: Dave Newton [mailto:[EMAIL PROTECTED] Enviado el: miércoles, 14 de junio de 2006 13:36 Para: Struts Users Mailing List Asunto: Re: Error

RE: [newb question] Turning on DEBUG level logging

2006-06-14 Thread Darren Hall
Ok. I've included the log4j.jar in my WEB-INF/lib directory and created a log4j.xml file based on an example I found online (rather then a log4j.properties file). The application deploys error free and executes - however my log files are not created. I can think of two reasons this could be happe

Problem whith values of a form-bean

2006-06-14 Thread José María Tristán
Hello: I hava a html:select optionscollection: and in the form-bean the method: public void setUnidades(String[] unidades){ this.unidades = unidades; } public String[] getUnidades(){ re

Re: [shale] using the eclipse ide (maybe ith ant or maven2)

2006-06-14 Thread Wendy Smoak
On 6/14/06, stephan opitz <[EMAIL PROTECTED]> wrote: i wanted start programming with shale... so i tried to integrate the shale blank war into eclipse as a new tomcat project because i was not able to configure maven2 and shale into eclipse i'm using ant. If you'd like to try Maven 2 again, we

Re: Default value for text field

2006-06-14 Thread Pankaj Gupta
Please tell me in Struts context. What do I need to write in my html:text tag? Shervin Asgari wrote: " type="text"> I think this might work. If it doesn't you may have to change the " to ' Shervin Asgari - System Consultant M: +47 918 64 148, @: [EMAIL PROTECTED] Linpro AS - Leadin

RE: html:image with LookupDispatchAction

2006-06-14 Thread fea jabi
need hep with this please. Thanks. From: "fea jabi" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: html:image with LookupDispatchAction Date: Tue, 13 Jun 2006 14:48:39 -0400 Trying to use html:image with LookupDispathAction. how to use this? Usi

RE: ajax:autocomplete tag

2006-06-14 Thread Samere, Adam J
You can forward to a JSP from your action rather than coding tags into your action, then generate XML in your JSP rather than HTML. Your JSP (aside from taglib directives etc) may look like this: -Ada

Re: Problem with logic:iterate and List of Strings

2006-06-14 Thread Florian Barth
I tried to do it with your piece of code, but that didn't quite work I think one solution would be to write a StringWrapper with a String-Value and the according getter/setter (e.g. getVal, setVal) and fill the list with this StringWrappers instead of Strings, so name="stringWrapper" value =

Re: [OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Shervin Asgari
Yes I am quite sure, I can show you a code snip of the build.xml file . . . And since my action class name is under the package org.roller.presentation.website.actions; And the name is DomainAdminEditorAction It should automatically be include

Re: [OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Dave Newton
Shervin Asgari wrote: > Yes I run XDoclet. Because all of my other forwards are working correctly. But they already existed, and this is a new one. Are you certain you are running it again to capture the new class's annotations? Dave ---

Re: [OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Shervin Asgari
Yes I run XDoclet. Because all of my other forwards are working correctly. It is only this one that seems to not work. What I have done to come around this issue is including data in an already existing actionform class. This is not feasible, but works temporary until I figure out what I am mis

Reg: Display of Processing message in Struts Application

2006-06-14 Thread Shasirekha Engala
hi I am developing an struts application in which the user enters some information in screen A. After processing this information, I display the same screen A or may be another screen B. But the processing sometimes takes a while, so I want to display a dialogbox on the screen A that says "Please

RE: ajax:autocomplete tag

2006-06-14 Thread hermod.opstvedt
Hi That was what I ment - You don't return any values from your action. You need to write the values to the response (supplied by the action), and then return null. The documentation at http://ajaxtags.sourceforge.net shows you how, or search for Struts and returning a file for instance. Hermo

Re: ajax:autocomplete tag

2006-06-14 Thread Sony Thomas
Hi Hermod, I am setting the value entered in the textbox parameters="username={username}" username is my textfield name. The problem is How will I return the username list back to jsp from action. It is very very urgent. can anyone help me please sony [EMAIL PROTECTED] wrote: Hi You are n

RE: ajax:autocomplete tag

2006-06-14 Thread hermod.opstvedt
Hi You are not setting any values in the request - How can the list be populated if you don't supply any values Hermod -Original Message- From: Sony Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 1:09 PM To: user@struts.apache.org Subject: ajax:autocomplete tag Hi,

Re: Problem with logic:iterate and List of Strings

2006-06-14 Thread Florian Barth
The list of strings is actually part of an ActionForm. On load of display I kinda like to decompose the list to a bunch of text-fields, that are recomposed to a list of string on submit I'll try this, maybe the value of the String could be added by value = ${s}, right? Thank you

Re: Error using validator

2006-06-14 Thread Dave Newton
José María Tristán wrote: > java.lang.NullPointerException > > seda.coffeenet.SeguimientoComercial.struts.action.IndexSeguiComerAction.exe > cute(IndexSeguiComerAction.java:25) > I would start by looking at IndexSeguiComerAction.java line 25. Dave --

[OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Dave Newton
Shervin Asgari wrote: > I thought I was runnign XDoclet. How can I check this? Look at your console when you run the Ant build. Look at your Ant build file. Remember what you do when you build the project and see if at any time you run XDoclet. Dave

Re: Problem with logic:iterate and List of Strings

2006-06-14 Thread Dave Newton
Florian Barth wrote: > Looks very nice, but the textfield accesses the getter and setter of > the LabelValueBean > that is returned from the StrinBean. My Bean just returns the the > String-object that has > actually no getter and setter for it's value. Let me get this straight: you're iterating o

Re: Error using validator

2006-06-14 Thread Scott Van Wart
José María Tristán wrote: Hello, I'm trying to use validator framework but the aplication don't works. In the struts-config.xml i have: Your form-bean should be referencing your own class (like mypkg.form.SeguimientoComercialForm) that itself extends ValidatorForm.

[OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Antonio Petrelli
Shervin Asgari ha scritto: I thought I was runnign XDoclet. How can I check this? XDoclet is a tool that must be run at build time! So you need to execute it before you deploy your webapp. Anyway I am not a wizard with XDoclet and this is not the right list to ask (sorry). Ciao Antonio ---

RE: ajax:autocomplete tag

2006-06-14 Thread Chandra.Ravinithala
Check this: http://java.sun.com/developer/EJTechTips/2005/tt1122.html This has a simple example on how to return the list of employee(Ajax way). Note: This does not use the tags you mentioned. But would give one more perspective. Ignore if does not help. Chandra -Original Message- Fro

Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Shervin Asgari
Hm...Maybe I should explain better. I have already a full working application, with a couple of action classes and a few jsp pages. I wanted to add one more action class and one more jsp page, but suddenly it didn't work, and I can't remember if I have forgotten to do something. I thought I wa

ajax:autocomplete tag

2006-06-14 Thread Sony Thomas
Hi, I am a newbie in ajax. I want to use ajax in my application. Let me explain my requirement : when I enter a character in the text field i have to call an action. Inside my action i have to load all the users and send it back to jsp so that I can display. I am able to call the action c

Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Antonio Petrelli
Shervin Asgari ha scritto: Have I forgotten something?? Did you run XDoclet??? I am asking this because it seems that you wrote some XDoclet tags. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

evaluating list backed action form value in javascript

2006-06-14 Thread Shoukat, Faisal
Hi, I am using a list backed action form and need some advice on how to get the value from the html:text box so I can do some logic with it in a javascript function. In my case I have the following: " size="20" onblur="<%=jsFunction%>"/> My jsFunction is as follows: javascript:calculate('<%=

Re: Default value for text field

2006-06-14 Thread Shervin Asgari
" type="text"> I think this might work. If it doesn't you may have to change the " to ' Shervin Asgari - System Consultant M: +47 918 64 148, @: [EMAIL PROTECTED] Linpro AS - Leading on LinuxTel: +47 21 54 41 00/02 Vitaminveien 1AFax: +47 21 54 41 01 PB 4 Grefsen, 0409 Osl

Default value for text field

2006-06-14 Thread Pankaj Gupta
How can I specify a default value for a text field and also read it from application resources. I dont want to read it from form bean though. regards, Pankaj - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

How can I transfer a file to a struts based web application from a java application

2006-06-14 Thread Steve Bosman
Hi, I have a struts 1.1 application with an Action that processes a file obtained using an ActionForm containing a org.apache.struts.upload.FormFile parameter, I want to use this action from a java application and would be really grateful if someone could give me pointers on how to do this using

Error using validator

2006-06-14 Thread José María Tristán
Hello, I'm trying to use validator framework but the aplication don't works. In the struts-config.xml i have: then mapping: And the plugin: My v

RE: Pass dates between two windows

2006-06-14 Thread José María Tristán
Again, very thanks I think that the second option es better that our needs. When the uses press teh button "search" a pop-up it's open. This pop-up contains the list whith the employers and a "close" button. The fist windows is always visible and it's possible to interact whith the controls. When

Re: Problem with logic:iterate and List of Strings

2006-06-14 Thread Florian Barth
I actually found the page you were mentioning before. But that doesn't resolve my problem: In "Dynamic Indexes for Indexed Properties" there is an example for using a text-field to alter a String value: Looks very nice, but the textfield accesses the getter and setter of the LabelValueBean

Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Shervin Asgari
I have created a new action class and written: /** * Add Editors to Domains * * @struts.action name="domainAdminEditorForm" path="/admin/domainAdminEditor" scope="request" parameter="method" * * @struts.action-forward name="domainAdminEditor.page" path=".domainAdminEditor" * * @author Shervin

Display of the processing message when the page is submitted

2006-06-14 Thread Shasirekha Engala
hi there is a small requirement - when the form is submitted at the time of processing a dialogbox should be shown with the processing message and the dialogbox should be closed when the processing of the request is completed. Can this be possible. Thanks & Regards --

on image: Reset

2006-06-14 Thread Marcus
Hi, I want to add an image that works as a reset button - I got: Unfortunatelly, this only works initially - when the user has submitted the page once it doesn't seem to work anymore. Any idea, what's wrong? Thx, Marcus -

Re: log4j - urgent

2006-06-14 Thread C. Grobmeier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Abhimanyu Koul wrote: > but the question is why do we need log4jservlet. why do we code it? You really don't need such a servlet. You need it if you decide to configure log4j programmatically. If you decide you do not need such a servlet (i never need

eclipse ide help needed

2006-06-14 Thread xavier prad
Hello I am using eclipse ide for developing my project .How can I use an already existing modules functionality into my module. with regards Mano

RE: Pass dates between two windows

2006-06-14 Thread Emilia Ipate
Yes, Jose, it is possible! But then you won't have 2 actions! Here a detailed explaination of the solutons I see now: A. use the form-bean with an selectedEmplyers array as I have explained in the previous mail, but this involves having 2 requests to the server. Here is the requests cha

RE: Pass dates between two windows

2006-06-14 Thread José María Tristán
Very thanks Emilia. I use the second option, work whith form-bean. Is possible show in the firs windows the selected employers and don't refresh all the window?. Thank you. -Mensaje original- De: Emilia Ipate [mailto:[EMAIL PROTECTED] Enviado el: miércoles, 14 de junio de 2006 8:49 Para:

[shale] using the eclipse ide (maybe ith ant or maven2)

2006-06-14 Thread stephan opitz
i wanted start programming with shale... so i tried to integrate the shale blank war into eclipse as a new tomcat project because i was not able to configure maven2 and shale into eclipse i'm using ant. in the web-inf/src folder is my build.xml wich is working...