Cocoon/Eclipse ClassCastException

2006-06-19 Thread joel
Form.js, specifically on the following line: defineClass("org.apache.cocoon.forms.flow.javascript.ScriptableWidget"); Fyi, if I run this directly from Tomcat, it works fine. Any suggestions on what might be wrong? Thanks in advance. Joel java.lang.ClassCastException

CForms: Ajax-based widget validation?

2006-07-11 Thread joel
When using an Ajax-enabled form, is there a way to specify in the model that each widget should be validated as the user leaves the field and to use Ajax to display the results without refreshing the entire page? Thanks. joel

Accessing flowscript sendPage() bean object within xsp

2004-02-04 Thread Joel McConaughy
I'm new to cocoon. I'm trying to pass a parameter from flowscript into a pipeline that calls an esql logicsheet and then access the parameter from within the logicsheet to build a dynamic select statement. I can't find any docs or examples that show how. Can someone point me to an example?

Handling redirects with file generator?

2004-02-20 Thread Joel McConaughy
hanks much. joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to log input to wsproxy/SAX?

2004-02-24 Thread Joel McConaughy
I am getting SAXParseExceptions when using the wsproxy generator. Is there some way to get a dump of the raw input coming into the parser so I can see what's going on? FYI, I've set up the Log Transformer but nothing interesting gets logged here. Tha

Accessing flowscript data using jpath?

2004-03-02 Thread Joel McConaughy
I am trying to use flowscript data passed into an XSP in the following way: String s; s = This produces the error: "Type mismatch: cannot convert from Object to String". Is there something wrong here or is there another way to do this? Thanks in adva

jpath expression in xsp returns invalid class

2004-03-05 Thread Joel McConaughy
thing wrong? Thanks. Joel // create an Object from jpath expression; should be String class per javadocs Object o = ; String oClass = o.getClass().getName(); // create an Object from static String Object oo = "Test 123"; String ooClass = oo.get

Re: jpath expression in xsp returns invalid class

2004-03-05 Thread Joel McConaughy
If I use the following statement: String [] sArray = ; I get the following compile-time error: Type mismatch: cannot convert from Object to String[] Any other ideas? Thanks for the quick response! joel Dan Alford wrote: I'm not a cocoon expert but the Class type of your first obje

Re: jpath expression in xsp returns invalid class

2004-03-05 Thread Joel McConaughy
That did the trick! It's the simple things... Thanks much for the help. joel Dan Alford wrote: Joel, Try explicitly casting the object. String [] sArray = (String[]) ; If that doesnt work, you will probably need to find a cocoon expert Dan Joel McConaughy wrote: If I use the foll

Re: binding params in dynamic queries in ESQL

2004-03-05 Thread Joel McConaughy
I ran into the same problem and ended up building the entire sql statement in a String variable within an block. This eliminated a number of parsing problems I was having and avoids having to root thru the esql logicsheet to figure out exactly whats going on. R Hunt wrote: Thanks in advance

Re: binding params in dynamic queries in ESQL

2004-03-05 Thread Joel McConaughy
It WOULD be interesting if that's what I did. I actually didn't end up using any bound parameters; just dynamically created the statement. Are you required to use a prepared statement? If so, I'd be interested in why -- it may be somethig I need to do with my app as well. Sorry I can't be m

Problems Loading Generator Component

2004-03-08 Thread Joel Sookram
have tried many approaches to solve this problem but nothing seems to work. Could someone give me some hints as to what I am doing wrong? I am fairly new to Cocoon and I am currently using Cocoon 2.1.3. Thanks, Joel -- The information

RE: Problems Loading Generator Component

2004-03-08 Thread Joel Sookram
7;directory for deploying new or customized classes? Thanks, Joel -Original Message- From: Hildebrandt, Ole [mailto:[EMAIL PROTECTED] Sent: Monday, March 08, 2004 10:16 AM To: [EMAIL PROTECTED] Subject: AW: Problems Loading Generator Component Hi, >From the stacktrace I would say that

RE: [POLL] form frameworks

2004-03-11 Thread Joel McConaughy
"One ring to rule them all" xml-form [ ] keep it as deprecated in the 2.1 branch [x] remove it with the next 2.1.5 release [ ] remove it with the 2.1.6 release [ ] remove it only in the 2.2 branch jxforms [ ] keep it as deprecated in the 2.1 branch [x] remove it with the next 2.1.5 release [ ] re

xlink:href inside svg stylesheet not finding file

2004-03-14 Thread Joel McConaughy
RL http://cocoonapp/image.jpg xlink:href="context://image.pg" Does anyone have some sage advice for how I can make this URL relative to the current cocoon app directory? Thanks . Joel - To unsubscribe, e-mail: [EMAIL PR

Re: soap request with soapaction parameter

2004-03-14 Thread Joel McConaughy
the way to define the SOAP Action header. Cheer, Joel Jürg Hofer wrote: Hi, I'm trying to query a weather web service (GlobalWeather as described in http://www.xmethods.com/ve2/ViewListing.po?key=uuid:A8847507-255F-0E18- D814-78D18E6C32F6) with the following XSP-script which I adopted fr

CForms(woody) ad hibernate design advice needed

2004-04-12 Thread Joel McConaughy
m flow for serialization (thanks Hugo for the samples!). joel Joel McConaughy Managing Partner Displayware 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732 Direct 206-382-2188 Fax [EMAIL PROTECTED]

RE: Problem redirecting in flowscript

2004-04-13 Thread Joel McConaughy
Apache commons library does not support cross-host redirects. Solution is to use the httpClient library in an XSP to manually process the redirects and then read the response and serialize into the stream. Joel McConaughy Managing Partner Displayware 800 Fifth Ave., #101-316 Seattle, WA 98104

Hibernate, Woody and repeaters

2004-04-16 Thread Joel McConaughy
d. Thanks in advance. Joel Here's the offending code: var factory = cocoon.getComponent(Packages.com.displayware.hiblib.PersistenceFactory.ROLE); var hs = factory.createSession(); var contacts = hs.find("from User"); cocoon.log.debug("contacts.size() = &quo

RE: Hibernate, Woody and repeaters

2004-04-16 Thread Joel McConaughy
Mark, Glad to hear from you! Here's the form template. Basically, a cut n paste from Hugo's sample with a few things changed. If I comment out the form.load() in the flow, this form displays fine (albeit empty). joel http://apache.org/cocoon/woody/template/1.0";

RE: Hibernate, Woody and repeaters

2004-04-17 Thread Joel McConaughy
m.getModel() is called.  So, I have been trying to use this default binding as is, substituting the bean created by hbm2java.  In the form2bean sample, I can't even find a binding file.  Do I need one?     Joel McConaughy Managing Partner Displayware 800 Fifth Ave., #101-316 Seattle, WA 981

RE: Hibernate, Woody and repeaters

2004-04-17 Thread Joel McConaughy
Title: Message You're on!  The beer fridge is stocked...   Thanks for the help.     Joel McConaughy Managing Partner Displayware 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732 Direct 206-382-2188 Fax [EMAIL PROTECTED] -Original Message-From: Mark Lund

RE: Problem redirecting in flowscript

2004-04-19 Thread Joel McConaughy
I bet it uses the http-client library instead. Joel McConaughy Managing Partner Displayware 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732 Direct 206-382-2188 Fax [EMAIL PROTECTED] -Original Message- From: Mark Lundquist [mailto:[EMAIL PROTECTED] Sent: Saturday, April 17

ressource reader bug with IE (linked to caching)

2004-04-20 Thread Joel Reungoat
Hello users, I'm trying to access DOC or PDF files using the ressource reader component as described in the sitemap below and get the following error only under Microsoft IE : >> Internet Explorer cannot download test.doc from localhost Internet Explorer was not able to open this Internet

RE: ressource reader bug with IE (linked to caching)

2004-04-22 Thread Joel Reungoat
a.apache.org/bugzilla/show_bug.cgi?id=24647   Hope this helps.  -Mensaje original- De: Joel Reungoat [mailto:[EMAIL PROTECTED]] Enviado el: martes, 20 de abril de 2004 13:05 Para: [EMAIL PROTECTED] Asunto: ressource reader bug with IE (linked to caching) Hello users, I'm tryin

cannot create a quartz scheduler

2004-04-24 Thread Joel McConaughy
I'm trying to port my version of Hugo's Woody-Hibernate sample to cfoms. When I add the following to cocoon.xconf: I get the following error message: "cannot create a quartz scheduler" Has anyone encountered this be

Cannot access Hibernate queries with Woody

2004-04-25 Thread Joel McConaughy
/woody2.js", line 198: uncaught JavaScript exception: at simpleuseradmin (file:/home/joel/jakarta-tomcat-5.0.19/webapps/cocoon/StorePortal/flow/useradmin.js, Line 35) at (resource://org/apache/cocoon/woody/flow/javascript/woody2.js, Line 198): org.apache.avalon.framework.CascadingRuntimeE

RE: Cocoon: Language Babel -or- Database Development Platform ?

2004-04-28 Thread Joel McConaughy
ase but doesn't seem to work. IMHO, an out-of-the-box hibernate/cforms binding (or some other O/R framework) should be a hard requirement -- otherwise where is the productivity gain? OK, I'll climb down from the soap box now ;) Joel McConaughy Managing Partner Displayware LLC 800 Fifth

RE: Cocoon: Language Babel -or- Database Development Platform ?

2004-04-28 Thread Joel McConaughy
ow do I make thje corresponding change to the hibernate collection? Joel McConaughy Managing Partner Displayware LLC 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732 Direct 206-382-2188 Fax [EMAIL PROTECTED] -Original Message- From: Ugo Cei [mailto:[EMAIL PROTECTED] Sent: Wedn

RE: Cocoon: Language Babel -or- Database Development Platform ?

2004-04-28 Thread Joel McConaughy
It is a simple CRUD tool and is a good example of what I believe is an important use case. I documented the problem here: http://www.mail-archive.com/[EMAIL PROTECTED]/msg13665.html Joel McConaughy Managing Partner Displayware LLC 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732

RE: Cannot access Hibernate queries with Woody

2004-04-28 Thread Joel McConaughy
Thanks much. I will give this a try and will document what I find. I've never submitted a patch before but would be happy to do so if this works. Joel McConaughy Managing Partner Displayware LLC 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732 Direct 206-382-2188 Fax [

Hibernate logging in cocoon?

2004-04-29 Thread Joel McConaughy
Is there a way to enable hibernate logging within cocoon? I've tried putting log4j.properties in the classpath but get nothing. THanks. joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

RE: JXT or XSP?

2004-04-30 Thread Joel McConaughy
How are you mapping/binding between hibernate persistent objects and the flow model? Joel McConaughy Managing Partner Displayware LLC 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732 Direct 206-382-2188 Fax [EMAIL PROTECTED] -Original Message- From: beyaNet Consultancy

Re: Hibernate logging in cocoon?

2004-04-30 Thread Joel McConaughy
Skipped over the rootLogger entry. As soon as I changed this to "file", works fine. Thanks for the reply. beyaNet Consultancy wrote: Yep, i have log4j-1.2.7.jar in both web-inf/lib and web-inf/classes Peter On 29 Apr 2004, at 23:53, Joel McConaughy wrote: Is there a way to enable

wb:delete-bean?

2004-05-03 Thread Joel McConaughy
Is there a delete equivalent to ? I'd like to pick up the delete event and do some app-specific processing on the row before it is removed from the repeater with but don't know how to access the row. Thanks. - To unsubscribe

RE: Vote: to unify, or not to unify (Was "RE: Business Logic in Cocoon Applications?")

2004-05-04 Thread Joel McConaughy
Peace, man! Joel McConaughy Managing Partner Displayware LLC 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732 Direct 206-382-2188 Fax [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

RE: wb:delete-bean?

2004-05-04 Thread Joel McConaughy
I need to do this as each delete event is fired. However, I don't know how to access the row inside the tag or how to call some external Java from there. May be there's an easier way to accomplish this? Thanks for the response. joel Joel McConaughy Managing Partner Displayware LLC

Re: Setting up cocoon at site root

2003-07-02 Thread Joel Ekstrand
See the page http://wiki.cocoondev.org/Wiki.jsp?page=BeginnerDefaultContext for detailed instructions. /Joel - Original Message - From: "Justin Makeig" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 28, 2003 12:56 AM Subject: Setting

Image maps

2003-09-12 Thread Joel Pitt
ith these or is there a simpler way that I'm missing? Cheers, Joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Maintaining request in match string.

2003-09-16 Thread Joel Pitt
> I tried this earlier with the URL Joel quoted and the RequestGenerator > ignored the parameters completely. I took a quick look in the generator > source code and saw that it dumped an Avalon "Parameters" object to the SAX > stream: it called parameters.getNames() to g

Help finding dbcp connection leaks

2006-01-17 Thread Joel McConaughy
I suspect we have a connection leak in our application.  There is a logAbandoned parameter for dbcp but I can figure out how to configure it in cocoon 2.1.7/tomcat 5.5.9/mysql 4.1.11.  The documentation on this is "sparse".   Is there a better way to find connection leaks?   Thanks.   joel

[JOB] Cforms/Ajax expert needed

2006-08-09 Thread Joel McConaughy
Title: [JOB] Cforms/Ajax expert needed We are looking for a contract developer to help extend the Cforms framework with some new widgets and work towards getting these included in future cocoon releases.  Our first project is to develop a replacement file upload widget that can handle multipl

[CForms/JXTemplate] how to pass bizData?

2004-06-04 Thread Joel McConaughy
/cocoon/forms/1.0#template"; xmlns:fi="http://apache.org/cocoon/forms/1.0#instance";> myvalue=${myvalue} continuation=${continuation.id} Any ideas? Thanks in advance. joel - To unsu

Re: [CForms/JXTemplate] how to pass bizData?

2004-06-04 Thread Joel McConaughy
Then suddenly the light bulb went on I figured out that there is a difference between the form's model data and the bizdata passed from the flow. I simply added bizdata to form.showForm("simpleform", bizdata) and viola, it worked. joel Joel McConaughy wrote: I am unable

[cforms] How to add tag attributes that contain ?

2004-06-06 Thread Joel McConaughy
I want to create anchor tags in my form template that contain widget values like the following: This produces the following error: The value of attribute "href" associated with an element type "a" must not contain the '<' character Is there a way to do this within the template itself of do I n

RE: CForms+Hibernate+Flow

2004-06-18 Thread Joel McConaughy
help. Regards, joel Joel McConaughy Managing Partner Displayware LLC 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300-4732 Direct 206-382-2188 Fax [EMAIL PROTECTED] -Original Message- From: Nick Van den Bleeken [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 1:02 PM To: [

Validating XML in pipeline?

2004-06-29 Thread Joel McConaughy
simple to do -- I'm hoping Ive overlooked something. Thanks. joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Making an xml-rpc call within a pipeline?

2004-07-01 Thread Joel McConaughy
I have an XML-RPC based logging system. I would like to call this within other pipelines to log certain application results. Ideally, I'd like something like the following: < /Pass logging xml to xml-rpc pipeline and filter out logging xml/> Is there a way to do this? T

Cforms: bean AND xml binding in a single form?

2004-07-06 Thread Joel McConaughy
Title: Cforms: bean AND xml binding in a single form? Is it possible to use both bean and xml binding in a single form?  I'm using hibernate and the bean binding to access SQL data.  One of the columns contains xml data that I would like to include in the form.  Thanks. Joel

ValidationTransformer bits?

2004-07-06 Thread Joel McConaughy
There is a ValidationTransformer described in the wiki but no download links that I can find. Is this code available somewhere? Thanks. joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

SQL Transformer: inserting XML into TEXT column?

2004-07-06 Thread Joel McConaughy
I'm trying to insert some XML into a text column using the SQL Transformer however the element tags are getting removed and only the text elements are getting into the insert statement. Is there a way to do this? Thanks.

esql:get-xml default namespace?

2004-07-09 Thread Joel McConaughy
space problem but I haven't been able to figure it out. I've tried the following: 1. Put surrounding tag into a specified namesapce: 2. namespace qualify the generated root element: Help would be greatly appreciated. I've been flailing on this for 2 days

Re: SQL Transformer: inserting XML into TEXT column?

2004-07-09 Thread Joel McConaughy
ke this or do I just following the wiki instructions? Thanks. joel Joel McConaughy wrote: I'm trying to insert some XML into a text column using the SQL Transformer however the element tags are getting removed and only the text elements are getting into the insert statement

Where to store a hibernate session in Flow?

2004-08-03 Thread Joel McConaughy
o get notified when the session gets invalidated so I can close the hibernate session. Is there a way to do this? Thanks. Joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Where to store a hibernate session in Flow?

2004-08-03 Thread Joel McConaughy
#x27;t know how to access it from Flow. This is one of those things that seems like it should be simple. Any ideas? Thanks in advance. Mark Lundquist wrote: On Aug 3, 2004, at 6:20 PM, Joel McConaughy wrote: I would like to open one hibernate session for each user session and close it when

Re: Cocoon won't install on tomcat 4.1x?

2004-08-11 Thread Joel McConaughy
Millo Magnocavallo wrote: Hi, I wish to install cocoon-2.1.5.1 on my system and I'm running tomcat 4.1.27 however in the installation instructions there doesn't seem to be anything related to installing for this tomcat version. It covers the following versions: # Installing on Tomcat 3.3.X # Instal

How to use {session-context} in sitemap?

2004-08-14 Thread Joel McConaughy
am I doing wrong? Cocoon 2.1.5, Tomcat 5.0.19 Thanks, joel From flow: cocoon.session.setAttribute('covers', 'sampledata/covers'); var s = cocoon.session.getAttribute('covers'); // At this point, s == 'sampledata/covers/' From sitemap.xmap: From c

Database connections hang

2004-09-08 Thread Joel McConaughy
I have database connections hanging under load (2.1.5.1, jdk1.4.2_05, MySQL 4.0.18). I found a thread about updating excalibur-datasource-1.1.1.jar to a later version to fix this. When I upgrade to excalibur-datasource-1.2.0.jar, I get "cannot create a quaetz scheduler". Has anyone seen this

"cannot create a quartz scheduler" error

2004-09-14 Thread Joel McConaughy
ocoon' already exists Exception Has anyone seen this before? Thanks. Joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Which component causes "out of memory" error?

2005-06-28 Thread Joel McConaughy
the following sitemap fragment: This does seem to stream as I can see the output however the jvm memory allocation continues to grow along with the output. Is there a way to see which component is holding on to memory? Thanks, J

Is ESQL/xsp supposed to stream?

2005-07-24 Thread Joel McConaughy
ay to configure this to stream the results? Thanks, Joel cocoon 2.1.7, jdk1.4.2_08, mysql4.1.11, mysql_connectorj3.1.10 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Is ESQL/xsp supposed to stream?

2005-07-25 Thread Joel McConaughy
growing to the size of the total result set. - I can remove the stx transform and the xsp sill caches. Is there any way to get more visibility on what is going on inside the xsp generator? Joel Joel McConaughy Managing Partner Displayware LLC 800 Fifth Ave., #101-316 Seattle, WA 98104-3191 206-300

[JOBS] Cocoon contractor, Seattle

2005-08-09 Thread Joel McConaughy
extension likely.  If interested, please email info aaat displayware dddot cccom. Thanks, Joel

Re: Support / Consultancy for our Cocoon 2.1.9 platform

2011-02-18 Thread Joel McConaughy
Alec, thanks for letting me know. Please keep me in mind in the future. joel On Thu, Feb 17, 2011 at 12:55 AM, Alec Bickerton wrote: > Hi, > > Thanks for your responses. I now have enough to go through for the time > being. > > Regards, > Alec Bickerton. > > On 16/0

Help applying a patch from BRANCH_2_1_X to v2.2

2011-07-16 Thread Joel McConaughy
Hi, There is a patch r1086733 to the cforms block that I would like to apply to v2.2. I am using maven to build our application but do not know how to update the local repository and apply these changes. Can anyone help point me in the right direction? Thanks! Joel

How to build cocoon 2.2 from source for debugging

2012-07-09 Thread Joel McConaughy
Are the build instructions at http://cocoon.apache.org/798_1_1.html still valid? I am getting some basic dependency errors from maven and wanted to see if there are updated instructions before I starting digging into the problems. Here is the output of "mvn clean". Thanks. joel

Re: How to build cocoon 2.2 from source for debugging

2012-07-09 Thread Joel McConaughy
Unfortunately I am working on an app built on cocoon 2.2 so need to use that version. Thanks for the quick reply though! On Mon, Jul 9, 2012 at 1:00 PM, Reyes, Rafael wrote: > Hi joel, i had the same trouble when i began with cocoon but I recommend > that you download the cocoon`s .war p

Re: How to build cocoon 2.2 from source for debugging

2012-07-10 Thread Joel McConaughy
> Could you please describe your use case in order to understand whether you > absolutely need to build the 2.2 source tree? > > Regards. > > > On 10/07/2012 10:42, Huib Verwey wrote: > > Hi Joel, > > i had the same troubles as well, asked about it in the mailing as

Re: 2.1.12 and html5

2013-06-05 Thread Joel McConaughy
Peter, Here's what I do which seems to work fine: about:legacy-compat UTF-8 true Joel On Wed, Jun 5, 2013 at 7:41 AM, Peter Sparkes wrote: > Thank you Cédric and Thorsten > > However, I still can't get it working. Could you, please explain what I > have to

Re: Remove XML declaration and html DOCTYPE

2013-06-19 Thread Joel McConaughy
Try this... UTF-8 true On Wed, Jun 19, 2013 at 7:53 AM, Mansour Al Akeel wrote: > How do I remove the xml declaration and doctype from xml and html > serializes ?? > > -- Joel McConaughy 206-300-4732 joelmcconau...@gmail.com

Session management (NEWBIE)

2003-09-09 Thread Joel P W Pitt
me alot of time! Cheers, Joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Maintaining request in match string.

2003-09-15 Thread Joel P W Pitt
e request string through the cocoon request object. But there isn't any such method that I'm aware of :-( Any help would be much appreciated!! Thanks, Joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Maintaining request in match string.

2003-09-15 Thread Joel P W Pitt
Thanks Upayavira! Both those options work fine. I knew there must be a simple solution to it ;) Thanks, Joel Upayavira wrote: I'm pretty sure the following will work: 1) In the sitemap: 2) In flowscript: var x = cocoon.request.getParameter("image.x"); var y = cocoon.reque

Re: Maintaining request in match string.

2003-09-15 Thread Joel P W Pitt
temap method, and make the flowscript retrieve the x and y parameters using: var x = cocoon.request.getParameter("x"); Any other ideas? Thanks, Joel Upayavira wrote: I'm pretty sure the following will work: 1) In the sitemap: 2) In flowscript: var x = cocoon.request.getParameter("image

Re: Maintaining request in match string.

2003-09-16 Thread Joel P W Pitt
specified as x and y. Joel Upayavira wrote: (I'm away from my cocoon install currently so I'm working from memory here.) I did as David said, except that currently my image is unnamed. It is just an img element: as I recall. When I examine the XML returned by the RequestGenera

Transformation not working

2003-09-21 Thread Joel P W Pitt
e user selects what features to display). Maybe it is something to do with having an XSLT produced by another XSLT? Any insights appreciated, because I truly am stuck otherwise. Thanks, Joel - To unsubscribe, e-mail: [EMAIL PRO

Re: Transformation not working

2003-09-25 Thread Joel P W Pitt
Hi Joerg, You were right. My transformer wasn't generating the right events, the main problem was that the events were missing namespaces. Thanks for pointing me in the right direction! :) Joel Joerg Heinicke wrote: Hello Joel, it seems to be a problem with the SAX events. The worki