Re: struts-tags - long form problem

2001-10-05 Thread martin . cooper
/ /html:form Incidentally, questions on Struts-related tags are better asked on the struts-user mailing list. -- Martin Cooper - Original Message - From: Tahir Awan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 05, 2001 2:46 PM Subject: RE: struts-tags - long form problem

Re: web.xml problems

2001-11-14 Thread martin . cooper
The error message tells you exactly what's wrong with it! The taglib entry must come after the context-param entry. You can see this by reading the error message you got, which lists exactly what the web.xml file can contain, and in what order. -- Martin Cooper - Original Message

Re: struts-tags - long form problem

2001-10-06 Thread martin . cooper
properties from form's bean? Yes, they will. -- Martin Cooper Tahir -Original Message- From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: 10/5/01 11:34 PM Subject: Re: struts-tags - long form problem Actually, it is possible, and it is the only solution I am aware of. I know, because

Re: struts-tags - long form problem

2001-10-10 Thread martin . cooper
of it. -- Martin Cooper - Original Message - From: Tahir Awan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 09, 2001 12:56 PM Subject: RE: struts-tags - long form problem I tried to break my long-form like below. html:form action=whatever jsp:include page=part1.jsp

Re: How to determing the relationship between tags

2001-12-05 Thread Martin Cooper
are forced to split the form across pages. To make this work in Struts, the doStartTag() method in html:form stores a reference to itself as a request attribute, the nested tags use that, and then doEndTag() cleans it up. -- Martin Cooper - Original Message - From: Shawn Bayern [EMAIL PROTECTED

Re: struts-tags - long form problem

2001-10-10 Thread martin . cooper
The form taglib is deprecated in Struts 1.0 (see the Release Notes and/or the struts-form.tld file), and will be removed in Struts 1.1. -- Martin Cooper - Original Message - From: Tahir Awan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 10, 2001 12:47 PM Subject

Re: [standard] Does not work in Resin

2002-01-12 Thread Martin Cooper
Which version of Resin are you using? Are you using EA3 of JSTL? -- Martin Cooper - Original Message - From: Alice K [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, January 12, 2002 10:51 PM Subject: Re: [standard] Does not work in Resin Do you know anyone has fixed

Re: taglib descriptor

2002-02-13 Thread Martin Cooper
, including putting the tld file in the jar. The limitation is that you can't put more than one taglib into a single jar file because the name of the tld file must be taglib.tld. -- Martin Cooper Dan At 11:01 AM 2/13/2002 +0100, Thomas Colin de Verdiere wrote: Hi, Is it possible to put the tld

Re: Seeking Opinions

2002-03-16 Thread Martin Cooper
if we told them we were building them in PHP. Coldfusion: Cost, for one. We'd have to tack on the cost of bundling Coldfusion to the cost of our own products. In any case, the whiz-bang version of Coldfusion described by Stacy was not available when we started our development. -- Martin Cooper

Re: Struts Vs Taglibs

2002-03-18 Thread Martin Cooper
. -- Martin Cooper - Original Message - From: Chen, Gin [EMAIL PROTECTED] To: 'Tag Libraries Users List' [EMAIL PROTECTED] Sent: Monday, March 18, 2002 9:40 AM Subject: Struts Vs Taglibs Hi All, Just a curiousity question. What is the advantages of using one over the other

Using JSTL with Resin 2.0.5 and Tomcat 4.0.3

2002-04-21 Thread Martin Cooper
that the JSTL TLD files are in standard.jar, which is in my WEB-INF/lib. Tomcat (or rather, Jasper) doesn't seem to be able to find them. Anyone have any bright ideas on how I can get one or other (and preferably both) of these containers to play ball with JSTL? Thanks! -- Martin Cooper -- To unsubscribe

Re: Using JSTL with Resin 2.0.5 and Tomcat 4.0.3

2002-04-21 Thread Martin Cooper
Shawn, Thanks! You're right on both counts. I've upgraded to Resin 2.1.0 and Tomcat 4.0.4-b2, and they're both working just fine. -- Martin Cooper - Original Message - From: Shawn Bayern [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Sunday, April 21, 2002 9:45

Re: Using c:import to include the contents of a file

2002-04-24 Thread Martin Cooper
where. -- Martin Cooper - Original Message - From: Matt Raible [EMAIL PROTECTED] To: 'Tag Libraries Users List' [EMAIL PROTECTED] Sent: Wednesday, April 24, 2002 7:14 PM Subject: Using c:import to include the contents of a file I want to do the following: c:import url=file://d

Re: Can't concatenate 2 strings together

2002-04-24 Thread Martin Cooper
In JSTL, '+' is a numeric operator only. However, this will do what you want: c:import url=${viewPath}${assetForm.filename}/ -- Martin Cooper - Original Message - From: Matt Raible [EMAIL PROTECTED] To: 'Tag Libraries Users List' [EMAIL PROTECTED] Sent: Wednesday, April 24, 2002 6:41

Re: Can't concatenate 2 strings together

2002-04-25 Thread Martin Cooper
- Original Message - From: Wolfgang Röckelein [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 2:19 AM Subject: Re: Can't concatenate 2 strings together Hi, Martin Cooper wrote: In JSTL, '+' is a numeric operator

Problems running x:transform example

2002-04-26 Thread Martin Cooper
(TransformTag. java:104) at _xml._transform__jsp._jspService(/standard-examples/xml/Transform.jsp:28) at com.caucho.jsp.JavaPage.service(JavaPage.java:74) at com.caucho.jsp.Page.subservice(Page.java:485) . Here I have even less idea what's going wrong. Any ideas, anyone? Thanks! -- Martin Cooper

Re: Problems running x:transform example

2002-04-26 Thread Martin Cooper
- Original Message - From: Shawn Bayern [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Friday, April 26, 2002 2:45 PM Subject: Re: Problems running x:transform example On Fri, 26 Apr 2002, Martin Cooper wrote: I'm trying to run the x:transform example

Re: c:expr

2002-04-30 Thread martin . cooper
instead. -- Martin Cooper At 02:32 PM 4/30/2002, Carole E. Mah wrote: Can someone point me to the definitive source for JSTL? I have what I thought was the latest core (c.tld), but apparently not, because c:expr returns the following error: org.apache.jasper.JasperException: No such tag expr

Re: JSTL: sql

2002-05-01 Thread Martin Cooper
As long as you do the SELECT LAST_INSERT_ID() in the same transaction as the INSERT itself, there's no issue. The value of the most recently generated id is maintained per connection, and using a transaction guarantees that you'll be using the same connection. -- Martin Cooper - Original

Re: c:url cooperation with struts transaction token - better than brute force?

2002-05-01 Thread Martin Cooper
' value='${sessionScope[org.apache.struts.action.TOKEN]}' / Perhaps not ideal, but somewhat cleaner and simpler. -- Martin Cooper - Original Message - From: Glenn Kronschnabl [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 01, 2002 6:22 PM Subject: c:url cooperation

Re: JSTL emulation

2002-05-06 Thread martin . cooper
taglib that seem more JSP 1.2/JSTL like. Others involve If-type tags and Iterator-type tags which I think JSTL supports me in. Yep. See ConditionalTagSupport and LoopTagSupport in the JSTL PFD. -- Martin Cooper Hen -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e

Re: compilation order with c:import

2002-05-07 Thread martin . cooper
)%'/ -- Martin Cooper At 07:33 AM 5/7/2002, Andrea Grittini wrote: I have some problem using c:import together with jsp:include. In fact when a page like this is compiled : c:import url=include/boxEpNewsData.jsp c:param name=ID%=request.getParameter(ID)%/c:param c:param name

RE: Tomcat crashes on too many custom tags in a jsp

2002-07-09 Thread Martin Cooper
there are no scriptlets in my pages mode :). Thanks. -- Martin Cooper -Original Message- From: peter lin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 4:16 AM To: Tag Libraries Users List Subject: Re: Tomcat crashes on too many custom tags in a jsp If tomcat is crashing because

RE: XTAGS and DOCTYPE problems

2002-07-10 Thread Martin Cooper
)? No, JSTL implementations require JSP 1.1. Um, that would be JSP 1.2. ;-) -- Martin Cooper If not, can you point me to a good, step-by-step tutorial to configure Tomcat 4.0.4 with Apache 1.3.20 using mod_jk? The best I could find was this: http://jakarta.apache.org/tomcat/tomcat-4.0

RE: EL and RT...

2002-07-10 Thread Martin Cooper
just can't do what you need with the EL. -- Martin Cooper -Original Message- From: Carlos Barroso [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 9:36 AM To: '[EMAIL PROTECTED]' Subject: EL and RT... I've seen in some docs of taglib's, references to EL and RT? What

RE: A JSTL problem...

2002-07-10 Thread Martin Cooper
That's because you're not using a JSP 1.2 container, as Ryan mentioned. Tomcat 3.x supports only JSP 1.1, so you'll need to move to Tomcat 4.x if you want to use JSTL. -- Martin Cooper -Original Message- From: Carlos Barroso [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002

RE: Standard Taglib 1.0.1 in BEA Weblogic 6.1

2002-07-28 Thread Martin Cooper
have a WebLogic configuration problem? 2) JSTL requires a JSP 1.2 container. I'm not a WebLogic user, but I was under the impression that only WebLogic 7 supports JSP 1.2, and that WebLogic 6.1 supports only JSP 1.1. Does 6.1 actually support JSP 1.2? -- Martin Cooper -Original Message

RE: using struts tagclasses inside our tagclass

2002-08-14 Thread Martin Cooper
this. There's more to it than just doStartTag(), doEndTag(), etc. You'd also need to invoke the methods that are generally implemented by TagSupport or BodyTagSupport at the right times, and be very careful about obeying the rules related to AttSets and tag handler reuse. -- Martin Cooper -- Karen

RE: JSTL in Action shipping from Amazon

2002-08-28 Thread Martin Cooper
the paper version, you can deduct the cost of the ebook from the price of that. -- Martin Cooper -- Wendy Smoak Applications Systems Analyst, Sr. Arizona State University PA Information Resources Management -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e

RE: Any way to import file as a resource?

2002-08-31 Thread Martin Cooper
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 31, 2002 9:26 PM To: [EMAIL PROTECTED] Subject: Re: Any way to import file as a resource? David == David M Karr [EMAIL PROTECTED] writes: Martin == Martin Cooper [EMAIL PROTECTED

RE: Java Pro article

2002-09-08 Thread Martin Cooper
. :-) -- Martin Cooper -Original Message- From: Henri Yandell [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 08, 2002 5:00 PM To: Tag Libraries Users List Subject: Java Pro article Just thought I'd mention that the latest issue of JavaPro has an article on the Jakarta

RE: PageContext is always null with taglibs

2002-09-12 Thread Martin Cooper
code. -- Martin Cooper -Original Message- From: Byrne Reese [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 4:00 AM To: [EMAIL PROTECTED] Subject: PageContext is always null with taglibs I am trying to write a custom taglib that extends the TagSupport class

RE: PageContext is always null with taglibs

2002-09-12 Thread Martin Cooper
If you think it might be a Tomcat configuration problem, then why not try dropping in something that's known to work, and see if it works for you? You could try the JSTL examples, or the struts-example.war web app from Struts 1.1-b2. -- Martin Cooper -Original Message- From: Byrne

RE: Help with c.out and html code

2002-09-30 Thread Martin Cooper
you? Buy Shawn's book! Seriously, you'll find it very worthwhile. -- Martin Cooper the links around seem to forward to partial exceprts from books, but don't go into much details with the tag attributes. Regards Steve - Original Message - From: Shawn Bayern [EMAIL PROTECTED

RE: JSTL import question

2002-10-08 Thread Martin Cooper
All three messages have the same code... The only problem I see is that you have the head tag in both files. I'm not sure what kind of issues that would cause, but it's not good. ;-) -- Martin Cooper -Original Message- From: petra staub [mailto:[EMAIL PROTECTED]] Sent: Tuesday

RE: Is there a way to call java.lang.String.substring on a c:ou t ?

2002-10-10 Thread Martin Cooper
As the documentation for the String taglib states, it is built on the Commons Lang component. The error you are seeing suggests that you have not included Commons Lang in your web app. -- Martin Cooper -Original Message- From: Stefan [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: Beefing up JSTL EL in JSP 2

2002-10-12 Thread Martin Cooper
in the TLD? What about calling static methods? I guess I should really go read the spec... -- Martin Cooper Hans -- Hans Bergsten [EMAIL PROTECTED] Gefion Software http://www.gefionsoftware.com JavaServer Pages http://TheJSPBook.com -- To unsubscribe, e-mail

RE: Is there a way to call java.lang.String.substring on a c:ou t ?

2002-10-12 Thread Martin Cooper
FYI, I've submitted a bug report (Bugzilla #13563) for this. -- Martin Cooper -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: Friday, October 11, 2002 2:52 PM To: 'Tag Libraries Users List' Subject: RE: Is there a way to call java.lang.String.substring

RE: Beefing up JSTL EL in JSP 2

2002-10-15 Thread Martin Cooper
-Original Message- From: Hans Bergsten [mailto:[EMAIL PROTECTED]] Sent: Monday, October 14, 2002 3:26 PM To: Tag Libraries Users List Subject: Re: Beefing up JSTL EL in JSP 2 Martin Cooper wrote: -Original Message- From: Hans Bergsten [mailto:[EMAIL PROTECTED

RE: JSTL and the creation of dynamic data bound HTML formelement s.

2002-10-29 Thread Martin Cooper
. As an example: a select box that keeps its own state and can easily be bound to a dataset like a JSTL result set. Or would this type of functionality be something that would be better suited to JSF? This sounds a lot like JavaServer Faces to me. http://jcp.org/jsr/detail/127.jsp -- Martin

RE: Whitespace generated by JSTL tags

2002-11-14 Thread Martin Cooper
will address this issue and make it a configurable. Yes, it would have to be configurable. A lot of people seem to assume that JSP always generates HTML to it's safe to always collapse whitespace, but that's not true, and whitespace sometimes matters. -- Martin Cooper peter Wolfgang Röckelein

Re: Creates new instead of finding populated ActionForm

2002-12-17 Thread Martin Cooper
Since this question is about Struts and not Taglibs, you're much more likely to get a helpful answer if you post it to the struts-user mailing list instead of the taglibs-user mailing list. -- Martin Cooper On Tue, 17 Dec 2002, Loren Hall wrote: Hello all, I'm trying to access a populated

RE: [JSTL] Help hiding/showing sections on JSP (w/ cookie?)

2002-12-20 Thread Martin Cooper
to avoid writing code for the JavaBean itself... -- Martin Cooper Thanks! I really couldn't find the right place to ask about this, so I appreciate your help even though it isn't strictly on topic. -- Wendy Smoak Applications Systems Analyst, Sr. Arizona State University PA Information

Re: Tag Instantiation With JSP 1.2

2003-01-10 Thread Martin Cooper
is perfectly valid: doStartTag() doEndTag() doStartTag() doEndTag() release() See the Lifecycle description in section JSP.10.1.1 of the JSP 1.2 spec for more information. -- Martin Cooper This is important to me because I have underlying data structures which are not behaving correctly

Re: JSTL and boolean Attributes ???

2003-01-22 Thread Martin Cooper
Where is your 'checker' object, and how did you create it and put it there? -- Martin Cooper On Wed, 22 Jan 2003, Leif Hanack wrote: Hello, i want to access a boolean attribute through JSTL. If my class looks like: class Checker { private boolean m_isValid = false; public

Re: Whitespace generated by JSTL tags

2003-01-22 Thread Martin Cooper
for decreasing the size of the JSP response. It will also have a noticeable - and undesirable - effect on any pre sections in the JSP page, causing them to be rendered incorrectly. -- Martin Cooper MATSUHASHI,kazuaki -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

Re: Issues with implementing the EL in a non-JSP environment

2003-02-03 Thread Martin Cooper
is not JSP-specific. The Commons [el] project has just been promoted from the sandbox to Commons Proper. This is the EL for JSP 2.0, but is not JSP specific (hence its presence in Commons!). You might want to take a look at that. -- Martin Cooper

Re: How to maintain the selection items in the Select using the jakarta.apache.org input tag library

2003-11-04 Thread Martin Cooper
Collections package. -- Martin Cooper Can someone help me? Thanks - Kim --- Kim Clary Global AMS Delivery Internet Design and Development Tie: 444-2396 Ph:919-254-2396 Life gets boring if you stay within the limits

Re: Unstandard Library Source / Developing custom EL taglibs

2003-11-10 Thread Martin Cooper
but the source for unstandard doesn't seem to be there. Does anyone know where I can d/l this from? The Unstandard taglib is in jakarta-taglibs-sandbox, not jakarta-taglibs. -- Martin Cooper Or does anyone have a good reference site for developing custom taglibs with EL? Thanks Mark C

Re: How to work with a custom and a JSTL

2003-11-22 Thread Martin Cooper
, like this: mm:imagesizer alt=Photo c:out value=${photopath} / /mm:imagesizer 2) EL-enable the mm:imagesizer tag, so that you can specify the expression directly, like this: mm:imagesizer src=${photopath} alt=Photo / -- Martin Cooper Thanks

Re: How to work with a custom and a JSTL

2003-11-23 Thread Martin Cooper
said, you're using JSP 2.0). -- Martin Cooper On Sun, 23 Nov 2003, Vernon Smith wrote: Hi, both, I have a custom tag which takes a output of a JSTL, or another custom tag as an attribute. This tag has one required and two non-required attributes. The following version doesn't work

Re: How to work with a custom and a JSTL

2003-11-23 Thread Martin Cooper
put the value of 'photopath' into a scripting variable, then the solution in my earlier message (using a scripting expression) will work. -- Martin Cooper Thanks, v. Get advanced SPAM filtering on Webmail or POP Mail ... Get

Re: forEach

2003-11-30 Thread Martin Cooper
in the web app lib folder Do you also have standard.jar in the same location? -- Martin Cooper Ideas? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: How to write if-else conditional custom tag

2003-11-30 Thread Martin Cooper
just using the JSTL tags. That would save you a lot of trouble. ;-) If you really want to write your own, take a look at those in JSTL anyway. Also, there have been several discussions of such a thing on taglibs-dev over time, so check the archives. -- Martin Cooper Thanks

RE: forEach

2003-11-30 Thread Martin Cooper
On Sun, 30 Nov 2003, David Liles wrote: When I try and use the standard URI the jsp errors indicating it can't find it. And standard.jar? - Martin Cooper -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED] Sent: Sunday, November 30, 2003 7:47 PM To: Tag

RE: forEach

2003-11-30 Thread Martin Cooper
On Sun, 30 Nov 2003, David Liles wrote: Sorry... yes, standard.jar is located in the lib folder as well. Hmm, assuming that your version of JRun supports JSP 1.2, I'm afraid I don't have any other ideas. I'm not really familiar with JRun. -- Martin Cooper -Original Message- From

Re: Multipart/form-data support in Struts

2003-12-02 Thread Martin Cooper
: http://www.servlets.com/cos/license.html Strange but true... -- Martin Cooper -Mark K.C. Baltz wrote: One of the example webapps included with Struts 1.1 is struts-upload. I've based my code off that. You'll probably want the source distribution of Struts to see how it's done

Re: Q: c:forEach, c:import and variable scope?

2003-12-09 Thread Martin Cooper
inside that c:forEach: [c:set var=newFoo value=${foo} scope=request/] However, that c:import-ed page.jsp does not see ${newFoo} either. :( Hmm. This works fine for me... -- Martin Cooper I am using jakarta-taglibs 1.0.3 with JBoss/Jetty. Is the above supposed to work? How do I get

Re: Copyright Notices when Customizing Jakarta Taglibs

2003-12-10 Thread Martin Cooper
to [EMAIL PROTECTED] -- Martin Cooper Cheers MC ** IMPORTANT MESSAGE ** This e-mail message is intended only for the addressee(s) and contains information which may be confidential. If you are not the intended recipient please advise the sender by return email, do

Re: using scripting variable in JSTL standard 1.0 EL

2003-12-15 Thread Martin Cooper
You can access request parameters directly with the EL. For example, if you have a request parameter named foo, you can do this: c:out value=${param.foo}/ The 'param' part is an implicit object that lets you access the request parameters. -- Martin Cooper On Mon, 15 Dec 2003, Antony Paul

Re: using struts for http to https redirect problem in IE6

2004-01-02 Thread Martin Cooper
In general, you'll get a much better response to Struts questions by posting them to the struts-user mailing list, instead of here. Not only is that list more appropriate, it also has many more subscribers who might be able to help you. -- Martin Cooper On Fri, 2 Jan 2004, N.N.S.S Ravi Krishna

Re: Variables for attributes in own tags

2004-01-05 Thread Martin Cooper
that they allow you to use JSTL expressions in the attribute values. You can get the Struts-EL code by downloading the Struts source distro, and looking under contrib/struts-el. Hope this helps. -- Martin Cooper Maybe there is another, easier solution to this problem? Best regards. Matthias

Re: exception report

2004-01-21 Thread Martin Cooper
... ;-) -- Martin Cooper Thanks Eddie B. type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: /site/user/clients_insert.jsp(540,20) The end tag /c:if

Re: jsp-version is an unexpected element

2004-01-21 Thread Martin Cooper
the DTD before you do anything else. -- Martin Cooper On Wed, 21 Jan 2004, Barnett, Brian W. wrote: Having a problem with a simple index.jsp file in Resin. Here is my welcome-file-list: welcome-file-list welcome-fileindex.jsp/welcome-file /welcome-file-list and here is my

Re: QUESTION ABOUT XML

2004-01-23 Thread Martin Cooper
the above XML into a variable named 'xml', you would use this: x:out select=$xml/entity/@eid/ -- Martin Cooper Please help me out. Thanks satish - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: tiles breaks x:forEach

2004-01-30 Thread Martin Cooper
at - Tiles. Can you try accessing the page using a jsp:include from another page, and see what happens? I believe all Tiles is doing internally is an include (using PageContext.include()), so this might provide some illumination (or not!). -- Martin Cooper On Fri, 30 Jan 2004 [EMAIL PROTECTED] wrote

Re: Where is the guid lines for writing tags.

2004-02-01 Thread Martin Cooper
: http://jakarta.apache.org/taglibs/addtaglib.html http://jakarta.apache.org/taglibs/newprojectsubmission.html http://jakarta.apache.org/taglibs/binarydist.html http://jakarta.apache.org/taglibs/sourcedist.html -- Martin Cooper rgds Antony Paul - Original Message - From: Antony Paul

RE: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-04 Thread Martin Cooper
I think this is what I was seeing when I was running JDK 1.4.1 instead of 1.4.2. I *thought* I was running 1.4.2, but it turned out that my path and my JAVA_HOME environment variable didn't both say the same thing... -- Martin Cooper On Wed, 4 Feb 2004 [EMAIL PROTECTED] wrote: I tried

RE: taglibs i/o or jstl core library

2004-02-07 Thread Martin Cooper
to the original request URL that might be confusing things. -- Martin Cooper cheers At 08:19 05.02.2004 -0500, you wrote: Hang on, you lost me with the redirect problem. Are you saying that a JSP with something like: c:redirect url=http://java.sun.com// isn't working for you? I don't

Re: [Q]i18n

2004-02-07 Thread Martin Cooper
(java). If you use the Struts i18n capabilities, Struts will do this for you by default, setting up the locale based on what it receives from the browser. -- Martin Cooper Help appreciated! djice - To unsubscribe, e-mail

Re: JSTL: POST vs GET

2004-02-07 Thread Martin Cooper
% All of your JSP pages should include this, not just your wrapper. Otherwise your included pages will be including ISO-8859-1 content into your UTF-8 wrapper. -- Martin Cooper 4. A template Tile page declares META HTTP-EQUIV=content-type CONTENT=text/html; charset=UTF-8 / 5. Each included

RE: Where I can find jstl.jar 1.0 and standard.jar 1.0

2004-03-07 Thread Martin Cooper
Try here: http://jakarta.apache.org/taglibs/doc/standard-1.0-doc/intro.html -- Martin Cooper -Original Message- From: niksa_os [mailto:[EMAIL PROTECTED] Sent: Sunday, March 07, 2004 11:31 PM To: [EMAIL PROTECTED] Subject: Where I can find jstl.jar 1.0 and standard.jar 1.0

RE: Internal Servlet Error using Taglibs-image on Tomcat 3.2.3 andj2sdk1.4.1_06

2004-03-16 Thread Martin Cooper
recently? Unless you're doing something rather unusual, you shouldn't have to upgrade your apps just to use a newer version of Tomcat. -- Martin Cooper -Original Message- From: Roy Benjamin [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 1:54 PM To: Tag Libraries Users List

RE: mailer taglib

2004-03-26 Thread Martin Cooper
()% /mt:setrecipient /mt:mail -- Martin Cooper Avinash Arora -Original Message- From: Marc Guillemot [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 2:17 AM To: [EMAIL PROTECTED] Subject: Re: mailer taglib What version are you using? Is it possible that the tld indicates

RE: JSP development environments

2004-03-27 Thread Martin Cooper
don't use it. Very popular though, so I'm sure I'll try again someday. Heh. This is exactly why I gave up on NetBeans some time ago and now use Eclipse and IDEA. I guess different strokes for different folks is true after all. ;-) -- Martin Cooper

RE: DynaActionForm problem

2004-04-01 Thread Martin Cooper
Since this is a Struts issue, it should be taken up on the struts-user list rather than here. However, since this looks like it could be a bug, please file a bug report against the Struts taglibs instead, here: http://issues.apache.org/bugzilla/ -- Martin Cooper -Original Message

RE: Finding a string within a string

2004-04-01 Thread Martin Cooper
ntMatches -- Martin Cooper David Schwartz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

RE: Novice question about using Constants in when tags

2004-04-01 Thread Martin Cooper
, that Unstandard is still in the sandbox, and therefore unreleased and subject to change. -- Martin Cooper Jeff Brewer wrote: I'm new to Java and JSP and Tag Libraries and ran into what is probably more of a style question than a technical question. I'm using something like this in my JSP

RE: finding current page's URL

2004-04-01 Thread Martin Cooper
? You can get the values Serge referred to through JSTL as well. c:set var=url value=${pageContext.request.requestURL}/ c:set var=qs value=${pageContext.request.queryString}/ -- Martin Cooper Thanks. Anuj. --- Serge Knystautas [EMAIL PROTECTED] wrote: Anuj Agrawal wrote: This may

RE: jstl read raw data

2004-04-01 Thread Martin Cooper
. Try this: x:parse var=parsedXml xml=${pageContext.request.reader}/ I'm not aware of any way of getting the raw content of the reader in JSTL, though. -- Martin Cooper Lorenzo - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: creating a list from a query resultset

2004-04-03 Thread Martin Cooper
. ;-) But if you really want to do it in the JSP page, what you're doing now is probably as right as it's going to get. ;-) -- Martin Cooper Help? Thanks. :) Anuj. __ Do you Yahoo!? Yahoo! Small Business $15K Web Design Giveaway http://promotions.yahoo.com

RE: how to nest a taglib in another taglib?

2004-04-08 Thread Martin Cooper
probably stuck with providing a scripting expression (rtexpr), which would look just like the example you give above. -- Martin Cooper please help methanks! __ Do you Yahoo!? Yahoo! Small Business $15K Web Design Giveaway http://promotions.yahoo.com

RE: jstl output

2004-04-09 Thread Martin Cooper
downside to this is the substantial decrease in readability... -- Martin Cooper -Original Message- From: Lorenzo Sicilia [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 3:28 AM To: Tag Libraries Users List Subject: jstl output Hi to the list, I have a jsp with jstl

RE: JSTL Tags Vs. JavaBeans

2004-04-11 Thread Martin Cooper
use and manipulate JavaBeans - they're complimentary technologies, rather than alternatives. Perhaps if you could describe a little about what your page is doing, or even provide a piece of it for us to look at, we'd be able to better help you decide on the best approach. -- Martin Cooper

Re: IOException: Stream closed error when using custom tags

2004-04-15 Thread Martin Cooper
Without seeing any of your JSP page or the code for your custom tag, it's a little hard for us to help you out... ;-) If you could provide more information, we might be able to help. -- Martin Cooper shanmugampl [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi All, I have

RE: String TagLib Dynamic String Replacement

2004-04-15 Thread Martin Cooper
need to convert it entirely to a scripting expression like this: str:truncateNicely ... appendToEnd='%= foo + bar + baz %' ... -- Martin Cooper -Original Message- From: Joe Dittmann [mailto:[EMAIL PROTECTED] Sent: Thursday, April 15, 2004 2:27 PM To: [EMAIL PROTECTED] Subject

RE: ${param.something} ... feature or bug?

2004-04-19 Thread Martin Cooper
, in general, do not include transparent support for that. Unless your container does have built-in support, or you have some other pre-processor in place for multipart requests, you're not going to be able to access parameters in such requests in the usual manner in JSTL. -- Martin Cooper Thanks

Re: xmlrpc and parse

2004-04-21 Thread Martin Cooper
suggest me another solution? If the IO taglib works for the XML-RPC invocation, then you should be able to use JSTL instead of XTags to parse the output. -- Martin Cooper Tnx Benny - To unsubscribe, e-mail: [EMAIL

Re: jspc

2004-04-21 Thread Martin Cooper
This is a question for tomcat-user, not taglibs-user (assuming you mean Tomcat 5.0.19, since the major version number isn't up to 9 yet! ;). -- Martin Cooper Martin Nad [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi! I run win-bin-Tomcat 9.0.19 and there is not jspc in tomcat

Re: xmlrpc and parse

2004-04-22 Thread Martin Cooper
, and that the latter is standard, and will work in Tomcat. If you use the IO tags for the XML-RPC part of what you're doing, there should be no question of whether or not JSTL is good for XML-RPC, any more than there's a question of whether or nor XTags is good for XML-RPC. -- Martin Cooper Benny Martin

RE: Where is the Input tag library?

2004-06-04 Thread Martin Cooper
- at least io and i18n, and quite possibly others, are also missing. I have no idea where they went (assuming they were really there at some point). Anyone have any ideas? (Copying -dev so all the committers see this.) -- Martin Cooper Derek NOTICE: This email contains privileged

Re: Undeterministic Reflection Exception, Using EL, JSTL, and Torque Objects

2004-06-24 Thread Martin Cooper
failing? -- Martin Cooper On Thu, 24 Jun 2004, Georg Filios wrote: Hi, I do hope that I am here in the right group. I have a unpleasent error, for which I havent found a solution on several days research. Here is my Scenario: I do have a bug i.e. an Exception which occurs ocassionally

RE: What is the method of direct acces to an array element?

2004-06-24 Thread Martin Cooper
around 'myLoopIndex'. Or not, play around with it and see what works! At the very least, you'll want to change the 'varStatus' value to 'status' and change the 'myLoopIndex' usage to 'status.index'. The 'varStatus' attribute exposes a structure rather than an index. -- Martin Cooper -- Wendy Smoak

RE: Jsp 2.0 taglib conversion problem

2004-07-06 Thread Martin Cooper
. -- Martin Cooper Thank you, Bruce Dempsey Systems Analyst Food Directorate / Direction des aliments Health Canada / Santé Canada Tel. (613) 954-9430 Fax (613) 957-1574 Martin van Dijken [EMAIL PROTECTED] 07/05/2004 08:46 AM Please respond to Tag Libraries Users List To: 'Tag Libraries

Re: Using struts-nested tags

2004-07-06 Thread Martin Cooper
I would recommend asking Struts questions on the Struts mailing lists, since there are likely many more people there who will understand the issue you are trying to resolve, and be able to help you solve it. -- Martin Cooper On Tue, 6 Jul 2004, Paride Perazzolo wrote: thanks for your answer. 1

Re: Xtags Id Variable is Obscured

2004-07-08 Thread Martin Cooper
of subsequent parts of the page. It's probably worth filing a bug, if you have a brief example that demonstrates the problem that you could include in the bug report. -- Martin Cooper On Thu, 8 Jul 2004, Malcolm Cowe wrote: I am trying to wrap an xtags:parse command in a catch tag, so that I can trap

Re: javax.servlet.jsp.tagext package binary download

2004-07-09 Thread Martin Cooper
, but the specific jar name depends on the container you are using. You can also download the servlet / JSP API from the Tomcat distribution directories - see the Tomcat web site for details. -- Martin Cooper Thanx in advance Puneet Monga

Re: Cannot load class error

2004-08-02 Thread Martin Cooper
you. Unfortunately, most of us are not mind-readers. ;-) -- Martin Cooper On Mon, 02 Aug 2004 05:17:35 +, emily chen [EMAIL PROTECTED] wrote: Hi there, when I use c:set in my jsp code,( on apache2 and tomcat4.1.30) it has Cannot load class set error. It's not because of the c.tld

Re: Question about Mailer Tag library.

2004-08-04 Thread Martin Cooper
I'm not in a position to try this out right now, but you should be able to do this, since the address strings are passed directly to InternetAddress.parse(). You will need to be careful with the '' and '' characters, though, so that they're not interpreted as HTML or XML. -- Martin Cooper

Re: Nested expressions

2004-08-20 Thread Martin Cooper
Uh, your condition is what's wrong. The parameter key is *always* going to be either not 'view' or not 'perPage' - it can't be both at the same time. I think you mean AND instead of OR... -- Martin Cooper On Fri, 20 Aug 2004 09:33:32 -0700, Nic Werner [EMAIL PROTECTED] wrote: You'd think

  1   2   >