Re: relative path problem

2003-03-12 Thread bobd
ECTED]> wrote: > 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..

relative path problem

2003-03-10 Thread bobd
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 on disk. These files are currently being pulled in using a full directory path! (i.e. "/usr/local/...) Attempts to use relative paths (from t

parameter pass to xslt

2003-03-09 Thread bobd
I'm having some problems with passing a DOM Document as a parameter in an XSL transform. TransformerFactory tFac = TransformerFactory.newInstance(); Transformer trans = tFac.newTransformer(xsl-source); trans.setParameter("sched", w3c-DomDoc); trans.transform(DOMSource, DOMResult); Without the s

Re: xslt in jsp

2003-03-09 Thread bobd
> > > title="index.title" > > heading="index.heading"> > > > > > > > > > > > > > >Hope this helps, > > > >Tom > > > >>On Sat

xslt in jsp

2003-03-08 Thread bobd
I have a jsp that needs to retrieve XML from a bean (stored in the session) and then execute a transformation. what is the easiest way to do this? Having difficulty using , as well as locating documentation on this. thanks, -b __ Do you Yahoo!

help with populating a select box from a bean

2003-03-04 Thread bobd
The following code successfully iterates over an array coursetitles stored in bean reference courseCatalog. I'm now trying to populate a select box and it looks like is not going to work to create elements. What is the best way to do this? thanks, -bob _

bean constructors and

2003-03-03 Thread bobd
I have a JSP that is successfully creating an instance of a bean class in the session, but I'm failing to understand a problem with retrieving data from that bean. The bean's constructor (zero arguments) is apparently not executing defined routines. However, it can retrieve private data members m

and

2003-02-24 Thread bobd
Hi, The way I understand the above line is that an object reference to the Bean class CurrentSchedule is created if it does not already exist in the session (this is working). Now I want to iterate over a collection object retrieved from this Bean, but I'm having a hard time understanding the

help with installing a simple web app

2003-02-23 Thread bobd
Hi, Obviously I'm a newbie... I've successfully deployed the struts-example by placing its .war in /webapps (the machine is Redhat Linux 7.3, using Tomcat servlet container). Now I'm trying to deploy my own app, but serious obstacles have popped up. The app is compiled and configured correctly as