Re: Problem parsing XML document with default namespace

2003-10-16 Thread matsuhashi
This link might help : http://nagoya.apache.org/eyebrowse/SearchList?listId =&[EMAIL PROTECTED]&searchText=namespaces+in+x%3Aparse&defaultField=subject&Search=Search Escpecially, see the post from Pierre Delisle at 2002-11-13.

Problem parsing XML document with default namespace

2003-10-16 Thread Mach, Gavin
I am developing a JSP page which parses an XML file generated from some backend server. The XML file has a root element which includes a default namespace attribute eg. I am finding the JSP page only successfully reads parses this file if the namespace attribute is removed or has an empty value.

RE: Pass scrape taglib to a method (revisited)

2003-10-16 Thread Karen D. Wiens
That works perfectly!! Thank you so much!! -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 12:40 PM To: Tag Libraries Users List Subject: RE: Pass scrape taglib to a method (revisited) Try: <%= teststring %> Quoting "Karen D. Wiens

RE: Pass scrape taglib to a method (revisited)

2003-10-16 Thread Kris Schneider
Try: <%= teststring %> Quoting "Karen D. Wiens" <[EMAIL PROTECTED]>: > Hello all, > I understand this but the problem is that I need to use the output > within a scriplet. Is that possible? > > > > Will output the string but I can't use it within a scriplet > > If I call the variable t

RE: Pass scrape taglib to a method (revisited)

2003-10-16 Thread Karen D. Wiens
Hello all, I understand this but the problem is that I need to use the output within a scriplet. Is that possible? Will output the string but I can't use it within a scriplet If I call the variable teststring in a scriplet, like <%= teststring %> I get: No entity named "teststring" was fou

RE: Using jsp:useBean within a c:forEach loop - Having problems

2003-10-16 Thread James Mitchell
I had the same issue. Here's the fix: Move your declaration before the forEach loop. > > > > > > " border="0"> ... ... > > > > > ... ... With each iteration, the set will overwrite the previous values.done. -- James Mitchell

Re: Using jsp:useBean within a c:forEach loop - Having problems

2003-10-16 Thread Kris Schneider
The body of is only processed the first time the bean is created. Outside loop: Inside loop: Quoting Joanne L Corless <[EMAIL PROTECTED]>: > Hi, > > I am building an application based around struts that needs a number of > html:link's building in the JSP. I have successfully built the >

Using jsp:useBean within a c:forEach loop - Having problems

2003-10-16 Thread Joanne L Corless
Hi, I am building an application based around struts that needs a number of html:link's building in the JSP. I have successfully built the functionality using a single parameter, however I need to use multiple parameters passed into the struts action. It is sort of working using a jsp:useBean and