redirecting to fully qualified hostname

2004-01-13 Thread Fullam, Jonathan
place. How can I have all requests to the original hostname http://serverName/webapp be redirected to http://serverName.mycompany.com/webapp ? Is there anybody out there that has experienced this or knows of a better way to work around this issue? Thanks in Advance, Jonathan

RE: URGENT - Help defending Struts

2003-12-18 Thread Fullam, Jonathan
www.verizonwireless.com -Original Message- From: Ben Anderson [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 10:53 AM To: [EMAIL PROTECTED] Subject: RE: URGENT - Help defending Struts http://www.paychex.com/demos/s125/index.html you can't directly access it, because it's a

RE: Help on form reset

2003-12-17 Thread Fullam, Jonathan
No, the reset method will automatically be called on a Session scoped ActionForm upon each request. Request scoped ActionForms are newly instantiated upon each request so, with Request scoped ActionForms, the reset method is irrelevant. -Jonathan -Original Message- From: vasudevrao gupta

RE: Struts internal error

2003-12-17 Thread Fullam, Jonathan
org.apache.commons.beanutils.MappedPropertyDescriptor -Jonathan -Original Message- From: Julien Martin [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 12:53 PM To: Struts Users Mailing List Subject: Struts internal error Hello, I am working on a fairly complex application and I am running into a struts internal error

RE: Login Security

2003-12-16 Thread Fullam, Jonathan
and add it to a list of invalid IP address with their times of entry. Then upon a new request, you will have to check the list and determine how long ago the IP address was added. I'm just brainstorming here so anybody can criticize these suggestions freely. -Jonathan -Original Message- From

RE: question on DynaActionForm

2003-12-15 Thread Fullam, Jonathan
as in: DynaActionFrom rf = (DynaActionForm) form; Also, you will need to access the data in rf differently now... rf.get(Name of property); -Jonathan -Original Message- From: Anderson, James H [IT] [mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 9:52 AM To: Struts Users

RE: [OFF TOPIC] STRUTS PROGRAMMER JOB.

2003-12-11 Thread Fullam, Jonathan
jobs are real easy to get and starting salaries are anywhere from 150K to 350K per year. -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2003 3:23 PM To: [EMAIL PROTECTED] Subject: Re: [OFF TOPIC] STRUTS PROGRAMMER JOB. $4.75?! Dang, I am

RE: When HashMap will replace ActionForm ?

2003-12-10 Thread Fullam, Jonathan
That's where a map-backed Hashmap is useful. -Original Message- From: Antony Paul [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 6:02 AM To: Struts Users Mailing List Subject: Re: When HashMap will replace ActionForm ? I know that but one have to define 10 to 30 elements

RE: 'Module scoped' variables

2003-12-10 Thread Fullam, Jonathan
Not sure if it's exactly what you want but I know you can use the parameter attribute of the action tags to specify a value that is accessible using mapping.getParameter() from withing you Action class. action ... ... parameter=someValue/ -Jonathan -Original Message

RE: Tag for adding no-cache header.

2003-12-10 Thread Fullam, Jonathan
Setting the nocache in the web.xml has actually been deprecated. A better solution for you is to set the nocache header as an attribute inside the controller element of you struts-config file. -Jonathan -Original Message- From: Trieu, Danny [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: 'Module scoped' variables

2003-12-10 Thread Fullam, Jonathan
to configure extra module-scoped variable. -Jonathan -Original Message- From: Lawrence Williams [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 11:35 AM To: Struts Users Mailing List Subject: RE: 'Module scoped' variables Thanks Jonathan, That's kind of the half solution I

RE: Tabbed menus using Tiles

2003-12-10 Thread Fullam, Jonathan
Look into using the struts-menu libraries. It contains tabbed menus. http://raibledesigns.com/wiki/Wiki.jsp?page=StrutsMenu -Jonathan -Original Message- From: Gopal Venkata Achi [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 3:36 PM To: Struts Users Mailing List Subject

[OT] - Login Application

2003-12-09 Thread Jonathan Hawkins
to advancement in their membership. Should the shopping cart (or any other app that needs to calculate price) be responsible for getting the price index vs. the login getting it? Has anyone had a similar situation and if so, how did you solve it? Thanks in advance, Jonathan Hawkins Web Programmer

Help Migrating from WebTier to Struts

2003-12-05 Thread Jonathan . Crain
: class org.apache.jsp.index_jsp ViewController vc = new ViewController(request, response, pageContext); ^ Any information would be greatly appreciated! Thanks in advance, Jonathan Crain City of Austin Internet Operations Communications and Technology Management Office

RE: How do I combine tiles and pre-populated forms?

2003-12-04 Thread Fullam, Jonathan
-populate your form in the ViewSystemProperties action. return mapping.findForward(success); -Jonathan -Original Message- From: Glanville, Jay [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 11:02 AM To: Struts User List Subject: How do I combine tiles and pre-populated forms

RE: How do I combine tiles and pre-populated forms?

2003-12-04 Thread Fullam, Jonathan
Sorry...I replied before I received this response. -Original Message- From: Greg Reddin [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 2:47 AM To: Struts Users Mailing List Subject: Re: How do I combine tiles and pre-populated forms? Jay, Use the first action mapping, but

Subclassing ActionServlet

2003-12-04 Thread Fullam, Jonathan
All, I need to check the Session for an authenticated user before most requests. To do this I subclassed ActionServlet and only call super(request, response) upon verification that authenticated user is in the Session. if (request.getRequestURI().endsWith(welcome.do) |

RE: Why isn't an ActionForm just a Map?

2003-12-03 Thread Fullam, Jonathan
One guess would be because then you would lose some of the methods which provide more functionality than just a TransferObject provides. Such methods are validate and reset. -Jonathan -Original Message- From: Antony Paul [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 8:39

RE: Variable value in logic:equal tag Help Req

2003-12-03 Thread Fullam, Jonathan
to a String for comparisons). If refValue is not a String you can try the following %= refValue.toString() %. -Jonathan -Original Message- From: Shakti [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 10:27 AM To: Struts Developers List; Struts Users Mailing List Subject: Variable

RE: Select Property !

2003-12-03 Thread Fullam, Jonathan
You are referencing modelYear as the property but your baseVO appears to have a property called strModelYear. -Original Message- From: Rama, Shreekantha (K.) [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 11:04 AM To: Struts Users Mailing List Subject: Select Property !

RE: Variable value in logic:equal tag Help Req [SOLVED]

2003-12-03 Thread Fullam, Jonathan
of the variable created using bean:define ??? I am using %= var % but i am not getting it .. plz help . Plz help me out of this . Thanks Shakti - Original Message - From: Fullam, Jonathan [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 9

RE: Session Scope ActionForm, ActionErrors and the Back Button

2003-12-02 Thread Fullam, Jonathan
John, ActionErrors is stored under the key: Globals.ERROR_KEY. You can implement your ActionForm reset (which is called on all ActionForm objects on every request) method to remove the ActionErrors found under this key from your Request or Session. Jonathan -Original Message- From: John

Re: links without underline/border

2003-11-24 Thread Jonathan Sampson
Sonam, You do not want to kill a text-decoration simply because images do not have text decorations. Instead, on your image add this property border=0 So your image tag should be: img src=../../images/save_journal.gif border=0/ I hope this helps. You can delete the style tag all together.

RE: Token documentation

2003-11-21 Thread Fullam, Jonathan
I found the description of how and when to use tokens in The Struts Framework, Practical Guide for Java Programming by Sue Spielman very useful. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 21, 2003 11:19 AM To: [EMAIL PROTECTED] Subject:

Error Handling without using errorPage directive

2003-11-05 Thread Jonathan Gordon
for this situation. I've created entries for every type of exception that seems relevant in both places but they don't seem to be getting called. Thanks for your help, Jonathan. - To unsubscribe, e-mail: [EMAIL PROTECTED

Struts, Tomcat And Performance

2003-11-04 Thread Jonathan Holloway
Does anybody have any information, case studies or figures they can share on the performance of struts under tomcat. Whats the maximum number of simultaneous users that can be supported by a single tomcat instance running struts? I've got up to around 40-60 but need to increase this to more

JSP Expression inside Struts html:text property

2003-10-13 Thread Jonathan Hawkins
Please helpsuper powers..failing.must .stop evilbad code before it'stoo late thanks jonathan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Multipage JDBC result

2003-09-16 Thread Jonathan Hawkins
Howdy, Any tips as to where I can find code examples of how to break down a large JDBC result into say 25 rows per page? Jon Hawkins - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[ANN] FreeMarker 2.3pre13 available

2003-09-04 Thread Jonathan Revusky
and XSLT, FreeMarker really deserves some serious attention. For more information, visit http://freemarker.org/ (or http://freemarker.sourceforge.net/) or the FreeMarker project page at http://sf.net/projects/freemarker . Best Regards, Jonathan Revusky

RE: Formatting form data inside the *view* (JSP's)

2003-08-28 Thread Jonathan Lehr
and set it on the form instance: public ActionForward execute(...) { ... Locale currLocale = (Locale) request.getSession().getAttribute(Globals.LOCALE_KEY); form.setLocale(currLocale); ... } Jonathan -Original Message- From: Sasha Borodin [mailto:[EMAIL PROTECTED

Anchor tags in a page

2003-06-26 Thread Jonathan Holloway
Hi, I have a page that is quite large so i'm trying to put anchor a tags in the page so that i can redirect the user to a specific part of the page. this is quite easy to achieve so I'm told using the following piece of code in the struts-config.xml file: action path=/action

Message resource question

2003-06-09 Thread Jonathan Hodges
Hello, Is there any way to specify a path for the message resources that isn't in the classpath (e.g. WEB-INF/classes directory)? I was wanting to move it to a directory like WEB-INF/config if possible. Thanks, Jonathan Hodges

[ANN] FreeMarker 2.3pre2 available

2003-06-04 Thread Jonathan Revusky
http://freemarker.org/ (or http://freemarker.sourceforge.net/) or the FreeMarker project page at http://sf.net/projects/freemarker . Best Regards, Jonathan Revusky -- lead developer, FreeMarker project, http://freemarker.org

Actions, forwards and little old anchor

2003-06-03 Thread Jonathan Holloway
Hi, I'm trying to forward to an anchor within a page frmo the struts-config.xml file. Now, I understand I can do this as follows: forward name=finishadd path=main.jsp#the_marker redirect=true/ The anchor is definately defined in the page. The problem is that I'm using

Re: Struts Velocity

2003-06-02 Thread Jonathan Revusky
don't lose the ability to leverage that by opting for FM over JSP. Anyway, I hope that's helpful. Best Regards, Jonathan Revusky -- lead developer, FreeMarker project, http://freemarker.org/ - To unsubscribe, e-mail: [EMAIL

Login

2003-05-31 Thread Jonathan Holloway
to enforce this in the JSP's and Action classes. Many thanks, Jonathan Holloway. Need a new email address that people can remember Check out the new EudoraMail at http://www.eudoramail.com - To unsubscribe, e-mail: [EMAIL PROTECTED

ANN] Struts-FreeMarker-JSP taglibs integration

2003-04-02 Thread Jonathan Revusky
details, see: http://freemarker.org/docs/pgui_misc_jythonwrapper.html Okay, 'nuff said, I guess. If that doesn't pique your interest, I don't know what will. Enjoy, Jonathan Revusky -- lead developer, FreeMarker project, http://freemarker.org/ Available for java/internet consulting

Getting the id of an object in the value tag

2003-04-01 Thread JONATHAN PHILIP HOLLOWAY
/ Or is there another way of doing it? Thanks, Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales, SY23 3DV

Login

2003-03-24 Thread Jonathan
. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales, SY23 3DV. 07968 902140 http://users.aber.ac.uk

Nested Radio Buttons + Mutual Exclusion

2003-03-13 Thread Jonathan
Does anybody know how to use the nested:radio button component so That you can have mutually exclusive sets of radio buttons? Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion

Mutually Exclusive Radio Buttons

2003-03-12 Thread Jonathan
in the property being different for each of them because of the nested index, e.g. like property=Banana[0].ripe Rather than just: property=ripe which would allow mutual exclusion. Is there any way around this, Many thanks, Jon. *-* Jonathan Holloway

Sessions Again (Last Time)

2003-03-07 Thread JONATHAN PHILIP HOLLOWAY
Ok can somebody clarify this, I have one JSP that uses two actions, If I use Action A exclusively then only one session will be used but if I try to use Action B from the same JSP will a new session be created? Jon. *-* Jonathan Holloway

RE: Problem with Monkey examples

2003-03-05 Thread Jonathan
I've got the monkey complex example workign with Tomcat 4.1.18 using Struts 1.1b2 but it was a pain in the arse to get working, if you need the file then you can download it from http://users.aber.ac.uk/jph8/monkey.war Hope that's of some help to you people working with the nested tags. Monkey

Nested problem not finding the id

2003-03-04 Thread JONATHAN PHILIP HOLLOWAY
/nested:form /td /tr /nested:iterate Many thanks in advance, Jon. *-* Jonathan

RE: J2EE and Tomcat and struts (Question re Struts in Action by Husted)

2003-03-04 Thread Jonathan
Tomcat is an implementation of the servlet spec that is part of the J2EE architecture. You should be able to include the jar files that are in tomcat as part of your classpath in order to compile your servlets. Jon. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

URL Rewrite Cookies

2003-03-03 Thread Jonathan
. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales, SY23 3DV. 07968 902140 http

Nested Bug?

2003-03-03 Thread JONATHAN PHILIP HOLLOWAY
/nested:iterate This doesn't seem right to me, I haven't looked at the source code yet but please somebody correct me if I'm wrong. Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion

Iterate + indexed property arghhh....

2003-03-03 Thread Jonathan
pressed? I can't use: String action = (String)request.getParameter(action); Because the index causes a problem, Many thanks in advance for any help or tips you can provide me with, this seems to be the last part of my problems. Jon. *-* Jonathan

Sessions

2003-03-02 Thread Jonathan
to this mapping which forwards the user to the addaddress.jsp where they can enter an address and are then returned to the main page where they can view the list of addresses that they have currently entered. Is this correct? Many thanks, Jon. *-* Jonathan

Sessions

2003-02-28 Thread JONATHAN PHILIP HOLLOWAY
thanks, Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales, SY23 3DV

Session Problems

2003-02-27 Thread JONATHAN PHILIP HOLLOWAY
to me why this happening. I have set the scope to session for both JSP pages and both JSP pages use the same action form so why is this happening? Many thanks, Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth

RE: Session Problems

2003-02-27 Thread Jonathan
are using for the first page? What are its properties? How is the Collection maintained? How is the bean being created? Sri -Original Message- From: JONATHAN PHILIP HOLLOWAY [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 12:01 PM To: Struts Users Mailing List Subject

RE: Session Problems

2003-02-27 Thread Jonathan
27, 2003 1:54 PM To: Struts Users Mailing List Subject: RE: Session Problems Can you summarize the form bean you are using for the first page? What are its properties? How is the Collection maintained? How is the bean being created? Sri -Original Message- From: JONATHAN PHILIP HOLLOWAY

Re: Searching the Archives?

2003-02-12 Thread JONATHAN PHILIP HOLLOWAY
Try http://www.mail-archive.com Instead.. : ) Jon - Original Message - From: Jason Vinson [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, February 12, 2003 3:51 PM Subject: Searching the Archives? I feel dumb for asking this, but I am trying to

LookupDispatchAction

2003-02-12 Thread JONATHAN PHILIP HOLLOWAY
return (mapping.findForward(success) } Does anybody know why EXECUTE is called but the intended ADDBANANA method is not called? Many thanks, Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University

LookupDispatchAction

2003-02-12 Thread Jonathan
Ok the reason I had just put strings in the Map was because of Lack of internationalisation, I've now done this but still I get The same error that of a NullPointerException. I'm assuming this Is because of a method not found error from my ServletException Output in Tomcat... (See attached) Am I

RE: LookupDispatchAction

2003-02-12 Thread Jonathan
Ok, here goes... I've definately defined the internationalization Stuff in ApplicationResources. Note the struts config bit below And the fact that I've specified the scope as session, does this make a difference? action path=/addbanana type=com.example.AddBananaAction

Adding a new object to a collection in an actionform

2003-02-11 Thread JONATHAN PHILIP HOLLOWAY
thanks in advance, Jon Holloway. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales, SY23 3DV

Forms and multiple buttons

2003-02-11 Thread JONATHAN PHILIP HOLLOWAY
my action up into various parts to achieve this? Is it a simple case of using dispatchAction and passing the id in the query string? Many thanks in advance, Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth

Re: Nesting forms

2003-02-10 Thread JONATHAN PHILIP HOLLOWAY
You don't actually need to create three forms. All you need to do is to create one action form for your top level form, in your case LineItem. The other two are standard Java classes, just make sure they implement Serializable. You can just refer to these in your main form in the following way

log4j problem

2003-01-30 Thread De Cesco, Jonathan
Hi all, I was using Log4J with struts1.0 with no problem. When I updated to struts1.1b3, messages from Struts like RequestProcessor Processing a POST request for path url are logged using my webapp log4j configuration file. The problem is I don't want struts to log these messages but it keeps

RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
]] Envoyé : jeudi 30 janvier 2003 14:10 À : 'Struts Users Mailing List' Objet : RE: log4j problem You may want to increase your default console setting from DEBUG to WARN. That would eliminate a lot of log messages. -Original Message- From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]] Sent

RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
of log messages. -Original Message- From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 5:09 AM To: '[EMAIL PROTECTED]' Subject: log4j problem Hi all, I was using Log4J with struts1.0 with no problem. When I updated to struts1.1b3, messages from Struts

RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
, January 30, 2003 2:24 PM To: struts-user Subject: RE: log4j problem i was under the impression that you do exclusion by inclusion. in other words, if you specify the package you want logged, it excludes everything else. -Original Message- From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED

RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
Message- From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 8:22 AM To: 'Struts Users Mailing List' Subject: RE: log4j problem Yes I know the originating class that produces logs, it's RequestProcessor. But I didn't know that log4j could exclude class from

RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
guessing I'm just not finding the correct configuration file, but it's really getting annoying. Matt, On Thu, 30 Jan 2003 11:09:10 +0100 De Cesco, Jonathan [EMAIL PROTECTED] wrote: Hi all, I was using Log4J with struts1.0 with no problem. When I updated to struts1.1b3, messages from Struts

Referring to pages in a different place

2003-01-22 Thread JONATHAN PHILIP HOLLOWAY
/ when I'm here: http://localhost:8080/WebApp/assessment/ Can I use %=request.getContextPath()% or something like that within my tiles file? Many thanks, Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth

A Useful Struts Resource

2003-01-22 Thread JONATHAN PHILIP HOLLOWAY
. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales, SY23 3DV. 07968 902140 http

Re: A Useful Struts Resource

2003-01-22 Thread JONATHAN PHILIP HOLLOWAY
Users Mailing List [EMAIL PROTECTED]; JONATHAN PHILIP HOLLOWAY [EMAIL PROTECTED] Sent: Wednesday, January 22, 2003 4:25 PM Subject: Re: A Useful Struts Resource On Wednesday, January 22, 2003, 11:22:18 AM, JONATHAN wrote: JPH The only I problem is I don't know how compatible this is gonna

Action Servlet

2003-01-16 Thread JONATHAN PHILIP HOLLOWAY
Could somebody tell me if it's possible to get a handle on the action servlet from an action class and if so how this is actually done. Many thanks in advance, Jonathan Holloway. *-* Jonathan Holloway, Dept. Of Computer Science

Referring to resources elsewhere

2003-01-13 Thread JONATHAN PHILIP HOLLOWAY
'/ template:put name='footer' content='../footer.html'/ /template:insert Many thanks in advance, Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales

nested tiles, I think

2003-01-13 Thread Jonathan Hodges
people speak of nested tile definitions, but I have been unable to find an example. Any help with this would be greatly appreciated, Jonathan

Location of jsp files

2003-01-11 Thread Jonathan Hodges
mapping the in the web.xml file as well. Any suggestions? Thanks in advance, Jonathan Hodges Infinity Insurance

Session Management

2003-01-10 Thread JONATHAN PHILIP HOLLOWAY
more preformance intensive or not and which is best practice? Many thanks, Jon Holloway. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales

Paper

2003-01-09 Thread Jonathan
be extremely appreciative, Many thanks, Jonathan Holloway. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales, SY23 3DV

Paper

2003-01-09 Thread Jonathan
/jph8/frameworks.zip Many thanks again for any feedback you can provide me with : ) Jonathan Holloway. --- Hi everyone, I'm currently writing a paper for one of my University assignments on web application frameworks. It basically covers the different approaches that web frameworks take

Re: Paper

2003-01-09 Thread JONATHAN PHILIP HOLLOWAY
, 2003 3:20 PM Subject: AW: Paper .doc? bad ;-) -Ursprüngliche Nachricht- Von: Jonathan [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 9. Januar 2003 16:19 An: Struts-User@Jakarta. Apache. Org Betreff: Paper Ok, Sorry to everyone about he last mail, it seems as if the server

Web Application Frameworks Paper Overview

2003-01-09 Thread Jonathan
framework itself. If you could possibly spare some time to give me some help and feedback on it then I'd be extremely appreciative, Many thanks, Jonathan Holloway. PDF Document http://users.aber.ac.uk/jph8/frameworks.pdf Word Document http://users.aber.ac.uk/jph8/frameworks.doc Zipped http

Re: monkey tree problem

2002-12-19 Thread JONATHAN PHILIP HOLLOWAY
I'm using Monkey Tree but I can't seem to get it to work under Struts 1.1, which version are you using it under at present? If it's 1.1 could you give me a few pointers on how you got it working or mail me the war file if that's not being too cheeky : ) Jon. - Original Message - From:

JNDIConnectorPlugin Example - C.Caveness Book

2002-12-19 Thread JONATHAN PHILIP HOLLOWAY
for each action class (in a similar way to which a database connection pool works). Does anybody have any other better methods of looking up EJB's form action classes? Many thanks, Jon. *-* Jonathan Holloway, Dept. Of Computer Science

Internationlization Bug

2002-12-18 Thread JONATHAN PHILIP HOLLOWAY
: init-param param-nameapplication/param-name param-valueApplicationResources.properties/param-value /init-param Many Thanks, Jon. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University

Monkey Struts

2002-12-12 Thread Jonathan Holloway
Has anybody got Monkey Struts or the Monkey Tree example to work under Struts 1.1b2 I can't seem to get it to work. Are there any other complicated nesting examples available? Jon. *-* Jonathan Holloway, Dept. Of Computer Science

RE: Struts you received a greeting card created by Gopal.

2002-12-05 Thread Jonathan Holloway
Don't open this message btw, I'm pretty sure it's a virus and it sends to everyone in your address book if your using Outlook... from past experience of the thing :) thanks whoever it is... Jon Holloway. -Original Message- From: Gopal Patwa [mailto:[EMAIL PROTECTED]] Sent: 05

HTML to JSP Conversion

2002-12-01 Thread Jonathan Holloway
Does anybody know of any tools that take a standard HTML page and convert it straight to JSP making use of the Struts tags in the process? Jon Holloway. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University

RE: HTML to JSP Conversion

2002-12-01 Thread Jonathan Holloway
-Original Message- From: Jonathan Holloway [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 01, 2002 8:31 PM To: [EMAIL PROTECTED] Subject: HTML to JSP Conversion Does anybody know of any tools that take a standard HTML page and convert it straight to JSP making use of the Struts tags

Obtaining the ActionServlet context from a utility class

2002-12-01 Thread Jonathan Holloway
Does anybody know how to get hold of the action servlet from a utility class so to get an attribute from the servlet context? I'm basically trying to do this from a utility class but don't know how to go about it. Jon. *-* Jonathan Holloway

RE: Obtaining the ActionServlet context from a utility class

2002-12-01 Thread Jonathan Holloway
may want to use them. Why not just pass the attribute as a parameter to the method? --- On Sun 12/01, Jonathan Holloway [EMAIL PROTECTED] wrote:From: Jonathan Holloway [mailto: [EMAIL PROTECTED]]To: [EMAIL PROTECTED]: Sun, 1 Dec 2002 19:47:20 -Subject: Obtaining the ActionServlet context

RE: Communication Between WebApps

2002-11-29 Thread Jonathan Holloway
This is exactly what I want to do with an authentication login web application before passing the UserContainer object over to whichever web application is appropriate based on their user type. If it's not possible to do this is it possible to do the following. Given.. http://localhost/webappa

RE: Complicated Web Interfaces?

2002-11-28 Thread Jonathan Holloway
:) ? Jonathan Holloway. -Original Message- From: Affan Qureshi [mailto:[EMAIL PROTECTED]] Sent: 28 November 2002 03:31 To: Struts Users Mailing List Subject: Re: Complicated Web Interfaces? My comment between lines. Say I want to display two lists of objects and swap lists in and out

RE: Complicated Web Interfaces?

2002-11-28 Thread Jonathan Holloway
I guess it's also easy to swap objects between the two models as well, this would be a nice addition to the example to allow bananas to be swapped between bunches. I did notice the new banana before but I wanted it to take values from fields on the form but I guess this is very simple to do

RE: Complicated Web Interfaces?

2002-11-28 Thread Jonathan Holloway
Nov 2002, Jonathan Holloway wrote: Date: Thu, 28 Nov 2002 09:11:51 - From: Jonathan Holloway [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Complicated Web Interfaces? Ok fair enough but surely

Complicated Web Interfaces?

2002-11-27 Thread Jonathan Holloway
but I haven't come across any really complicated web interfaces yet using Struts, has anybody got any ideas on this or any examples of web applications that are a little more compicated. Many thanks, Jon Holloway. *-* Jonathan Holloway

Communication Between WebApps

2002-11-26 Thread Jonathan Holloway
. *-* Jonathan Holloway, Dept. Of Computer Science, Aberystwyth University, Ceredigion, West Wales, SY23 3DV. 07968 902140 http://users.aber.ac.uk

RE: [ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-24 Thread Jonathan Holloway
Just out of interest Chuck, are the examples that are mentioned in your book in particular the online banking example and the virtual shopping example available in any form. I can't seem to see the examples to download from the Oreilly website. Thanks, Jonathan Holloway. -Original Message

RE: html:form frustration

2002-09-20 Thread Jonathan Kovacs
-- /load.do -- /jsp/edit.jsp What it SHOULD have been: /jsp/index.jsp -- /load.do -- /edit.do -- /jsp/edit.jsp This allows the controller to instantiate an editForm bean and store it in the request scope. Thanks for all your help though! =) Jonathan -Original Message- From: Danny Mui [mailto

html:form frustration

2002-09-19 Thread Jonathan Kovacs
(); // --- Line 803 scope = mapping.getScope(); servlet = mappings.getServlet(); type = formBean.getType(); Any suggestions would be *greatly* appreciated! Thanks, Jonathan Kovacs

RE: html:form frustration

2002-09-19 Thread Jonathan Kovacs
through my list, it works fine) For some reason, it's having trouble with lookup on the /edit.do action specified in the html:form tag. Looking at the /edit action-mapping entry, it DOES have the name=editForm definition. Jonathan -Original Message- From: Kevin A. Smith [mailto:[EMAIL PROTECTED

Re: problem with HttpSession in Resin-2.1.2

2002-07-24 Thread Jonathan Fuerth
if this will help you solve the problem, but that's my best guess at what's happening to your session. Good luck with it! -- Jonathan Fuerth - SQL Power Group Inc. (416)218-5551 (Toronto); 1-866-SQL-POWR (Toll-Free) Unleash the Power of your Corporate Data - http://www.sqlpower.ca/ -- To unsubscribe, e-mail

Re: problem with HttpSession in Resin-2.1.2

2002-07-24 Thread Jonathan Fuerth
with each request. So it's not a problem with the cache. Maybe we've both overlooked the obvious: Is it at all possible that you've got cookies turned off in your MSIE privacy options? That's what it sounds like at this point. -- Jonathan Fuerth - SQL Power Group Inc. (416)218-5551 (Toronto); 1

problem with error messages

2002-07-09 Thread Jonathan Corbin
Hello, I am getting the following error message on one of my jsps: javax.servlet.ServletException: Exception creating bean of class com.valleyrec.toteboard.beans.Toteboard: {1} I know from browsing the struts source that the {1} should be the forward.forward property from

  1   2   3   4   >