RE: Newbie looking for resources to learn

2003-09-15 Thread Hue Holleran
As you've seen from other replies google can be a very useful resource - as can: http://marc.theaimsgroup.com/?l=struts-user Try some searches for various topics - I'd recommend the following one, particularly for a tutorial:

RE: Retrieving the ModuleConfig object

2003-09-13 Thread Hue Holleran
I use: mapping.getModuleConfig(); ... but understand this only returns the ModuleConfig info for the current module. Hue. -Original Message- From: Marco Tedone [mailto:[EMAIL PROTECTED] Sent: 13 September 2003 10:28 To: Struts-user-list Subject: Retrieving the ModuleConfig

RE: Session Sharing Feasibility

2003-09-12 Thread Hue Holleran
Hi Mitesh, It will depend on several factors - if all you wish is for the cookie to also be sent to struts then this will automatically be done by the browser if the DOMAIN and PATH properties of the cookie are compatible - i.e. will allow the cookie to be passed to the struts application, e.g.

RE: [OT] Scheduling

2003-09-05 Thread Hue Holleran
Using this method could you not do this in a servlet set in web.xml with load-on-startup? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 01 September 2003 11:58 To: Struts Users Mailing List Subject: RE: [OT] Scheduling Yes, I have done that. But, now

RE: [OT] how to open Postscript file on windows

2003-09-03 Thread Hue Holleran
I think taglibs questions or general java would probably qualify for [OT] but Postscript - come on, get real. It irritates me even more that you obviously haven't even bothered to try google for this: http://www.google.com/search?q=windows+postscript+viewer -Original Message- From:

RE: How to pre-populate - Husted post doesn't work (or I'm implementing it wrong)

2003-09-02 Thread Hue Holleran
Hi David, Try the following explanation: http://marc.theaimsgroup.com/?l=struts-userm=106123062505746w=2 -Original Message- From: David Thielen [mailto:[EMAIL PROTECTED] Sent: 01 September 2003 23:55 To: Struts-Users Subject: How to pre-populate - Husted post doesn't work (or I'm

RE: How to get the url containing anchor from request

2003-09-02 Thread Hue Holleran
Hi Marius, I wondered this too - so I had a look. I think the problem here is more of a HTTP one - if you use netcat - one of my most favouritest tools, available from: http://www.atstake.com/research/tools/network_utilities/ ... and run netcat with the following command: X:\nc

RE: [OT] Scheduling

2003-09-02 Thread Hue Holleran
/ # and logs in /var/opt/net/openAction/wwwCallURL/ # Developed under Debian GNU/Linux 3.0 # Language: bash # Depends: wget, mailx # Copyright 2000-2002 Hue Holleran [EMAIL PROTECTED] # This is free software; see the GNU General Public License version 2 # or later for copying conditions

RE: [OT] Scheduling

2003-09-01 Thread Hue Holleran
Well, possibly not an elegant answer but... 1) Under *nix we've done this with cron and a bash script that invokes wget to launch a servlet process. 2) Under Windows we've used a VBS script via at/winat/Scheduled Tasks and Microsoft.XMLHTTPRequest to initiate a HTTP connection to launch a servlet

RE: [OT] Scheduling

2003-09-01 Thread Hue Holleran
# Copyright 2000-2002 Hue Holleran [EMAIL PROTECTED] # This is free software; see the GNU General Public License version 2 # or later for copying conditions. There is NO warranty. ### # EDIT THIS SECTION TO CHANGE LOG FILE

RE: [OT] Scheduling

2003-09-01 Thread Hue Holleran
Resent because message still hasn't made it to the list! What's going on with posts to this list - some make it in seconds - others take days or never appear? Using this method could you not do this in a servlet set in web.xml with load-on-startup? -Original Message- From: [EMAIL

RE: What is Java Server faces ?

2003-08-29 Thread Hue Holleran
Maybe this: http://marc.theaimsgroup.com/?l=struts-userw=2r=1s=JSF+Java+Server+Faces; q=b -Original Message- From: Madhu Nair [mailto:[EMAIL PROTECTED] Sent: 29 August 2003 08:52 To: Struts Users Mailing List Subject: What is Java Server faces ? Hi, What is java server faces

RE: Struts Tag Question

2003-08-29 Thread Hue Holleran
Hi David, Be aware that struts will use to delimit the href attribute, so try: html-el:link href=javascript:Start('${indexedBean.id}')test/html-el:link Hue. -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: 28 August 2003 22:57 To: Struts Mailing List

RE: Tiles not generating page properly

2003-08-28 Thread Hue Holleran
Hey Carl-Eric, If you're still stuck and you've got a zip file with this cut-down code in it - email it to me at the above email address and I'll try debugging it - as I'm interested to know what the problem is too. I personally still use NetBeans and have the struts source setup so this should

RE: PLEASE HELP with Exception in error.jsp with Tiles

2003-08-28 Thread Hue Holleran
Hi Richard, First things first - ditch 1.4.1 and get 1.4.2 - I've had endless unusual problems with 1.4.1 - except the very latest release - but 1.4.2 seems faster to me as well. Hmmm - lots to look through ... msanger - Microsoft make you that mad, eh? It looks to me like a further exception is

RE: HibernatePlugIn for struts (a few questions)

2003-08-27 Thread Hue Holleran
Hi Bill, Not related to your Hibernate queries - but I'd also recommend you evaluate (if you've not already done so, of course!) iBATIS. The homepage is at: http://www.ibatis.com/ ... and Rick has written an excellent worked example on getting iBATIS working with Struts that really

RE: tiles: condition in tile definition

2003-08-27 Thread Hue Holleran
As you've probably found-out this syntax does not work in tiles-defs.xml(!) ... but a similar result can be achieved in a definition in a JSP page. One option may be to define your loginform attribute as say, mainForm.jsp that could then use el (or logic) tags to determine which jsp to include.

RE: J2EE IDE

2003-08-27 Thread Hue Holleran
This has been asked a few times previously. Search the list at: http://marc.theaimsgroup.com/?l=struts-user Here are a few links to get you going: http://marc.theaimsgroup.com/?l=struts-userm=105553549210511w=2

RE: Problem converting from Struts tags to JSTL

2003-08-27 Thread Hue Holleran
Try the User Guide: http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act ion_form_classes -Original Message- From: Kevin A. Palfreyman [mailto:[EMAIL PROTECTED] Sent: 27 August 2003 10:05 To: [EMAIL PROTECTED] Subject: Problem converting from Struts tags to

RE: Problem converting from Struts tags to JSTL

2003-08-27 Thread Hue Holleran
work either. I think the problem is with the nested evaluation - combining the scriptlet and the EL. Any other ideas? Kev -Original Message- From: Hue Holleran [mailto:[EMAIL PROTECTED] Sent: 27 August 2003 10:21 To: Struts Users Mailing List Subject: RE: Problem

RE: Forwarding to existing Servlet

2003-08-27 Thread Hue Holleran
Never tried this! Depending what the existing servlet is doing - can you not just instantiate the servlet and call the servlet's doGet method with the request and response arguments passed to the action. You can put any arguments you need (that would've been passed from the browser) into request

RE: tile definition name in the action class

2003-08-27 Thread Hue Holleran
mapping.findForwardConfig(found).getPath() -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 27 August 2003 14:30 To: Struts Users Mailing List Subject: tile definition name in the action class Is it possible to get the tiles-definition name inside the

RE: Problem converting from Struts tags to JSTL

2003-08-27 Thread Hue Holleran
, Kev -Original Message- From: Hue Holleran [mailto:[EMAIL PROTECTED] Sent: 27 August 2003 13:20 To: Struts Users Mailing List Subject: RE: Problem converting from Struts tags to JSTL Hi Kev, Sorry - I missed the fieldName being dynamic bit(!). I think you may want

RE: tile definition name in the action class

2003-08-27 Thread Hue Holleran
mapping.findForward(found).getPath() -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 27 August 2003 14:30 To: Struts Users Mailing List Subject: tile definition name in the action class Is it possible to get the tiles-definition name inside the

RE: How to get a String object from request scope.

2003-08-27 Thread Hue Holleran
struts-bean: bean:write name=MY_NAME / or JSTL: c:out value=${MY_NAME} / -Original Message- From: Fumitada Hattori [mailto:[EMAIL PROTECTED] Sent: 27 August 2003 17:02 To: [EMAIL PROTECTED] Subject: How to get a String object from request scope. Hi gurus. I

RE: [OT] A date utility? anyone, pls help

2003-08-26 Thread Hue Holleran
I read a lot about BigDate - but it's shareware @ $10, I think. Never had to use it myself but here's the link: http://mindprod.com/jgloss/bigdate.html#BIGDATE There is also a very good tutorial on dates (see Computer Dating link), here:

RE: Horizon: a view management plugin

2003-08-22 Thread Hue Holleran
I must confess to being a bit confused! What is the difference between your approach and getting an instance of a Dyna, viz: DynaActionFormClass dafc = DynaActionFormClass.getDynaActionFormClass(Dyna-Definition-Name-In-Struts-C onfig); DynaActionForm myBean = (DynaActionForm)

RE: Setting a Welcome File + Tiles + PreCompiled JSP's

2003-08-21 Thread Hue Holleran
Use the HTML META ... tag? HTML HEAD META HTTP-EQUIV=Refresh CONTENT=0;URL=/myapp/do/myaction /HEAD BODY/BODY /HTML Or, alternatively if you want to use window.onLoad - checkout the source on IE's error page that does this pretty effectively by extracting the server information from

RE: html:link and tiles definitions

2003-08-20 Thread Hue Holleran
I posted a (long) reply to this recently with code, see: http://marc.theaimsgroup.com/?l=struts-userm=106096350227227w=2 (look towards the end - there is a generic action class that forwards to a tiles def - you only need one generic action) Let me know if that does not solve your problem.

RE: html:link and tiles definitions

2003-08-20 Thread Hue Holleran
me ? Koen -- - Original Message - DATE: Wed, 20 Aug 2003 12:14:19 From: Hue Holleran [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED],[EMAIL PROTECTED] Cc: I posted a (long) reply to this recently with code, see: http://marc.theaimsgroup.com/?l

RE: html:link ,tiles definitions, DefinitionDispatcherAction

2003-08-20 Thread Hue Holleran
You need an actionform - look at the original code. -Original Message- From: koen boutsen [mailto:[EMAIL PROTECTED] Sent: 20 August 2003 15:10 To: Struts Users Mailing List Subject: RE: html:link ,tiles definitions, DefinitionDispatcherAction I have my previous problem solved.

RE: html:link ,tiles definitions, DefinitionDispatcherAction

2003-08-20 Thread Hue Holleran
Sorry - ignore my last - this email was sent accidentally before I'd finished reading your email. -Original Message- From: Hue Holleran [mailto:[EMAIL PROTECTED] Sent: 20 August 2003 17:28 To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: html:link ,tiles definitions

RE: mesage message account

2003-08-19 Thread Hue Holleran
How can we miss you if you won't go away? -Original Message- From: object worlds [mailto:[EMAIL PROTECTED] Sent: 19 August 2003 14:42 To: [EMAIL PROTECTED] Subject: mesage message account Did you take my message message account off the list ? Is that because that white shit

RE: Help or tutorial

2003-08-18 Thread Hue Holleran
I'd definitely recommend Rick Reumann's Struttin' with Struts at: http://www.reumann.net/ Hue. -Original Message- From: Arindam Bhattacharjee [mailto:[EMAIL PROTECTED] Sent: 18 August 2003 11:14 To: [EMAIL PROTECTED] Subject: Help or tutorial Hi All, I am a newbie

RE: DynaActionForms and html:text tags

2003-08-18 Thread Hue Holleran
How are you accessing your page - if you're calling the jsp direct then then struts will not have the opportunity to put the bean into scope for you? Hue. -Original Message- From: Louise Pryor [mailto:[EMAIL PROTECTED] Sent: 18 August 2003 11:29 To: Struts Users Mailing List

RE: DynaActionForms and html:text tags

2003-08-18 Thread Hue Holleran
:33 To: Dirk Markert; Struts Users Mailing List; Hue Holleran Subject: Re: DynaActionForms and html:text tags On Monday, August 18, 2003 at 12:25:38 PM, Dirk Markert wrote: DM Hello Louise, DM what's the action and its mapping you are using to forward to your DM jsp containing DM

RE: alternative to hidden?

2003-08-18 Thread Hue Holleran
A sort-of server-side control state ... hmmm - scarey. A better option might be to incoporate all the state in a hidden field in the form that can be added by a tag lib - a la .NET _VIEWSTATE and then re-created when the form is submitted. I can think of lots of concerns with what you describe -

RE: where is JSESSIONID?

2003-08-16 Thread Hue Holleran
If you wish to see struts' cookies in the browser - then the easiest way is to use Mozilla (http://www.mozilla.org/). After browsing your struts app then use the following mechanism to find the cookie that is being used: Moz: Edit... Preferences... Privacy Security / Cookies Select Manage Stored

RE: persisting session id

2003-08-16 Thread Hue Holleran
Well, one option I can think of would be to send a non-per session cookie (with an EXPIRES attribute) - you probably will need to disable tomcat from sending cookies as sending 2 JSESSIONID cookies will probably confuse the browser! (this is configured in Tomcat with cookies=false attribute in the

RE: Global Forwards and Tiles

2003-08-15 Thread Hue Holleran
Hi David, I think the fundamental problem here is that global-forwards are not available to be called from outside the server. If one considers the URL one might use to call global-forwards, e.g.: http://myHost/myApp/myForward ... then this will not be passed-to struts - and will

RE: [OT] Interesting JSF info

2003-08-14 Thread Hue Holleran
Sorry, long reply. My first thoughts on JSF were that it looked really powerful and was a blast of fresh air. I think it's an excellent idea to have the ability to define controls and then have them rendered in a manner suitable for the target device with pluggable renderers. My only concern was

RE: Netscape vs. IE link problem

2003-08-14 Thread Hue Holleran
Hi, You may want to be using an html:link ... as opposed to a direct a tag. If you look at the source of the page (in either browser would be fine - you'll likely find it is a relative link, e.g. a href=myFwdPress Me!/a If you create this as a path from the root, e.g. a

RE: Resin and struts 1.1 Final tiles error

2003-08-14 Thread Hue Holleran
What does resin give when intialising the webapp as opposed to TC - particularly look for (or absence of) a line like: INFO: Tiles definition factory loaded for module ''. Are any errors thrown when the tiles definition factory should be initialised? Posting the output from resin would help.

RE: Deployment of Struts App in Linux/Tomcat

2003-08-14 Thread Hue Holleran
André, It does depend on quite a few factors, if you're able to provide some info on the following someone here may be able to help: 1) What version of tomcat? i.e. 4.0.x, 3.x, 4.1.x? 2) Does tomcat serve pages correctly now, i.e. what does browsing to the following URL give (replace 127.0.0.1

RE: another question to tiles

2003-08-14 Thread Hue Holleran
Reinhard, What you are asking - I do not believe to be straightforward and I have not seen any sample code showing how to do this. I have often considered doing this and remember a few posts from Cedric on this topic, the following one in particular:

RE: [OT] Resin does not work with Struts 1.1 Final

2003-08-14 Thread Hue Holleran
Barry, As I replied to your previous post - you really do need to include the output of the resin log on startup. -Original Message- From: Barry Volpe [mailto:[EMAIL PROTECTED] Sent: 08 August 2003 22:33 To: Struts Users Mailing List Subject: [OT] Resin does not work with Struts 1.1

RE: Apache Tomcat web servers

2003-08-14 Thread Hue Holleran
Hi yan, Memset support only the virtual server. They are well versed in Linux - RH and Debian certainly and they're bright guys from what I've seen. They provide unmetered bandwidth on a shared connection and you can install whatever you want to install. I'm sure they'll help you with Apache -

RE: Welcome.do;jsessionid=C36048429636E35FB1ECAA5978E23132 [Solved for me]

2003-08-12 Thread Hue Holleran
I had the same problem and sorted it thus: 1) Create a new page, say index_entry.jsp with the following content (it is assumed your previous entry point was index.jsp): HTML HEADMETA HTTP-EQUIV=Refresh CONTENT=0;URL=index.jsp/HEAD BODY/BODY /HTML (Ok, if you have a particularly complex app

RE: Apache Tomcat web servers

2003-08-10 Thread Hue Holleran
Hi yan, I would be inclined to keep-away from ISPs who do not have good and *extensively* proven experience with JSP and only go with those who are specifically recommended to you for JSP. I fell-out with a UK-based ISP (servers hosted in the US/Canada) in the last 6 months after

RE: Apache Tomcat web servers

2003-08-10 Thread Hue Holleran
tomcat online with unlimited traffic, and he got hacked somehow - he said he had unwittingly left some exploit in RedHat open - the cracker got in and used the bandwidth solid for 18 hours before he discovered it. Cost him 2 grand - eek! Adam Hue Holleran wrote: Hi yan, I would

RE: Avoiding jsessionid appending in a redirect

2003-08-10 Thread Hue Holleran
Hi Chris, I posted a response to this recently: http://marc.theaimsgroup.com/?l=struts-userm=106018678002719w=2 -Original Message- From: Chris Boulter [mailto:[EMAIL PROTECTED] Sent: 06 August 2003 19:27 To: [EMAIL PROTECTED] Subject: Avoiding jsessionid appending in a redirect

RE: Tiles status and feature suggestion WAS accessing Attribute of a parent-tile-definition

2003-08-06 Thread Hue Holleran
Hi Richard, Please see below... -Original Message- From: Richard Tomlinson [mailto:[EMAIL PROTECTED] Sent: 06 August 2003 10:58 To: [EMAIL PROTECTED] Subject: Tiles status and feature suggestion WAS accessing Attribute of a parent-tile-definition 2. Is tiles considered a

RE: struts-el example app not working?

2003-07-31 Thread Hue Holleran
Yep, I've been bitten by this one too. There are a few workarounds: 1) Change the JSP compiler to not compile JSPs: http://marc.theaimsgroup.com/?l=struts-userm=105334711431267w=2 2) Workaround by Brian Cross (at end of this thread) - this works well for us:

RE: Design Question - same action, many jsps/views

2003-07-28 Thread Hue Holleran
Hi Brian, Why not use different named forwards for the action and access each one from the action with a: { ... return (mapping.findForward(page1/page2/page3)); } In s-c: action path=/myAction type=FQ Class name=bean ... forward name=page1 path=/page1.jsp/ forward name=page2

RE: Design Question - same action, many jsps/views

2003-07-28 Thread Hue Holleran
have to do this I think, which might make it a better solution. What do you think? I'm not sure though, and thanks very much for the help. Brian -Original Message- From: Hue Holleran [mailto:[EMAIL PROTECTED] Sent: 28 July 2003 16:11 To: Struts Users Mailing List Subject: RE

RE: Simple Tiles question

2003-07-24 Thread Hue Holleran
Erez, Tiles are included in the HTML page like any other 'fragment' - the resultant HTML needs to be properly formed. If the outermost tile or page already has html etc. then the included tiles should not have this - so yes - you need to remove this. For simplicity my tiles are normally

Re: Tiles attributes in jsp tags problems

2003-07-23 Thread Hue Holleran
Try: tiles:useAttribute name=division classname=java.lang.String / ... jsp:param name=division value=%=division% / Or alternatively use EL. H. Hi all, I changed from using the HTML embed tag to using the jsp:include tag to embed a applet in a webpage. The problem however is that since I'm

RE: redirect users after x-minutes?

2003-06-07 Thread Hue Holleran
I'm not sure I understand - but I think this may be more of a 'limitation' with HTML rather than particularly with tiles. A page composed of tiles is still just 1 complete HTML page. If you want to redirect any part of it I think you will need to consider using frames or iframes that has its own

RE: tiles:getAsString within bean:message?

2003-06-04 Thread Hue Holleran
I think this may what you're after? http://marc.theaimsgroup.com/?l=struts-userm=104777946004100w=2 -Original Message- From: Mick Knutson [mailto:[EMAIL PROTECTED] Sent: 03 June 2003 19:42 To: [EMAIL PROTECTED] Subject: tiles:getAsString within bean:message? I am trying,

RE: tiles:getAsString within bean:message?

2003-06-04 Thread Hue Holleran
see below -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent: 03 June 2003 20:56 To: 'Struts Users Mailing List' Subject: RE: tiles:getAsString within bean:message? Try something like this: Template.jsp: ... tiles:insert attribute='menu'

RE: tiles:getAsString within bean:message?

2003-06-04 Thread Hue Holleran
I though the answer may be in the thread - link sent to you, previously: In menu.jsp: tiles:useAttribute name=title classname=java.lang.String / ... bean:message key=%=title% / Does this not work? See also other msgs on thread rgding using el. el is a better approach but may not fit as well if

RE: struts tags vs jstl

2003-06-03 Thread Hue Holleran
See below: -Original Message- From: Nathan Coast [mailto:[EMAIL PROTECTED] Sent: 03 June 2003 07:15 To: Struts Users Mailing List Subject: Re: struts tags vs jstl thanks so, if I understand it right. you would use c:forEach items= rather than logic:iterate name=... and

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

2003-03-26 Thread Hue Holleran
I'm in Cambridge, UK - not that near to Manchester but I do find myself out-and-about around the UK a lot - if it were nearer to Birmingham I'd be interested - anyone else nearer to Cambridge in the UK? H. -Original Message- From: Chris May [mailto:[EMAIL PROTECTED] Sent: 26 March 2003

RE: Good Combination

2003-03-20 Thread Hue Holleran
1) Struts alone As in benefits of struts versus no struts - maybe try: http://jakarta.apache.org/struts/ 2) Struts with tiles http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED] he.orgmsgId=658517 3) Struts with Sitemesh Never used it, sorry. -Original Message- From:

RE: [OT] Meeting in Paris this Saturday

2003-03-20 Thread Hue Holleran
Who gives a (word removed) if Cedric is going to be in a bookstore this Saturday? I was being sarcastic, not inflammatory, in the traditional hacker sense. I do - and probably some others who subscribe to this list - who will be in Paris and who may be interested in having a face-to-face

RE: [Q] Accessing struts-tiles attribute in a bean?

2003-03-17 Thread Hue Holleran
:02 To: 'Struts Users Mailing List' Subject: RE: [Q] Accessing struts-tiles attribute in a bean? Yeah, I'm exacly the same with Velocity. It is clean as a whistle, but I've gotta have my Tiles :) Scott Barr www.exergonic.com.au On Mon, 2003-03-17 at 04:49, Hue Holleran wrote: Not sure

RE: [Q] Accessing struts-tiles attribute in a bean?

2003-03-17 Thread Hue Holleran
been trying to get to grips with Tiles, can anyone point me to some resources, there seems to be a lack of information available on them. Thanks Kola -Original Message- From: Hue Holleran [mailto:[EMAIL PROTECTED] Sent: 17 March 2003 08:16 To: 'Struts Users Mailing List'; [EMAIL

RE: [Q] Accessing struts-tiles attribute in a bean?

2003-03-17 Thread Hue Holleran
code and try some examples before posting again. H. -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: 17 March 2003 09:31 To: Hue Holleran Cc: 'Struts Users Mailing List'; [EMAIL PROTECTED] Subject: Re: [Q] Accessing struts-tiles attribute in a bean? Hue Holleran wrote

RE: [OT] Learning Curve Management or Confusions of a Newbie

2003-03-17 Thread Hue Holleran
Hi Jeff, I read with interest your comments on the above. I think Rick Reumann has done a great example recently of a 'walkthrough' which I presume you'll have seen: Struttin' with Struts: http://www.reumann.net/do/struts/main I agree entirely with your comments - I'm

RE: [Q] Accessing struts-tiles attribute in a bean?

2003-03-16 Thread Hue Holleran
Not sure of 'best' way to this but I think this may work: tiles:useAttribute name=booboo classname=java.lang.String / ... bean:message key=%=booboo% / Yes, I agree tiles is great - been looking at Velocity again just recently but I just don't think I could live without tiles now. There always

RE: BaseBean questions [was] [ANN] Struttin' With Struts beta (newbies esp. welcome)

2003-03-13 Thread Hue Holleran
Maybe you should be doing Vic's labs, Rick ;- I loved the walkthroughs BTW - it is particularly useful to have worked examples of various concepts - this can save literally hours by having a working example - particularly with new bits one may not have used previously, i.e. all of it is

RE: TILES - Network Traffic...

2003-03-05 Thread Hue Holleran
. Thanks for your views Cheers Puneet - Original Message - From: Hue Holleran [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED]; 'Puneet Agarwal' [EMAIL PROTECTED] Sent: Monday, March 03, 2003 6:22 PM Subject: RE: TILES - Network Traffic... Please don't flame - I'm

RE: TILES - Network Traffic...

2003-03-03 Thread Hue Holleran
Please don't flame - I'm not trying to start a tiles vs frames debate. If bandwidth is absolutely critical then you may want to consider (shock! horror!) frames or use inline IFrames. Tiles is great but will produce a bit of extra output over frames as it will generally be used to render the

RE: websites that use Struts..

2003-02-26 Thread Hue Holleran
UK's National Lottery by the looks of it uses struts: http://www.national-lottery.co.uk (BTW just tried and it refuses to connect from Mozilla - it always used to) NB: I don't know this for sure but it looks like struts, i.e. it uses .do for actions, runs on IBM web server and pages are .jsp

RE: Tiles... When to use?

2003-02-24 Thread Hue Holleran
http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED] he.orgmsgId=658517 -Original Message- From: Amit Keshav Kulkarni [mailto:[EMAIL PROTECTED] Sent: 24 February 2003 04:28 To: Struts Users Mailing List Subject: Tiles... When to use? Hi I have a web application in which I need to have a

[OT] RE: Sell me on tiles

2003-02-24 Thread Hue Holleran
(apologies if you've already seen this but it did not seem to appear on the list - almost positively user error - but attached again). Hi Olivier, I notice, actually in tiles examples, specifically: tiles-documentation/layouts/vboxLayout.jsp ... there is a note that don't use iterate

RE: [TILES] Foxy Tiles Problem

2003-02-24 Thread Hue Holleran
Hi Peter, I'm not sure I fully understand but we're using ... template layout within templates layout? successfully and I think this is necessary for all but the simplest tiles layouts. Indeed, tiles examples have used this mechanism a lot and appears the only way of using layouts within layouts.

RE: NPE, webapp broken after moving to 1.1-rc1

2003-02-24 Thread Hue Holleran
It seems to be related to the html/html-el:form... tag in the JSP could you post this part of the JSP? H. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: 24 February 2003 15:44 To: '[EMAIL PROTECTED]' Subject: NPE, webapp broken after moving to 1.1-rc1 This

RE: [OT] RE: microsoft .doc struts

2003-02-19 Thread Hue Holleran
-106.ibm.com/developerworks/xml/library/x-tiprtfg.html Best of luck, H. -Original Message- From: Andy Richards [mailto:[EMAIL PROTECTED]] Sent: 19 February 2003 08:46 To: Hue Holleran Cc: 'Struts Users Mailing List' Subject: RE: [OT] RE: microsoft .doc struts Thanks hue, This shall

RE: Sell me on tiles

2003-02-19 Thread Hue Holleran
I appreciate you've had lots of replies already - but tiles was the killer feature for us in selecting struts. Please don't misunderstand that struts isn't great anyway - we love it - but the addition of tiles has made developing complex websites a breeze. There is a very outdated first-cut of

[OT] RE: Sell me on tiles

2003-02-19 Thread Hue Holleran
Choice of colours was the customer's - they picked colours they felt would be eye-catching (damaging) (!) You should all feel great as struts developers - although this will not be surprising to the initiated - to know you've completely usurped Microsoft ASP and the shiny new Microsoft ASP.NET as

RE: [OT] RE: Sell me on tiles

2003-02-19 Thread Hue Holleran
at all, and i've tried both IE and Mozilla. -Original Message- From: Hue Holleran [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 10:20 AM To: 'Struts Users Mailing List' Subject: [OT] RE: Sell me on tiles Choice of colours was the customer's - they picked colours they felt

RE: [OT] RE: Sell me on tiles

2003-02-19 Thread Hue Holleran
: David Graham [mailto:[EMAIL PROTECTED]] Sent: 19 February 2003 17:45 To: [EMAIL PROTECTED] Subject: RE: [OT] RE: Sell me on tiles Why do you need special stuff for Opera? Opera suppports the w3c standards more closely than the other browsers. David From: Hue Holleran [EMAIL PROTECTED] Reply

RE: [OT] RE: Sell me on tiles

2003-02-19 Thread Hue Holleran
PROTECTED] Subject: RE: [OT] RE: Sell me on tiles If it looks ok in Opera, then it will look ok in the other browsers. Maybe you should test in Opera first ;-). David From: Hue Holleran [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL

[OT] RE: microsoft .doc struts

2003-02-18 Thread Hue Holleran
Hi Andy, I've looked through the thread and can't see specifically what you're trying to do but we had exactly the same problem and was solved using RTF, thus: (this was for submission of documents to a UK government body that needed to be in MS Word .DOC format - they were able to open these

RE: [OT] RE: microsoft .doc struts

2003-02-18 Thread Hue Holleran
this method work with images?, if so i think this is the route i will have to take. Regards Andy On Tue, 2003-02-18 at 15:36, Hue Holleran wrote: Hi Andy, I've looked through the thread and can't see specifically what you're trying to do but we had exactly the same problem and was solved

RE: Tiles Portal

2003-01-30 Thread Hue Holleran
Hi Jay, I've not actually done exactly what you're asking, however it would seem to me quite straightforward to determine the url that was used to access the site using: String cURL = request.getParameter(url); You could then use string extraction techniques to get the portion of the

RE: Tiles newbie

2002-11-21 Thread Hue Holleran
Yes, we were using Tiles (just) before Struts - and then went to use Struts+Tiles. The only aspect AFAIK that will not be available is using Tiles as Struts forwards. There was also a thread about using Tiles with Struts 1.0.2 - try ng apache.struts on news server news.basebeans.net and look for

RE: html:link question

2002-11-11 Thread Hue Holleran
$ControlRunnable.run(ThreadPool.jav a:533) at java.lang.Thread.run(Thread.java:484) I've been trying different things and now I'm getting it on welcome ... it's going from bad to worse. Thanks, Mike -Original Message- From: Hue Holleran [mailto:hueh;softwareskills.net] Sent: Friday, November 08

RE: html:link question

2002-11-08 Thread Hue Holleran
As you say welcome works fine, your syntax looks fine. However the error message is a bit strange and doesn't correspond to the name of the forward or of the action! All I can really think of - we find ourselves in this situation a lot by the way and it's always our fault if that's any

RE: Merging Tiles body into tile definition

2002-11-08 Thread Hue Holleran
Sorry if this is lame, do you need a direct=true on the tiles:put name=body ... never tried doing this but I assume you're using a tiles:insert... not a tiles:getAsString... in the template so you may need to indicate direct here? Hue. -Original Message- From: Brian Topping

RE: html:link question

2002-11-08 Thread Hue Holleran
Message- From: Hue Holleran [mailto:hueh;softwareskills.net] Sent: Friday, November 08, 2002 10:41 AM To: 'Struts Users Mailing List' Subject: RE: html:link question As you say welcome works fine, your syntax looks fine. However the error message is a bit strange and doesn't correspond to the name

[OT] RE: Entire Struts Mail Archive

2002-11-07 Thread Hue Holleran
Sorry to perpetuate something that could be construed to be OT... but I'd like to chip-in with my 2p worth if that's OK. As relatively very new users to Struts we have found getting up-to-speed with Struts more difficult than we originally envisaged - probably due to being used to being spoon-fed

[Tiles] Tiles vs. Custom Tag - anyone have a view?

2002-11-06 Thread Hue Holleran
We've been using tiles extensively in an app and it has been extremely effective - as one might expect for including tiles of information on a page and consolidating standard layout into templates - however I'm concerned that we might be going too far in its use... and using it where we might

RE: WebLogic/Struts/JSP performance woes...

2002-11-02 Thread Hue Holleran
I do not think even Client/Server could do this nicely. Have you ever seen anyone else put out an application in any design that has 2000 rows? In a word, Yes. We had a client - system went live over 2 years ago using IIS on an Intranet as it happens. Client had 600 branches UK wide, with = 10

RE: null pointer exception in tiles-documentation/examples/summariesTabs.jsp

2002-11-01 Thread Hue Holleran
It was the 21/10/2002 nightly build that we used. Hue. -Original Message- From: Zsolt Koppany [mailto:zk;intland.com] Sent: 01 November 2002 09:18 To: Struts Users Mailing List; Hue Holleran Subject: Re: null pointer exception in tiles-documentation/examples/summariesTabs.jsp Hi Hue

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Hue Holleran
Hi Davide, I'm pretty sure what you're seeing is browser-related, if you are flushing the output periodically from the server: Nat and James have already stated, tables will _likely_ not render until the width of all columns are known ... sometimes the table _will_ progressively render and then

RE: [OT] Run Java App as a Win Service

2002-11-01 Thread Hue Holleran
Hi Mark, There may be another way but I like SrvAny that has served us well - a really nice example of getting and using is given here: http://yakko.bme.virginia.edu/lab/mercury_as_service.htm Basically you run InstSrv.exe - using SrvAny.exe to create the service - hack the registry and the

RE: 2 temp positions available

2002-11-01 Thread Hue Holleran
Hi Tim, Which country? -Original Message- From: Tim Dysinger [mailto:struts;dysingers.com] Sent: 01 November 2002 23:17 To: [EMAIL PROTECTED] Subject: 2 temp positions available Hello, I need two full time Struts/J2EE resources for the next two months. If you need some work and know

RE: tiles definition doesn't work, config looks correct, am baffled

2002-10-31 Thread Hue Holleran
Hi Alayne, From one tiles newbie to another... The general format of the action... for tiles is shown below: action-mappings !-- Action mapping for profile form -- action path=/profileInput type=com.caraveltech.ex2.ProfileAction name=profileForm

  1   2   >