Re: Struts and cocoon

2002-10-17 Thread Iris
Hello, I'm working in an application which combines Struts and Cocoon. My unique problem for instance it's that I must do redirection instead of forwards. This is a problem because then the request and the session are lost at each redirection. I solve it passing arguments in the URL. Tell me

2 questions

2002-10-17 Thread Marcus Biel
Hi! 2 Questions: First Question: % ArrayList werkeList= SimpleQuery.getAemWerkUnique(); pageContext.setAttribute(werkeList, werkeList); % html:form action=selectWerk.do method=GET html:select property=werkAuswahl size=1 html:options collection=werkeList property=mo/

RE: Struts and cocoon

2002-10-17 Thread Stefan.Landro
Check out the stxx framework. It let's you use output xml from your actions and transforms (xslt) them depending on your client. You would avoid losing the session and request. Stef. -Original Message- From: Iris [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 17. Oktober 2002 09:01 To:

Re: sortPictogram not found

2002-10-17 Thread Jean-Noel Ribette
At 18:20 16/10/2002, you wrote: hi, many thank's for incomming help ;-) (especialy an Jean-Noel Ribette...) i'm trying to use my own sort.gif like layout:collection name=tableBean styleClass=FORM width=600 sortAction=client sortPictogram=jsp/struts_layout/sort.gif but i'm getting an error:

Re: Struts and cocoon

2002-10-17 Thread BERNARDO ANTONIO BUFFA
Hello I've solved the problem of session lost, setting the path of any cookie to /. A convenient method to avoid path related problems is make every access to the server root child, using mappings (servlets and filters in the web.xml actions in the struts.xml) EG:

Re: Struts and cocoon

2002-10-17 Thread Madhavi Thottempudi
Hi! I appreciate UR input on this topic. this really clears my mind about doubts like - Is anybody working on both Struts cocoon or would the configurations conflict??, etc...etc. And, I am even glad to have choice - Cocoon or stxx Thanks chaps! -madhavi Hello I've solved the problem of

RE: Struts and cocoon

2002-10-17 Thread Stefan.Landro
Stxx was designed to work with struts, so it probably has a few advantages over cocoon. Stef. -Original Message- From: Madhavi Thottempudi [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 17. Oktober 2002 10:30 To: Struts Users Mailing List Subject: Re: Struts and cocoon Hi! I appreciate

RE: Struts and cocoon

2002-10-17 Thread Madhavi Thottempudi
But, I see that the possible outputs supported by stxx are only html, pdf and svg. Whereas cocoon also supports WML, RTF apart from HTML, PDF SVG. Isn't that an advantage of cocoon over stxx?? At 10:45 17/10/2002 +0200, you wrote: Stxx was designed to work with struts, so it probably has a

Re: Can V in MVC be Swing in Struts?

2002-10-17 Thread Vilya Harvey
You're right, it will work. In a previous job, I worked on a project which had a Visual Basic (!) client talking to some EJBs via servlets which returned XML responses. That project wasn't using JSP, simply because servlets were more convenient in that case, but there's no reason why it couldn't

Struts and ear

2002-10-17 Thread Fernando Hernandez
Hi, I'm currently trying to install struts in my ear but, though the struts-example works perfectly (outside my ear as a seperate web application in my WebLogic 7.0) inside mi ear the compiler won't recognize the struts tags throwing me this kind of errors into the browser:

/struts/logon.do was not found on this server

2002-10-17 Thread jitendra kharche
Hi all, I am experiencing a problem in executing the example shipped with the struts distribution package. The error message in the browser is - Not Found The requested URL /struts-ex1/logon.do was not found on this server.

Re: problems with struts under j2sdk1.4.0_01

2002-10-17 Thread Thomas Eichberger
What exactly is the problem? What error messages do you get? Thomas At 15:13 17.10.2002 +0200, Isabell Schaadt wrote: Hi, I'm working since a few month with jakarta-struts-1.0.2 and jakarta-tomcat-4.0.4 under jdk1.3.1. Yesterday I convert my java to j2sdk1.4.0_01 but now struts doesn't work

Re: problems with struts under j2sdk1.4.0_01

2002-10-17 Thread Thomas Eichberger
Oops, very strange. As far as I see there is no hint on what is going wrong, unfortunately. I think we need help from the Struts developers;-) Another question: Why do you use Struts 1.0.2 and not the 1.1 Beta? The Beta ist quite OK. Ciao Thomas At 15:34 17.10.2002 +0200, Isabell Schaadt

RE: Struts and cocoon

2002-10-17 Thread Stefan.Landro
Actually I'm looking into this issue myself (new project that was launched this morning). Will get back to you when I know what is possible. Stef. -Original Message- From: Madhavi Thottempudi [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 17. Oktober 2002 13:59 To: Struts Users Mailing

Changing focus in case of errors

2002-10-17 Thread Podhigai Thendral
Hi all, In case of errors in form validation, I am able to get them displayed using html:errors. Is there a possibility to highlight those error fields (say with a red color) ? Is it possible to move the focus to the first field with error on that page ? Thanks in advance

Tiles - Date JavaScript problem

2002-10-17 Thread Heligon Sandra
I need to display on each page of my application the current date-time. I use the following JavaScript: script type=text/javascript var timerID = 0; function aff_heure() { var d=new Date() var

Re: problems with struts under j2sdk1.4.0_01

2002-10-17 Thread David Graham
I'm sorry I don't know what's wrong but I want to assure you that struts does run under 1.4 David From: Thomas Eichberger [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: problems with struts under

Re: Newbie logic:iterator question

2002-10-17 Thread Alexis Gallagher
Hi Dave, I have no idea how or where I define the user object. I can't figure out where the Struts example application is defining this. Define the user object using a jsp:useBean .. tag or a struts bean:define tag. Personally, I've never gotten bean:define to work so I've got loads of

RE: Can V in MVC be Swing in Struts?

2002-10-17 Thread Kevin . Bedell
What you're describing - a swing application communicating via http to a server-based application - is really better resolved by using a Web Service (or potentially XML-RPC if your requriements for delivery are loose enough). I'd recommend you take a look at Apache Axis.

does all ActionForm data get passed to the client

2002-10-17 Thread Muffat, Shane
Does all the data that resides on a user created ActionForm object get passed to the client? I'm saving some DB objects onto my form so I don't have to go back to the db to get the objects when I want to persist the changes from the jsp page. I have a lot of saved objects on my form object

Validators Info

2002-10-17 Thread Bhamani, Nizar A TL56E
May be this question has been asked before. Can somebody send a url which describes the ValidatorForm/DynaValidatorForm etc usage ? I tried digging into the archives but it seems that it is always in bits and pieces with too much digging. Thanks, Nizar Bhamani

Re: problems with struts under j2sdk1.4.0_01

2002-10-17 Thread Isabell Schaadt
The struts 1.0.2 version worked without problems until I installed the j2sdk1.4.0_01 yesterday. I have choosen this version because I think it still will be worked on the beta version and there still may be problems with it. But if you it is ok I will try it. I thank you very much for help.