Re: Struts - Licensing and Derivative Work

2005-02-01 Thread Leon Rosenberg
> My assuption is that IF I could copy the validator package, > change some parts as to not use the servlet API, retaining > the copyright from the ASF, adding proper credits to the > Struts team in the documentation, adding the proper NOTICE > changes and applying the ASF to the framework, thu

Re: Struts - Licensing and Derivative Work

2005-02-01 Thread Leon Rosenberg
> My assuption is that IF I could copy the validator package, > change some parts as to not use the servlet API, retaining > the copyright from the ASF, adding proper credits to the > Struts team in the documentation, adding the proper NOTICE > changes and applying the ASF to the framework, thu

Re: Formatting a date with a different time zone.

2005-02-01 Thread Curtis Taylor
Hi Derrick, You have to declare your properties file in your web.xml. Assuming it's called "ApplicationResources.properties," and lives under WEB-INF/classes, you'd do it like this: javax.servlet.jsp.jstl.fmt.localizationContext ApplicationResources Just to be safe, brush up on the web.xml s

Re: Problem deploying to WebSphere

2005-02-01 Thread Curtis Taylor
Hi Daniel, What's in your application.xml file? That's the one which tells WS what your context root is. In your case it would need to be "StatusInquiry" (sans quotes). HTH, Curtis Daniel Kalcevich wrote: I am currently trying to deploy a Struts 1.2.6 to a WSAD 5.0 Server. The application starts

Re: TilesController perform() depreciated and required in v1.2????

2005-02-01 Thread Corey Probst
On Tue, 1 Feb 2005 19:53:52 -0600, Jason Long <[EMAIL PROTECTED]> wrote: > Thank you for your reply. This tip let me remove the perform method from my > base class, but this is actually equivalent to what I was doing. The method > perorm() is simply implemented exactly the way I had done it. Why

Re: Struts - Licensing and Derivative Work

2005-02-01 Thread Ted Husted
Yes, if you follow the terms of the Apache License, you are allowed to modify and redistribute the code as needed, and use it create a derivative work. http://apache.org/licenses/LICENSE-2.0 -Ted. (The attribution terms are required for derivative works, like another framework, as described h

RE: TilesController perform() depreciated and required in v1.2????

2005-02-01 Thread Jason Long
Thank you for your reply. This tip let me remove the perform method from my base class, but this is actually equivalent to what I was doing. The method perorm() is simply implemented exactly the way I had done it. Why would a method be both depreciated and required? Thank you for your time, Ja

RE: TilesController perform() depreciated and required in v1.2????

2005-02-01 Thread Jason Long
Thank you for your reply. This tip let me remove the perform method from my base class, but this is actually equivalent to what I was doing. The method perorm() is simply implemented exactly the way I had done it. Why would a method be both depreciated and required? Thank you for your time, Ja

Re: TilesController perform() depreciated and required in v1.2????

2005-02-01 Thread Corey Probst
> I would appreciate any help with the following problem. I just upgraded one > of my applications from v1.1 to v1.2.4. I have resolved all upgrade issues > except the following. The Controller interface has depreciated the > perform() in favor of the execute(), but I am forced to implement both

Re: Struts - Licensing and Derivative Work

2005-02-01 Thread Vic
I use commons-validator in Swing WebStart applications. Works fine without servlet API. .V Andres Almiray wrote: Hi, I have a doubt regarding the licensing of Struts and Derivative Works made by third parties, I hope you can help me figure it out. I'm brainstorming a framework very similar to Str

Struts - Licensing and Derivative Work

2005-02-01 Thread Andres Almiray
Hi, I have a doubt regarding the licensing of Struts and Derivative Works made by third parties, I hope you can help me figure it out. I'm brainstorming a framework very similar to Struts in its behavior but it is intended not to run in a web environment, nor follow de servlet expecification. I wa

Re: Database Access

2005-02-01 Thread Vic
See if this helps: http://wiki.apache.org/struts/DaoRelated .V Ben Taylor wrote: Can anyone tell me the best way to setup / manage database connections using Struts? I've read a couple of books on Struts and they talk about using a processbean though I am unsure how this is linked with things like

TilesController perform() depreciated and required in v1.2????

2005-02-01 Thread Jason Long
I would appreciate any help with the following problem. I just upgraded one of my applications from v1.1 to v1.2.4. I have resolved all upgrade issues except the following. The Controller interface has depreciated the perform() in favor of the execute(), but I am forced to implement both in orde

TilesController perform() depreciated and required in v1.2????

2005-02-01 Thread Jason Long
I would appreciate any help with the following problem. I just upgraded one of my applications from v1.1 to v1.2.4. I have resolved all upgrade issues except the following. The Controller interface has depreciated the perform() in favor of the execute(), but I am forced to implement both in orde

Database Access

2005-02-01 Thread Ben Taylor
Can anyone tell me the best way to setup / manage database connections using Struts? I've read a couple of books on Struts and they talk about using a processbean though I am unsure how this is linked with things like iBATIS (http://www.ibatis.com/), or the Struts DataSource manager (as both menti

RE: Formatting a date with a different time zone.

2005-02-01 Thread Derrick Koes
Yes, the fmt library looks like the winner. It doesn't seem to pick up my key from my resource file in the timeStyle attribute. How do I do that? Thanks, Derrick -Original Message- From: Joe Germuska [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 01, 2

Re: Formatting a date with a different time zone.

2005-02-01 Thread Joe Germuska
At 5:55 PM -0500 2/1/05, Derrick Koes wrote: Can someone point me to the struts tag to use to format a date with a different time zone than the system default (i.e. Calendar.getInstance(TimeZone) vs. Calendar.getInstance())? I would probably recommend using the JSTL formatDate tag instead of any

Formatting a date with a different time zone.

2005-02-01 Thread Derrick Koes
Can someone point me to the struts tag to use to format a date with a different time zone than the system default (i.e. Calendar.getInstance(TimeZone) vs. Calendar.getInstance())? Thanks, Derrick

RE: Shale <--> Struts 1.n

2005-02-01 Thread fzlists
Shameless self-promotion coming up... > So building a Struts Application for the Enterprise is fine, but...what > if you need to expose some Action such that another system can act on > it and interoperate with it. It doesn?t have to be a fully functionally > Axis/SOAP interface or have a UDDI d

RE: Shale <--> Struts 1.n

2005-02-01 Thread Michael Oliver
The reality of the enterprise is however that Web Services offer a Loosely Coupled way for disparate systems to interoperate and to be involved in Business Processes that are also Loosely Coupled. So building a Struts Application for the Enterprise is fine, but...what if you need to expose some Ac

RE: Shale <--> Struts 1.n

2005-02-01 Thread Ted Husted
On Tue, 01 Feb 2005 11:09:22 -0800, Michael Oliver wrote: > Well Ted, Craig certainly wasn't singing that tune, although that > doesn't mean you are wrong either. Craig believes that Shale is the best way to write new web applications for Java. And he may be right. But, I don't think Craig is su

Re: Shale <--> Struts 1.n

2005-02-01 Thread Dakota Jack
On Tue, 1 Feb 2005 11:09:22 -0800, Michael Oliver <[EMAIL PROTECTED]> wrote: > Well Ted, Craig certainly wasn't singing that tune, although that > doesn't mean you are wrong either. Ted is obviously right. I am sure Craig is wholly in agreement with this too, although maybe he would be hesitant

Re: WAY OT Database Crossroads

2005-02-01 Thread Brandon Mercer
Larry Meadors wrote: On Tue, 1 Feb 2005 21:09:46 +0100, PA <[EMAIL PROTECTED]> wrote: Static inner classes, static. Those are simply an extension of the namespace. Contrast this with the sorry freak of nature which are plain inner classes. HAHAHAH! I just inherited some code with a pile of

Re: WAY OT Database Crossroads

2005-02-01 Thread PA
On Feb 01, 2005, at 21:16, Larry Meadors wrote: HAHAHAH! I just inherited some code with a pile of inner classes, and I have to say I agree with you on that "sorry freak of nature" comment. Still not sure I dig static ICs, but am willing to give them the benefit of the doubt...for now. Static inner

Re: WAY OT Database Crossroads

2005-02-01 Thread Larry Meadors
On Tue, 1 Feb 2005 21:09:46 +0100, PA <[EMAIL PROTECTED]> wrote: > Static inner classes, static. Those are simply an extension of the > namespace. Contrast this with the sorry freak of nature which are plain > inner classes. HAHAHAH! I just inherited some code with a pile of inner classes, and I h

Re: WAY OT Database Crossroads

2005-02-01 Thread PA
On Feb 01, 2005, at 21:03, Larry Meadors wrote: Something like that, yes. I have never been a fan of inner classes, Static inner classes, static. Those are simply an extension of the namespace. Contrast this with the sorry freak of nature which are plain inner classes. but that is still the idea

Re: WAY OT Database Crossroads

2005-02-01 Thread Larry Meadors
Something like that, yes. I have never been a fan of inner classes, but that is still the idea. On Tue, 1 Feb 2005 18:55:15 +0100, PA <[EMAIL PROTECTED]> wrote: > > On Feb 01, 2005, at 18:23, Larry Meadors wrote: > > > I think I'd use a strategy pattern for this. Basically, one interface > > wi

Re: WAY OT Database Crossroads

2005-02-01 Thread Larry Meadors
Actually, I'd keep the decision out of the Action, too. I would create a TransactionHandler class that does it. You pass it the information, and it returns information back - it should know nothing about your web front end, and your web front end should know as little as possible about the busine

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread Craig McClanahan
On Tue, 1 Feb 2005 12:12:49 -0500, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Any comments, Craig? I know it's a bit flamy, but would be interested in > your perspective. > Shale actually follows Rod's advice about not mixing metaphors -- that's why it is NOT mixed in with Struts 1.x's r

Re: general Thread disscussion

2005-02-01 Thread Martin Gainty
Whats that line from Harts War? ...Policy Forbids.. tell us the contents of /etc/tomcat4/policy.d/04webapps.policy -OR- /%TOMCAT_HOME%/conf/catalina.policy you should see something like.. // The permissions granted to the context WEB-INF/classes directory // grant codeBase "file:${catalina.home}

Re: Struts 2.0 or Struts 0.0?

2005-02-01 Thread Craig McClanahan
On Tue, 1 Feb 2005 07:11:59 -0800, Michael Oliver <[EMAIL PROTECTED]> wrote: > Ted and I started "Axis4Struts" a while ago, but...didn't get much > activity and it died a slow death. The goal was stated to be "allow > SOAP access to existing and new Struts Applications so the SOAP actor is > just

Re: general Thread disscussion

2005-02-01 Thread listed
To be honest, I've only heard this in the past few days. I didn't know that, generically, writing files was "forbidden" by J2EE. I knew it was something you generally want to avoid from a webapp for other reasons, but it's news to me too :) So no, I don't have any reference I can point you t

Re: general Thread disscussion

2005-02-01 Thread fzlists
On Tue, February 1, 2005 2:01 pm, [EMAIL PROTECTED] said: > Thank you for your detailed reply. Its really helpfull but i had two > questions: I try :) >>... and it may even be forbidden by J2EE, but... doing it is OK if you >> are careful a > > I had a look in the J2EE-Specification but i can't

RE: Shale <--> Struts 1.n

2005-02-01 Thread Michael Oliver
Well Ted, Craig certainly wasn't singing that tune, although that doesn't mean you are wrong either. As you and I discussed back when we tried to solve the problem of opening existing Struts applications to Axis/SOAP with Axis4Struts so a SOAP Actor can be just another View into Struts Application

Re: read local file in ActionStruts

2005-02-01 Thread [EMAIL PROTECTED]
Looks like tomcat cache problem or http protocoll...I use IE 6 could be that? Actually I have no idea how to solve it Help! -- Initial Header --- >From : [EMAIL PROTECTED] To : user@struts.apache.org Cc : Date : Tue, 1 Feb 2005 10:53:52 -0800 (PST) Subje

Re: general Thread disscussion

2005-02-01 Thread listed
Thank you for your detailed reply. Its really helpfull but i had two questions: [...] ... and it may even be forbidden by J2EE, but... doing it is OK if you are careful a [...] I had a look in the J2EE-Specification but i can't found the point where this Topic is handled. Do you know where? [.

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread Ted Husted
On Tue, 01 Feb 2005 08:04:16 -0800, Dakota Jack wrote: > > Please don't respond to this email by saying that those who do can > do anything they like.  They can, of course, but that does not mean > it makes much sense except for marketing purposes for JSF.  (I > personally think that this will just

Re: read local file in ActionStruts

2005-02-01 Thread fzlists
Hmm... Could be a cache issue, although that seems kind of unlikely. Try removing the two cache lines in showPDF.jsp and see what happens. Is there any chance the file isn't being close after being written, or something along those lines? I would also use something like HTTPWatch and see what

Re: read local file in ActionStruts

2005-02-01 Thread [EMAIL PROTECTED]
it works just one time.If I open another browser it opens an empty RTF file.My app produce correctly the RTF but your solution the second time does not work! Cache problem?!?!? -- Initial Header --- >From : [EMAIL PROTECTED] To : user@struts.apache.org Cc

Re: Shale <--> Struts 1.n

2005-02-01 Thread Ted Husted
On Tue, 01 Feb 2005 09:44:43 -0800, Michael Oliver wrote: > What are the plans for migration and/or interoperation for Shale > and Struts 1.n? There's been some talk on the dev list about using both frameworks together, on a temporary basis, but it's not recommended. It's a lot like asking what

AW: unable to compile JSP File

2005-02-01 Thread Leon Rosenberg
Move some code into another jsp and include it. > -Ursprüngliche Nachricht- > Von: Pramod [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 1. Februar 2005 19:10 > An: Struts Users Mailing List > Betreff: unable to compile JSP File > > Hai > > Ii am unable to comile a JSP File becuase, th

AW: unable to compile JSP File

2005-02-01 Thread Leon Rosenberg
Move some code into another jsp and include it. > -Ursprüngliche Nachricht- > Von: Pramod [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 1. Februar 2005 19:10 > An: Struts Users Mailing List > Betreff: unable to compile JSP File > > Hai > > Ii am unable to comile a JSP File becuase, th

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread dhay
Sorry, Vic, you might be the one the needs medical help!! I simply replied to Jack's post, and I guess there's something within the email stuff that puts Jack's footer on something. I can assure you that I am not Jack, nor know him except through this list! cheers, David PS Maybe it will put

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread James Mitchell
That link doesn't work for mebut this does... http://www.theserverside.com/news/thread.tss?thread_id=31509#message154946 So, it says "Posted by: Michael McGrady on February 01, 2005 in " Yes, signs by the name "Dakota Jack". So, which is it? -- James Mitchell Software Engineer / Open Sourc

unable to compile JSP File

2005-02-01 Thread Pramod
Hai Ii am unable to comile a JSP File becuase, the code is too large. If any one having the solution, plz let me know. Thanks in Advance pramod

Re: general Thread disscussion

2005-02-01 Thread fzlists
These seems to come up a lot, I've personally been involved in this discussion a number of times over the past two months. Someone should probably write a Wiki entry somewhere (assuming one doesn't exist already). The discussion generally it seems comes to this conclusion: We've all heard that

Re: read local file in ActionStruts

2005-02-01 Thread fzlists
Yeah, sorry about that everyone :) My reply to two different threads didn't seem to go through, but apparently it went through a couple of times. Not sure why, but I apologize. -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On Tue, Febru

Re: general Thread disscussion

2005-02-01 Thread listed
Excuse me for the bad formatting! ## I had yesterday a general discussion about Threads running in the Servlet-Engine Tomcat. What i would like to do is to start a Thread over the Struts-Plugin. The Thread self is running in a infinite loop to do something and to slee

general Thread disscussion

2005-02-01 Thread listed
I had yesterday a general discussion about Threads running in the Servlet-Engine Tomcat. What i would like to do is to start a Thread over the Struts-Plugin. The Thread self is running in a infinite loop

Re: WAY OT Database Crossroads

2005-02-01 Thread PA
On Feb 01, 2005, at 18:23, Larry Meadors wrote: I think I'd use a strategy pattern for this. Basically, one interface with several implementations; the implementation is dynamically selected at runtime, based on the tranaction type. Perhaps something like this? http://dev.alt.textdrive.com/file/pl/

Re: WAY OT Database Crossroads

2005-02-01 Thread Brandon Mercer
So check to see what type of transaction it is in the Action and then send it to the corresponding method in the data class? Sounds good, Brandon Larry Meadors wrote: I think I'd use a strategy pattern for this. Basically, one interface with several implementations; the implementation is dynamic

Re: WAY OT Database Crossroads

2005-02-01 Thread Larry Meadors
I think I'd use a strategy pattern for this. Basically, one interface with several implementations; the implementation is dynamically selected at runtime, based on the tranaction type. Larry On Tue, 01 Feb 2005 12:19:03 -0500, Brandon Mercer <[EMAIL PROTECTED]> wrote: > Ok, I've officially NOT fo

Shale <--> Struts 1.n

2005-02-01 Thread Michael Oliver
What are the plans for migration and/or interoperation for Shale and Struts 1.n? Michael Oliver CTO Alarius Systems LLC 3325 N. Nellis Blvd, #1 Las Vegas, NV 89115 Phone:(702)643-7425 Fax:(520)844-1036 *Note new email changed from [EMAIL PROTECTED] -

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread Vic
It says bellow that ... DHay at LexMark has signature of Dakota Jack if I read it right in the post. (The 2 of them care then). Also known as "Michael McGrady " on the server side as Dakota Jack. Any more ? If so, why? Ah.. you may

WAY OT Database Crossroads

2005-02-01 Thread Brandon Mercer
Ok, I've officially NOT followed some standard somewhere. :-( Shame on me! Can somebody help me with the following predicament? I've got a table of transactions that need to be processed. In that table I have a column for that persons account number... which gets assigned in a different ta

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread dhay
Any comments, Craig? I know it's a bit flamy, but would be interested in your perspective. cheers, David |-+> | | Dakota Jack | | | <[EMAIL PROTECTED]| | | l.com> | | |

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread Vic
Got it! Don't worry, we learn quickly. .V Dakota Jack wrote: Please don't respond to this email .. -- Forums, Boards, Blogs and News in RiA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Accessing parameter map properties using JavaScript

2005-02-01 Thread Susan Bradeen
Yes, I checked the archives and google without any luck. If I have a parameter map on my action form, how can I access the map properties using JavaScript? As an example, if the following creates an alert box with the text field value ... It seems that this should work for a parameter map

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread Dakota Jack
On Tue, 1 Feb 2005 06:50:13 -0500, Ted Husted <[EMAIL PROTECTED]> wrote: > Meanwhile, another potentially great framework has come along: Shale. Like > Struts, Shale is MVC web framework, but it doesn't share any code or > architectural hallmarks with Struts 1.x. As Rod Johnson (the brrains b

Re: Capturing input as html under the scenes

2005-02-01 Thread fzlists
Alternatively, if you can live with an IE-only solution, you might consider the contenteditable attribute of a tag. This does as it's name implies: allows a user to edit the contents of the div, but more importantly, getting the value of it results in HTML. You can actually create a whole ric

Re: Capturing input as html under the scenes

2005-02-01 Thread fzlists
Re: Capturing input as html under the scenes Alternatively, if you can live with an IE-only solution, you might consider the contenteditable attribute of a tag. This does as it's name implies: allows a user to edit the contents of the div, but more importantly, getting the value of it results

Re: Capturing input as html under the scenes

2005-02-01 Thread Mark Benussi
I can mandate this. (IE only) so thats good to know. However the other suggseted solution may do for now down to its out of the box functionality Cheers Original Message Follows From: [EMAIL PROTECTED] Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: Re: Capt

Re: read local file in ActionStruts

2005-02-01 Thread fzlists
I do something like this in one app... I'm creating PDFs on-the-fly and then displaying them on the browser. I have a directory named temp under my webapp that the PDFs get written to. The files are named according the the user ID. You have the Action writing out the file already... if we as

Re: Capturing input as html under the scenes

2005-02-01 Thread fzlists
Re: Capturing input as html under the scenes Alternatively, if you can live with an IE-only solution, you might consider the contenteditable attribute of a tag. This does as it's name implies: allows a user to edit the contents of the div, but more importantly, getting the value of it results

Re: read local file in ActionStruts

2005-02-01 Thread Frank W. Zammetti (MLists)
I do something like this in one app... I'm creating PDFs on-the-fly and then displaying them on the browser. I have a directory named temp under my webapp that the PDFs get written to. The files are named according the the user ID. You have the Action writing out the file already... if we assum

Re: read local file in ActionStruts

2005-02-01 Thread fzlists
Re: read local file in ActionStruts I do something like this in one app... I'm creating PDFs on-the-fly and then displaying them on the browser. I have a directory named temp under my webapp that the PDFs get written to. The files are named according the the user ID. You have the Action wri

RE: Struts 2.0 or Struts 0.0?

2005-02-01 Thread Michael Oliver
Ted and I started "Axis4Struts" a while ago, but...didn't get much activity and it died a slow death. The goal was stated to be "allow SOAP access to existing and new Struts Applications so the SOAP actor is just another user of the View of the Struts MVC." So, given the Shale features, can Shale

to read a server file dinamically generated.

2005-02-01 Thread [EMAIL PROTECTED]
hi all I want to read a server file dinamically generated. Tomcat does not see it!! It see it only when I shout down and startup tomcat. Any help could be really appreciated!! 6X velocizzare la tua navigazione a 56k? 6X Web Accelerator

Re: Capturing input as html under the scenes

2005-02-01 Thread Mark Benussi
Jeff, 10 out of 10 go get yourself a coffee on me. Cheers, Mark Original Message Follows From: Jeff Beal <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: Re: Capturing input as html under the scenes Date: Tue, 01 Feb 2005 09:05:05 -0500 Mark Be

Re: Tiles is hiding my jsp error messages?!

2005-02-01 Thread Joe Germuska
Can't answer that for you. I've used Tiles many times on various project, but I am certainly no expert on it. In my experience with it, I turn to the logs for help when I have these kinds of errors. Or, if that doesn't help, step 2 (for me) is to remove the entire contents of that particular

Re: read local file in ActionStruts

2005-02-01 Thread [EMAIL PROTECTED]
could u be more precise? U mean to save there the file and after that read it?! Actually I did not find any instructions. Do u? - Initial Header --- >From : [EMAIL PROTECTED] To : "Struts Users Mailing List" user@struts.apache.org Cc : Date : Tue, 1 Fe

Re: read local file in ActionStruts

2005-02-01 Thread DGraham
How about using the javax.servlet.context.tempdir Servletcontext attribute? Dennis Keshav Shetty <[EMAIL PROTECTED]> 02/01/2005 08:52 AM Please respond to "Struts Users Mailing List" To Struts Users Mailing List cc Subject Re: read local file in ActionStruts Then don't store the fil

RE: Tiles is hiding my jsp error messages?!

2005-02-01 Thread Nils Liebelt
Well, That's basically what I do. But until you smack your head for a forgotten message resource it takes 15 min. Cheers Nils mtgglf -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 01, 2005 3:55 PM To: Struts Users Mailing List Subject: Re:

RE: Tiles is hiding my jsp error messages?!

2005-02-01 Thread Nils Liebelt
Well, That's basically what I do. But until you smack your head for a forgotten message resource it takes 15 min. Cheers Nils mtgglf -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 01, 2005 3:55 PM To: Struts Users Mailing List Subject: Re:

Re: Capturing input as html under the scenes

2005-02-01 Thread Jeff Beal
Mark Benussi wrote: What I really want is a gui that allows them to type £ and new paragraphs etc but under the scenes it is producing the html. Giving them control to change colours and text style would also be good. Have a look at FckEditor, a JavaScript rich text editor that works in IE or Mo

AW: Tiles is hiding my jsp error messages?!

2005-02-01 Thread Leon Rosenberg
> Or, if that doesn't help, step 2 (for me) is to remove the > entire contents of that particular tile, and slowly replace > it piece by piece until it stops rendering, then examine the > part you just put back. I know that sounds crazy, but it > works for me.and it almost always ends with

AW: Tiles is hiding my jsp error messages?!

2005-02-01 Thread Leon Rosenberg
> Or, if that doesn't help, step 2 (for me) is to remove the > entire contents of that particular tile, and slowly replace > it piece by piece until it stops rendering, then examine the > part you just put back. I know that sounds crazy, but it > works for me.and it almost always ends with

Re: read local file in ActionStruts

2005-02-01 Thread [EMAIL PROTECTED]
You know how to disabling IE controll for check script ? Writing a servlet that only does this is quite heavy...anyone knows any alternative. Using response.setHeader("Location",url) or what else? I understood that i cannot read from the client...but how can i use printWriter.println to read an r

Re: Tiles is hiding my jsp error messages?!

2005-02-01 Thread James Mitchell
Can't answer that for you. I've used Tiles many times on various project, but I am certainly no expert on it. In my experience with it, I turn to the logs for help when I have these kinds of errors. Or, if that doesn't help, step 2 (for me) is to remove the entire contents of that particular

Re: read local file in ActionStruts

2005-02-01 Thread Keshav Shetty
Then don't store the file within webapp, but in any server folder and write a servlet to retrieve the file. Thanks & regards Keshav K Shetty [EMAIL PROTECTED] wrote: Tomcat see a new created file only after shutdown and startup. That's a big problem. Help! -- Initial Header ---

Re: read local file in ActionStruts

2005-02-01 Thread [EMAIL PROTECTED]
Tomcat see a new created file only after shutdown and startup. That's a big problem. Help! -- Initial Header --- >From : "Keshav Shetty" [EMAIL PROTECTED] To : "Struts Users Mailing List" user@struts.apache.org Cc : Date : Tue, 01 Feb 2005 15:36:06 +02

Re: read local file in ActionStruts

2005-02-01 Thread Keshav Shetty
You can store the file on sever and not in client. If I understood you already created file in your struts action and stored in the server. So instead of giving file:// use full link with http:// link to file. (Hope the file is within webapp) or write your download servlet. Thanks & regards Kesha

RE: Tiles is hiding my jsp error messages?!

2005-02-01 Thread Nils Liebelt
So there is nothing we could do about it? Why is tiles flushing everything immediately? GreetZ Nils -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 01, 2005 3:27 PM To: Struts Users Mailing List Subject: Re: Tiles is hiding my jsp error messages

RE: Tiles is hiding my jsp error messages?!

2005-02-01 Thread Nils Liebelt
So there is nothing we could do about it? Why is tiles flushing everything immediately? GreetZ Nils -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 01, 2005 3:27 PM To: Struts Users Mailing List Subject: Re: Tiles is hiding my jsp error messages

Re: Tiles is hiding my jsp error messages?!

2005-02-01 Thread James Mitchell
I agree this is annoying. Check the logs, there should be something indicating what went wrong. -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Nils Liebelt" <[EMAIL PROTECTED]> To: "'Struts Users Mailin

read local file in ActionStruts

2005-02-01 Thread [EMAIL PROTECTED]
Hi all In an Action Struts I create dynamically a file. After that whit PrintWriter I try to get the file win a script tag (document.location='file:///xxx.xx') My problem is IE or Netscape does not allow me to read local file. Any alternative idea? _

Re: Regarding LOGIC tags

2005-02-01 Thread Hanson Char
How about using jstl instead: ... H On Tue, 1 Feb 2005 13:41:23 +0100, Cedric Levieux <[EMAIL PROTECTED]> wrote: > and that's why I have my own tags to make this kind of tests between my > beans :p > > - Original Message - > From: "Kishore Senji" <[EMAIL PROTECTED]> > To: "Struts User

Re: XDoclet

2005-02-01 Thread bryan ( [EMAIL PROTECTED] )
my personal opinion XDoclet is on the way out and 1.5 anotations will replace it. I never liked it anyway. It does not work in a pleasant fashion with struts config files. Their is no real advantage in learning it as ejb and hibernate will both use anotations. I don't know why someone wo

Re: Regarding LOGIC tags

2005-02-01 Thread Cedric Levieux
and that's why I have my own tags to make this kind of tests between my beans :p - Original Message - From: "Kishore Senji" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, January 27, 2005 7:55 AM Subject: Re: Regarding LOGIC tags > On Thu, 27 Jan 2005 10:48:47 +053

Re: struts and java script and jsp

2005-02-01 Thread Kumar deepak
Hi, Please have a look at: http://roseindia.net/struts/address_struts_validator.shtml Tutorial shows you how to validate using sturts generated java scripts. Regards Deepak Kumar --- Hanson Char <[EMAIL PROTECTED]> wrote: > > Then, where does it come up with "username"? > > Could it be that

Re: Struts 2.0 or Struts 0.0? [or Struts 1.42?]

2005-02-01 Thread Ted Husted
On Mon, 31 Jan 2005 17:03:09 -0500, Alex Kravets wrote: > So what do you guys think? > http://www.theserverside.com/news/thread.tss?thread_id=31509 An important clarification we'll make to the FAQ is that "by doing our job right" we mean "not break backward compatibility" in the ongoing 1.x serie

Re: struts and java script and jsp

2005-02-01 Thread Hanson Char
> Then, where does it come up with "username"? Could it be that you have "username" specified in validator.xml ? H On Tue, 1 Feb 2005 11:22:48 +0100, Cedric Levieux <[EMAIL PROTECTED]> wrote: > Hi, > > You have this JavaScript code cause you ask into the tag the > ability to focus on a form fi

Tiles is hiding my jsp error messages?!

2005-02-01 Thread Nils Liebelt
Hi everybody, I set flush="false" for all my tiles:insert tags in a jsp page. But still can't see the error message if e.g. a message resource lookup fails. This is very annoying since the form 300 lines long. GreetZ Nils

Tiles is hiding my jsp error messages?!

2005-02-01 Thread Nils Liebelt
Hi everybody, I set flush="false" for all my tiles:insert tags in a jsp page. But still can't see the error message if e.g. a message resource lookup fails. This is very annoying since the form 300 lines long. GreetZ Nils

Re: struts and java script and jsp

2005-02-01 Thread Cedric Levieux
Hi, You have this JavaScript code cause you ask into the tag the ability to focus on a form field. But btw I don't understand why the javascript code didn't work :p Regards, Cedric - Original Message - From: "Nadia Kunkov" <[EMAIL PROTECTED]> To: "Struts help (E-mail)" Sent: Tuesday,

Capturing input as html under the scenes

2005-02-01 Thread Mark Benussi
Hello people. I have a content management system that allows users to add paragraphs to a page. However at the moment if the need to enter special characters like the pound sign they have to type £. I hope you can see my problem. What I really want is a gui that allows them to type £ and new par

Re: Struts 2.0 or Struts 0.0?

2005-02-01 Thread Shey Rab Pawo
On Mon, 31 Jan 2005 19:43:17 -0600, Vic <[EMAIL PROTECTED]> wrote: > Well, the marketing department of Sturts is in hot water for this one. > To: [EMAIL PROTECTED] wait, we don't have one. > Oh, well... who cares. > > Some people just can't comprehend that there are 2 or more MVC > frameworks out