RE: max file size - validator - javascript

2005-01-24 Thread John McCosker
Its to do with the browser security manager, in i.e. anyway, you can't script the File field in any fashion with regards to file location, size etc.. You'll need to write an applet and do some io to do the checking if you need to validate client side. In Netscape their are ways round this with sp

RE: getting tiles to work

2005-01-12 Thread John McCosker
rendered now, instead when I view source it is, " rel="stylesheet" type="text/css"> -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: 12 January 2005 12:05 To: 'Struts Users Mailing List' Subject: getting tiles to work hi, just try

getting tiles to work

2005-01-12 Thread John McCosker
hi, just trying to configure my application here so it can use tiles, however I have been running into some difficulties, I managed to get round them and now my result is any empty response. I redirect to my base jsp page from my Action, contents of base jsp template eReportDesktop.jsp -

RE: setting image dom properites with

2005-01-10 Thread John McCosker
I seem to be getting these mixed up, im using the org.apache.strutsel.taglib.html.ELImgTag bean, and the property name does exist, I wonder if I should be declaring these in my properties file. -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: 10 January 2005 14:20

setting image dom properites with

2005-01-10 Thread John McCosker
Hi, this what I am trying to achieve, I want to name the images so I can get at specifically in javascript with looping through all document.images, however when I do this I get this error, javax.servlet.ServletException: Cannot find bean spacerBody1 in any scope I checked the struts-html-el.tl

RE: accessing bean properties in a jsp

2005-01-10 Thread John McCosker
BeanUtils.copyProperties(sb, scv); session.setAttribute("cookieSession", sb); request.setAttribute("clientSession",sb); Hopefully this help. Shed. -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 6:49

accessing bean properties in a jsp

2005-01-10 Thread John McCosker
Hi, I am a struts newbie, I am trying to access a bean in my jsp page like this, I validate and then set the bean in my action, package com.neo.five.ereports; import org.apache.struts.action.Action; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping;

RE: Conditional forward to target page on form submittal

2004-12-10 Thread John McCosker
Hi, its a javascript and DOM task from what I'm reading. if its ie frames or iframes can be accessed by, document.frames[frameName].location.href = url; -Original Message- From: David Bolsover [mailto:[EMAIL PROTECTED] Sent: 10 December 2004 13:35 To: Struts Users Mailing List Subject: R

RE: Transmission of a session using jsessionID

2004-12-09 Thread John McCosker
>>is there any other way to share session between two >> different web application. I really need to do this... Just my 2 cents, which ever application creates the session, you could create a unique indentifier, store it in a dsn, then write indentifier to url for all inetractions with application

RE: SEVERE: reflection:

2004-11-15 Thread John McCosker
hi, I changed my validation.xml, rebuilt the project, deployed to tomcat, deleted cache, restarted server, unfortunately I get the same stack trace error. My Bean still gets called which connects to the dsn for actual existence of username and password, but it was doing that before anyway. http:

SEVERE: reflection:

2004-11-15 Thread John McCosker
Hi, new to struts, I am slowly getting there, beginning to really understand the architecture and loving it, except errors are slowing me down a little, I am looking at plugin's at the moment, I have a class called LoginForm and it extends ValidatorForm, its very basic, My LoginForm class origina