Re: [OT]jsp and version control

2004-02-28 Thread Anand Stephen
Hi We are developing a web project which incudes jsp ,struts etc. we are using VSS for source control, we are sending jar files to the client and each jar file we have a manifest file which has the version number,build number and date, so if there is any error we just ask the

Re: [OT] RE: Memory usage

2004-02-27 Thread Anand Stephen
by posting demeaning replies. (My two cents). (Apologies for reposting a question in the past without giving enough time for an answer, anxiety got the better of me!) -anand stephen. - Original Message - From: atta-ur rehman [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

Re: PropertyDescriptor: internal error while merging PDs: with jdk1.4

2004-02-12 Thread Anand Stephen
This error was as one of the classes in the project had a mismatch between the field type and return for the getter. What's interesting is that the error was not caused when run with jdk1.3. thank you, --a - Original Message - From: Anand Stephen [EMAIL PROTECTED] To: Struts Users

[REPOST] Struts 1.1 with 1.4.2_01?

2004-02-08 Thread Anand Stephen
- Original Message - From: Anand Stephen [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, February 07, 2004 11:36 AM Subject: Re: PropertyDescriptor: internal error while merging PDs: with jdk1.4 Greetings, Has anyone had success

Re: PropertyDescriptor: internal error while merging PDs: with jdk1.4

2004-02-07 Thread Anand Stephen
Greetings, Has anyone had success running web app using struts 1.1 with java version 1.4.2_01 and resin 2.1.4 thank you again. -- a, - Original Message - From: Anand Stephen [EMAIL PROTECTED] To: Struts-User [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, February 06, 2004 8:03 PM

PropertyDescriptor: internal error while merging PDs: with jdk1.4

2004-02-06 Thread Anand Stephen
Greetings, I get the following error when I run a web app with: java version 1.4.2_01 Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06) Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode) It works without any problems with: java version 1.3.1_02 Java(TM) 2 Runtime

Basic Tiles question!

2004-02-04 Thread Anand Stephen
Any idea what would cause this exception? 500 Servlet Exception java.lang.NullPointerException at org.apache.struts.taglib.tiles.InsertTag.processName(InsertTag.java:528) at org.apache.struts.taglib.tiles.InsertTag.createTagHandler(InsertTag.java :487) at

[OT] RE: HTTP 404 Not Found on Actions - SOLVED

2003-08-19 Thread Stephen Brown
You'll need to add a JkMount to your httpd.conf file. You probably have JkMount /*.jsp ajp13 so that your jsps work (this maps *.jsp to the Tomcat ajp13 link). You'll need to add something like JkMount /*.do ajp13 so that your Struts actions work too. Steve -Original Message-

RE: very simple if/else question

2003-08-14 Thread Stephen Brown
http://www.manning.com/bayern/appendixA.pdf for JSTL is pretty much the same thing that http://jakarta.apache.org/struts/userGuide/struts-logic.html is for struts logic. -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent: August 13, 2003 5:50 PM To: 'Struts Users

RE: Struts Validator

2003-08-14 Thread Stephen Brown
- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: August 13, 2003 1:41 PM To: 'Struts Users Mailing List' Subject: RE: Struts Validator Validator is crap; don't waste your time. Mark -Original Message- From: Stephen Bennett [mailto:[EMAIL PROTECTED] Sent

Struts Validator

2003-08-14 Thread Stephen Bennett
Has anyone had any problems getting the Struts Validator to work? I have a small sample app that works OK but cannot get my main app to work! As far as I can see I have done everything the same as in the sample one. I have noticed that when the sample app that works starts up I get four

RE: JSTL ot struts taglibs?

2003-08-14 Thread Stephen Brown
Hmm, yeah. I wouldn't hold your breath on that. I mean the JSTL people did feel the need to include database tags, even though no one really thinks that's a good idea (if you do, I'm really not interested). Anyways, it's happy hour, go have a beer (unless you're not in NYC, but I'm not sure if

RE: Struts Validator

2003-08-14 Thread Stephen Bennett
the action validation and ValidatorForm to use the form validation. -Original Message- From: Stephen Bennett [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 11:39 AM To: [EMAIL PROTECTED] Subject: Struts Validator Has anyone had any problems getting the Struts Validator to work

RE: JSTL ot struts taglibs?

2003-08-14 Thread Stephen Brown
. That's all I am saying. I definitely was wrong about Ant, sorry. -Original Message- From: Stephen Brown [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 11:41 AM To: 'Struts Users Mailing List' Subject: RE: JSTL ot struts taglibs? Maybe you could post this to the ECS

RE: struts, Dreamweaver, Dreamweaver templates

2003-08-11 Thread Stephen Brown
I've used Dreamweaver with struts without issue, but in general lean towards tiles for doing page templates. It really doesn't matter and depends on the technical aptitude of the HTML folks when deciding which way to go, but both work. What problem are you seeing? -Original Message-

RE: JSTL ot struts taglibs?

2003-08-09 Thread Stephen Brown
Maybe you could post this to the ECS users group. Scriptlets are fine, but tend to lend themselves to having lots of lines of code in a page that doesn't actually generate html, which is tough to read if you are trying to lay things out. Why do you think Ant is so popular??? It got rid of all

RE: JSTL and Struts

2003-08-01 Thread Stephen Brown
Since you are relying on the browser anyways, I'd use javascript for this. The numbers would stay formatted as you change them then. As a caveat, you really need to check the values on the server side afterwards. Steve -Original Message- From: Mainguy, Mike [mailto:[EMAIL PROTECTED]

RE: Intercepting Action Filters

2003-07-29 Thread Molitor, Stephen L
Yes, there's a lot of overlap between servlet filters and 'action filters'. But with a servlet filter you get control after Struts has already performed the action forward. With an 'action filter' you'd get control before the forward is performed, and you would have convenient access to the

Intercepting Action Filters

2003-07-28 Thread Molitor, Stephen L
Has any one implemented pluggable decorators for Actions? By that I mean things that would wrap around an action and add extra behavior. We've done this using the Template Method approach, where derived action classes can overrided beforeExecute, afterExecute hooks in a base action. One could

RE: IMAGE DISPLAY PROBLEM - PLEASE HELP!! (fwd)

2003-07-17 Thread Stephen Brown
What other servlet-mappings do you have? Possible anything with * or *.gif? steve -Original Message- From: Stanislaw Findeisen [mailto:[EMAIL PROTECTED] Sent: July 17, 2003 9:40 AM To: [EMAIL PROTECTED] Subject: IMAGE DISPLAY PROBLEM - PLEASE HELP!! (fwd) Once again, since

RE: IMAGE DISPLAY PROBLEM - PLEASE HELP!!

2003-07-17 Thread Stephen Brown
Sorry Micael, Nicolas is correct. steve -Original Message- From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: July 17, 2003 9:52 AM To: Struts Users Mailing List Subject: Re: IMAGE DISPLAY PROBLEM - PLEASE HELP!! As your serlvet-mapping is setted to

RE: [OT] JSTL

2003-07-09 Thread Stephen Brown
There is the odvious spec doc, which is pretty good... ftp://ftp.java.sun.com/pub/spec/jstl/enov1818/jstl-1_0-fr-spec.pdf steve -Original Message- From: Micael [mailto:[EMAIL PROTECTED] Sent: July 9, 2003 12:01 PM To: Struts Users Mailing List Subject: RE: [OT] JSTL There are,

RE: bean:write and c:out only takes proper javabeans?

2003-07-09 Thread Stephen Brown
The only way to do this is the use getter and setter methods with JavaBean naming conventions. This should in no way interfere with a Corba backend, Corba can be used pretty much just like EJB. The tags use reflection, but just to find appropriately named getter methods - the Java conventions

RE: bean:write problem with struts 1.1

2003-07-09 Thread Stephen Brown
This is a problem with the class org.apache.struts.util.RequestUtils which is currently setup in a way that doesn't work with anything that loads classes in a non-Tomcat way. If you download the source for this class and re-write the applicationClass method as I have it below, these problems

RE: JAAS Struts JBoss + Tomcat

2003-07-07 Thread Stephen Brown
1. From what I read here, I saw that I should probably use the FORM auth method, and that this page should not use any of the Struts tags. Is that right? It is best to use the FORM authentication because you can encrypt it with SSL - otherwise your users' passwords will go over the

RE: jsp links to stay within module

2003-07-07 Thread Stephen Brown
Use html-el:link href='/prodSubmit.do' or html:link href='/prodSubmit.do' steve -Original Message- From: ben [mailto:[EMAIL PROTECTED] Sent: July 7, 2003 3:45 PM To: 'Struts Users Mailing List'; 'Jing Zhou' Subject: RE: jsp links to stay within module Unfortunately this is

Tiles and parameters

2003-07-03 Thread Stephen J. Thompson
does not start with a / character I know that I am doing something stupid but no idea what. Can anyone help? Thanks Stephen. Tiles definition: definition name=.secured.companypage path=/secured/Layout.jsp put name=title value=ContactManager Company Page

RE: [ANNOUNCEMENT] Struts 1.1 Final released

2003-06-30 Thread Stephen Ting
Great works.. Thanks guys. -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 15:39 To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [ANNOUNCEMENT] Struts 1.1 Final released The Struts team is proud, and extremely pleased, to

[OT] Data Pooling system

2003-06-24 Thread Stephen Ting
likes JIT result presentation, whenever at production a data is captured it will reflect at the ticker. If anyone come across tools (open-source/commercial/etc...) please do let me know, we will consider to purchase if the tools really meet our needs. Thanks and regards Stephen Ting

Action vs. DispatchAction and the input parameter

2003-06-17 Thread Lafredo, Stephen
purpose does the 'input' parameter have when defining a DispatchAction? None, correct? Should I only use DispatchActions for GUI(less) actions? Thanks. Stephen Lafredo Merck Co., Inc. E: [EMAIL PROTECTED] -- Notice: This e

OT:Pooling framework

2003-06-09 Thread Stephen Ting
Does anybody come across any open source or commercial realtime pooling framework, sort likes Stock Ticker? Thanks Regards, Stephen Ting

RE: Is it always bad to pass middle tier object to view?

2003-06-09 Thread Molitor, Stephen L
Actually, passing middle tier object to the view does not violate the best practice that says do not let your lower tiers depend on the upper ones. That's a good best practice, but passing a middle tier or model object the view doesn't violate that. It introduces a dependency from the from the

Using Validation Framework to control display

2003-06-09 Thread Molitor, Stephen L
Has anyone tried using the validation framework to control the display of the JSP? For example, if I mark a field as required in validation.xml, maybe I could write my own form tag that puts a red asterisk next to the edit box. It might also be nice to configure things like

Re: javascript and Struts

2003-04-04 Thread Stephen Smithstone
have u tried document.forms[ 0 ].submit( ) ??? On Friday 04 April 2003 12:31 pm, Oliver Reflé wrote: Hi Guys, i have a strange problem. Maybe you can help me. I would like to submit a form when a select box value has changed.Here is the code like i try it: html:form

Tiles problem

2003-04-04 Thread Stephen Smithstone
Hi all got a problem with a tiles contoller heres the controller code public class IndexTiles implements org.apache.struts.tiles.Controller { public void perform( ComponentContext comCtx , HttpServletRequest req , HttpServletResponse res , ServletContext serCtx ) {

Re: Tiles problem

2003-04-04 Thread Stephen Smithstone
else ? You should use one of insert or forward. Cedric Stephen Smithstone wrote: Hi all got a problem with a tiles contoller heres the controller code public class IndexTiles implements org.apache.struts.tiles.Controller { public void perform( ComponentContext comCtx

Re: About the checkLogonTag of the example application

2003-04-03 Thread A Stephen
I agree with David. The view layer should not perform authentication logic, IMO the view layer should not contain *any* logic [maybe I live in a fantasy world :-)]. -S - Original Message - From: David Graham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 03, 2003 7:11 AM

OJB Deployment With Sturts 1.1rc1

2003-04-01 Thread Stephen Smithstone
Ta Stephen - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Message resources are not loaded until an action is called.

2003-04-01 Thread Stephen Smithstone
is your ActionServlet load priority set as 1 or maybe 2 to ensure that the servlet is loaded first ? On Tuesday 01 April 2003 2:02 pm, [EMAIL PROTECTED] wrote: I am using struts 1.1rc1 TomCat 3.3. In my struts-config.xml I have the following line; message-resources parameter=messages

Re: OJB Deployment With Sturts 1.1rc1

2003-04-01 Thread Stephen Smithstone
Im running 1.4.1_01 On Tuesday 01 April 2003 3:41 pm, Guido wrote: What JDK version are you using? I had that exception when I was compiling my classes with a JDK and running them in a Tomcat using a different version. Regards, Guido. Stephen Smithstone wrote: Any one using the ojb

Re: HELP: Dispaly Date in a JSP that used Tiles

2003-03-31 Thread Stephen Smithstone
wow all that trouble for a date what i would do is create a TileAction that sets up the date variable in the tiles context and then publish that attribute on the tiles page public class TilesDate extends TileAction { public void perform( ComponentContext 1 , HttpServletRequest 2 ,

Re: HELP: Dispaly Date in a JSP that used Tiles

2003-03-31 Thread Stephen Smithstone
ah sorry missed your timer function On Tuesday 01 April 2003 8:41 am, Stephen Smithstone wrote: wow all that trouble for a date what i would do is create a TileAction that sets up the date variable in the tiles context and then publish that attribute on the tiles page public class TilesDate

Re: HELP: Dispaly Date in a JSP that used Tiles

2003-03-31 Thread Stephen Smithstone
in respect to that dont you need to implement the date text into a text box container ? On Tuesday 01 April 2003 8:43 am, Stephen Smithstone wrote: ah sorry missed your timer function On Tuesday 01 April 2003 8:41 am, Stephen Smithstone wrote: wow all that trouble for a date what i would do

RE: Do Struts increase developer productivity?

2003-03-29 Thread stephen . clement
There is a reality that new technology generally gets a honeymoon grace period during which it is generally agreed that the technology has promise but only the gurus truly understand it and everyone else simply throws buzzwords around about it and oversells/overuses it (it can solve all our

RE: Does a degree matter?

2003-03-29 Thread stephen . clement
Hello Brandon, Generally degrees, diplomas, accreditation, courses and the like can only help you in any career. But the IT career is unusual because of pace at which things change in the IT industry. Cheaper computers, cheaper software and cheaper programmers make it tough to see where you

Re: [OT] reusing existing user accounts in a webapp that are stor ed i n a DB table....

2003-03-28 Thread Stephen Smithstone
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html is for a tomcat setup not sure on the weblogic stuff On Friday 28 March 2003 11:06 am, Butt, Dudley wrote: does anyone know of, or able to point me in the right direction with regards to single sign on...is there any software or

Re: [FRIDAY]Re: Just let me be the first to say...

2003-03-28 Thread Stephen Smithstone
i really feel for you using ASP in regards with how easy you could make your life if you totally dropped it and used Struts :-) On Friday 28 March 2003 11:58 am, Rachel wrote: At 15:58 28/03/2003 +0800, you wrote: :) I look forward to the weekends where I can read the struts book I just

Re: Arguments

2003-03-27 Thread Stephen Smithstone
just tell him struts rocks :-) On Thursday 27 March 2003 9:53 am, Simon Kelly wrote: There is a list of sites (somewhere) that us struts as the framework. You could show them those, some where quite impressive. Just search the archive for sites using struts. Cheers Simon -

Re: Antwort: Re: Antwort: RE: Pull-down-menue for language select at logon

2003-03-26 Thread Stephen Smithstone
session is just the name of the variable u need to use the object HttpSession session_var_name = HttpServletRequest_var_name.getSession( ); its in the stanadrar javax.servlet.http. package On Wednesday 26 March 2003 11:03 am, Manuel Lenz wrote: Hi, my IDE doesn´t know what session is! How

Re: Returning a different request-type (xml/pdf/doc/etc...) through Struts

2003-03-26 Thread Stephen Smithstone
since your writing the repsonce there and then why not try return null; On Wednesday 26 March 2003 2:57 pm, Jeremy Nix wrote: I am new to struts, and have just recently began porting our current web application over to the struts framework. A piece of our application involves creating a

Re: jsp editor

2003-03-26 Thread A Stephen
http://www.intellij.com/idea/ - Original Message - From: Tim Stadinski [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 10:31 AM Subject: jsp editor Does anyone recommend a jsp editor that will do tag inspection for the strut taglibs? thanks.

Re: Exception: Cannot retrieve definition for form bean null using Fo rwardAction

2003-03-26 Thread Stephen Smithstone
for every form that you have in your app you need a form bean and then u need to add it to your action mapping that is where you are getting the null exception just create a dummy form bean with nothing in it and then add it to that action On Wednesday 26 March 2003 11:22 pm, Alonso,

Re: Catalogue Paging storing selected items

2003-03-25 Thread Stephen Smithstone
create a javabean to contain the items like a shopping cart and place that in the session scope for the user On Tuesday 25 March 2003 9:29 am, Pat Quinn wrote: Hi Guys, I have a paging catalogue of items which all works fine but i'm wondering how do i store selected items across multiple

Re: how to switch of logging with log4j at initialization

2003-03-25 Thread Stephen Smithstone
if you have the log4j.properties on the classpath in the file just add log4j.logger.org.apache.struts = warn that will stop the struts stuff On Tuesday 25 March 2003 10:58 am, Martin Monsorno wrote: Hi *, when starting my struts-enabled web-app, I get output like this , | [INFO]

Re: [ANN] New York Struts Group - Manchester UK

2003-03-25 Thread Stephen Smithstone
wow someone livesin the north west of england as well :-) if more people are interested i'd go along On Tuesday 25 March 2003 11:10 pm, David Bolsover wrote: New York a bit far for me on a regular basis Any interest in somthing similar in Manchester UK - has distinct benefit of beter beer

Re: take over an existing HttpSession

2003-03-24 Thread Stephen Smithstone
Use the servlet context to store the details in instead of the session context and the label it via a the users username or something On Monday 24 March 2003 12:40 pm, Dmitri Ilyin wrote: Hi, i'm may be out of topic. But i think there are a lot of gurus here they could help me. I have to

Re: [newbie] Finding datasource from pool in struts-config

2003-03-24 Thread Stephen Smithstone
Action.getDataSource( httpSerlvetRequestObject , logindb ); or Action.getDataSource( httpServletRequest , userdb ); that how i do it in rc1 On Monday 24 March 2003 1:00 pm, Johan Wasserman wrote: Hi, How do you connect to a specific datasource pool (as configured in strusts-config). I

Re: [newbie] findDataSource deprecated?

2003-03-24 Thread Stephen Smithstone
try getDatasource( HttpSerlvetRequest httpServletRequest , String key ); from the Action Class On Monday 24 March 2003 12:09 pm, Johan Wasserman wrote: Hi, Im just now converting to rc1.3 and find that findDataSource is deprecated. How do you find one of many datasources? FYI: -- I

Re: [newbie] findDataSource deprecated?

2003-03-24 Thread Stephen Smithstone
OK heres my actuall code for my datasources data-sources data-source key=Progress set-property value=x property=password / set-property value=y property=user / set-property value=jdbc:mysql://localhost/Portal property=url / set-property

Re: data-source problem

2003-03-21 Thread Stephen Smithstone
Are u using an Action if so try getDatasource( httpServletRequest , ds1 ); as the Action has a method for getting a datasource On Friday 21 March 2003 2:32 pm, Eugene Volynskiy wrote: Hi, I have a problem with data-source usage in Struts 1.1 When we had data-source defined in

Re: Connection Pool

2003-03-20 Thread Stephen Smithstone
Heres how i do it and it works with struts 1.1rc1 in the struts-config i have data-sources data-source key=SystemsLog set-property value=jdbc:mysql://localhost/SystemsLog property=url / set-property value=org.gjt.mm.mysql.Driver property=driverClass / set-property

Re: working with a team

2003-03-20 Thread Stephen Smithstone
Have u tried sharing the drive as a network drive with permissions on it ?? then get the jsp developer to map the network to a drive on his computer On Friday 21 March 2003 5:01 am, Dan Allen wrote: I am looking for some advice/articles on setting up my struts application so that all members

forwards with appending query string

2003-03-19 Thread Stephen Smithstone
in my jsp page im usually calling a href='link?param=value'Link/a is there something i can along the same lines with the html:link either using the forward or href attribute Ta Stephen - To unsubscribe, e-mail: [EMAIL

Re: relative path problem

2003-03-11 Thread Stephen Smithstone
try using an action that gets the relative path then pass that path to the bean maybe On Tuesday 11 March 2003 6:52 am, bobd wrote: This is a rather silly problem I have been putting off and now I really need to fix it... In my Struts app, bean classes are parsing and writing XML files

Re: struts-config.xml parse errors (can't find source)

2003-03-11 Thread Stephen Smithstone
place yout formbeans before your global-forwards On Tuesday 11 March 2003 11:23 am, Rob wrote: I'm just throwing together a demo application to refresh myself w/ struts but have run into a problem where the struts-config.xml is resulting in parsing errors, problem is I can't figure out

Re: Newbie question

2003-03-11 Thread Stephen Smithstone
id first pass it to a the action needed then do a redirect to another action that would get rid of the url for you maybe On Tuesday 11 March 2003 3:22 pm, James wrote: How can i mask the url in the browser so the user does not see the request parameters..? ie /localhost/myapp/find?id=3 - is

Re: comparing strings with tags/online reference

2003-03-11 Thread Stephen Smithstone
c:when test=${ StringVar ( eq / == ) 'string' }/ use eq or == On Tuesday 11 March 2003 4:03 pm, Curley, John wrote: Hi, All: How do you compare strings (if you can) with JSTL? I am having trouble finding a good online reference (if anyone knows of one, please let me know). I have a

RE: [OT]: Struts, Web Development, J2EE, and what is too much?

2003-03-11 Thread Molitor, Stephen
Aaron, You've opened up a big can of worms! There is much debate on this topic. Regarding entity beans and transactions: The recommended practice is to use the 'Session Facade' pattern to wrap access to your entity beans inside a stateless EJB session bean. The reason is remote calls to

Re: struts-menu

2003-03-10 Thread Stephen Smithstone
what is this struts-menu and where can i find some examples / downloads ? please On Monday 10 March 2003 3:22 pm, Raible, Matt wrote: Edgar, I'm a committer on struts-menu, so hopefully I can help you out. I believe using the location attribute vs. page attribute will strip out your

RE: [OT] Ancient computing

2003-03-05 Thread Clement, Stephen
. If the paper role tore or got bent you were out of luck. Anyone wanna guess how long ago that was. LOL -Original Message- From: Clement, Stephen [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 3:06 PM To: [EMAIL PROTECTED] Subject: RE: [OT] Ancient computing I wrote the first

RE: [OT] Ancient computing

2003-03-04 Thread Clement, Stephen
I wrote the first design patterns using sticks and stones. Facade was easy. Iterator was hard and took up a lot of rocks. :) -Original Message- From: awc [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 6:02 PM To: Struts Users Mailing List Subject: Re: [OT] Ancient computing

RE: What is the best struts plugin for Eclipse?

2003-03-03 Thread Clement, Stephen
i will have to side with Mr Childers, i'm afraid. these all you'll ever want and more editing tools tend to often just teach you how to read/work more slowly... Steve -Original Message- From: James Childers [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 10:50 AM To: Struts Users

Generating HTML with HTML:tags within from xsl

2003-03-03 Thread Clement, Stephen
Having a problem generating html from a XSL transformation which I want to contain Struts html:tags (html:form, html:text,...). I get: javax.servlet.ServletException: javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: org.xml.sax.SAXParseException:

Re: Struts Sub-modules

2003-03-01 Thread Stephen Smithstone
/ -Original Message- From: Stephen Smithstone [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 10:53 AM To: Struts Users Mailing List Subject: Re: Struts Sub-modules James Mitchell or anyone ive just uploaded an example i made to www.skullboxhouse.co.uk/downloads/smt.war

Struts Sub-modules

2003-02-28 Thread Stephen Smithstone
Does any one have a spare simple war that shows off switching modules im having to many problems at the minute :/ if you could email them to [EMAIL PROTECTED] it would be great ta - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: FormFile results in BeanUtils.populate error

2003-02-28 Thread Stephen Smithstone
have u got the encrpt line in your jsp form ?? or what ever it is On Friday 28 February 2003 3:04 pm, Susan Bradeen wrote: I just got through implementing an upload function into my application, which is working perfectly, and now I am trying to incorporate the same upload functionality into

Re: Struts Sub-modules

2003-02-28 Thread Stephen Smithstone
/Struts Evangelist http://www.microsoft.com/struts/ -Original Message- From: Stephen Smithstone [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 9:45 AM To: Struts Users Mailing List Subject: Struts Sub-modules Does any one have a spare simple war that shows off

Re: FormFile results in BeanUtils.populate error

2003-02-28 Thread Stephen Smithstone
no problem susan i make the same mistake on several occasions On Friday 28 February 2003 3:17 pm, Susan Bradeen wrote: No, I forgot that! I made very sure to *not* forget that the first time around, but alas, it slipped my mind this time. It works fine now. Thanks a lot Stephen. Susan

Re: Struts Sub-modules

2003-02-28 Thread Stephen Smithstone
James Mitchell or anyone ive just uploaded an example i made to www.skullboxhouse.co.uk/downloads/smt.war it would be great if u can download and run and help me solve the problem :-) Ta Stephen - To unsubscribe, e-mail

Re: Upload and BeanUtils problem

2003-02-27 Thread Stephen Smithstone
do u have the line html:form action=/SubmitNewDoc.do method=POST enctype=multipart/form-data in your jsp page ? On Thursday 27 February 2003 1:34 pm, Sébastien Col wrote: My purpose is to have an upload working in my application. Here my initial message : I'm trying to get the html:file

Using Struts with Cocoon?

2003-02-26 Thread Clement, Stephen
Anyone used struts with Cocoon? Is it feasible? Is it worth it? How best to do this? -To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: need to display a tree struture in JSP

2003-02-24 Thread Clement, Stephen
If you need to display a tree in html using JSP, I don't think struts will help you out too much there. You can have struts hold the data in some form or other but the difficulty may lie in the displaying of data as there is no standard html tree and expanding/collapsing tree branches could be

RE: [OT] What's your IQ?

2003-02-23 Thread Clement, Stephen
Ok! Everyone step slowly away from their TVs, telephones, faxes and computers and go for a long walk! (save energy and turn them off too!) You're all suffering from too much information, most of which is nonsense! Steve - sometimes i think that everyone in the world is an idiot except you and

sub-applications

2003-02-23 Thread Stephen Smithstone
action type=org.apache.struts.actions.ForwardAction parameter=/module1/index.jsp path=/index / however ever time i issue the toModule.do action is reports back sayin invalid module prefix module1 was specified im usiing struts.1-1_rc1 and ive tried the beta3 as well please help ta Stephen

Anybody have an idea??????????

2003-02-21 Thread Jackson, Stephen
Nobody has responded to my original question. I can't find anything that refers to this... Anybody have a clue about this ( see below ) -Original Message- From: Jackson, Stephen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 3:59 PM To: Struts Users Mailing List (E

RE: Anybody have an idea??????????

2003-02-21 Thread Jackson, Stephen
-Original Message- From: Jackson, Stephen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 21, 2003 11:49 AM To: 'Struts Users Mailing List' Subject: Anybody have an idea?? Nobody has responded to my original question. I can't find anything that refers to this... Anybody have a clue about

RE: Anybody have an idea??????????

2003-02-21 Thread Jackson, Stephen
. Then try to shut down, and take a peak at what is going on with the various threads. That will at least give you some visibility into what is causing the issue (I would guess waiting on some sort of lock) Hope this helps. -Original Message- From: Jackson, Stephen [mailto:[EMAIL

WAR failed to deploy

2003-02-21 Thread Stephen Ting
Whenever i try to access a session beans deploy on JBoss from the struts application deploy on Tomcat in different JVM the following errors occured. If i deploy the struts based application in Tomcat bundle in JBoss there are no problems. Could anyone please help? Regards, Stephen

Re: How stable is struts 1.1 beta 3

2003-02-20 Thread A Stephen
I share the same feeling about cactus , just started using StrutsTestCase and its my new best friend :-) -S - Original Message - From: James Mitchell [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 8:52 AM Subject: RE: How stable is

Multiple resource files with multiple modules

2003-02-19 Thread A Stephen
Greetings, To Access bean:message key=errors.database.foreign.key bundle=GLOBAL/order-tools/ struts config message resource for module /order-tools message-resources parameter=application null=false / message-resources parameter=global null=false key=GLOBAL / My question is

Can't shutdown tomcat 4.1.12 due to struts webapp

2003-02-19 Thread Jackson, Stephen
in the catalina.out file after I execute shutdown.sh. Stopping service Tomcat-Standalone Feb 19, 2003 1:35:22 PM org.apache.struts.tiles.TilesRequestProcessor initDefinitionsMapping INFO: Tiles definition factory found for request processor ''. Thanks for any help, Stephen Jackson

Reloading Message reources without restarting the application

2003-02-15 Thread A Stephen
Greetings, Is there a way to reload the application message resources properties file without restarting the app server? Thank you, -S

Allowing only one user to acces/submit a form

2003-02-15 Thread A Stephen
Greetings, Is there a way to lock a form if the form is in use. The intention is to avoid two users submitting the same form. For example there is an admin page to manage Orders, and only one 'administrator' is allowed to submit the form. Is this possible, or am I hallucinating. Thanks in

Forward new form to new page

2003-02-13 Thread Clement, Stephen
What's the best way to do this? In one action, want to create new form, populate it and have it display in a new page/actions (actually a separate frame). Thanks, Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Have html:text but don't want to submit on return

2003-02-13 Thread Clement, Stephen
How to do this? Thanks, Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Have html:text but don't want to submit on return

2003-02-13 Thread Clement, Stephen
Subject: RE: Have html:text but don't want to submit on return How to do what? If the subject is supposed to be a question, then I don't understand it, and don't think anyone does. -Dave -Original Message- From: Clement, Stephen [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003

RE: Forward new form to new page

2003-02-13 Thread Clement, Stephen
this was a struts question. -Original Message- From: Durham David Cntr 805CSS/SCBE Sent: Thursday, February 13, 2003 10:43 AM To: Struts Users Mailing List Subject: RE: Forward new form to new page RTFM -Original Message- From: Clement, Stephen [mailto:[EMAIL PROTECTED

RE: Forward new form to new page

2003-02-13 Thread Clement, Stephen
Mailing List Subject: RE: Forward new form to new page On Thu, 2003-02-13 at 19:29, Clement, Stephen wrote: RTFM? I realize the I could use javascript or href target to accomplish this but I was looking for a more struts solution. At a point in my action (struts action) instance, I would

1.0.2 with Collection property

2003-02-12 Thread Clement, Stephen
Is it me or does the logic:iterate tag with a Collection property not work in 1.0.2 in such a way as to populate my page and properly submit my form class? I have struggle somewhat with this lately. I can make it work with bean:write's but then changes to my pages won't populate my form class

RE: 1.0.2 with Collection property

2003-02-12 Thread Clement, Stephen
, February 12, 2003 11:25 AM To: Struts Users Mailing List Subject: RE: 1.0.2 with Collection property Can you post a snippet from your JSP? -Original Message- From: Clement, Stephen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 10:19 AM To: [EMAIL PROTECTED] Subject

  1   2   3   >