org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList

2001-07-04 Thread Nino Uziel
Title: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList Hi Guys, I am not much of a Java programmer, and one of my engineers is getting the follwoing error message. Anyone has an idea as to why ?

RE: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList

2001-07-04 Thread Suresh Manne
Title: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList I feel that there is problem with the type casting. There should be something like (java.util Vector) vector_variable = (java.util Vector) string_variable Try to put

RE: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList

2001-07-04 Thread Nino Uziel
Title: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList Hi Suresh, I am using a JSP tag where I like to send a Java object to the java class. The jsp file is %@ taglib uri="clientSkin.tld" prefix="iclient" %%Vector

Re: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList

2001-07-04 Thread Vinay Menon
Title: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList "%=imgList%" would return a String wouldn't it? Its just the return of the toString method I guess. Is that what your tag library accepts? Or does it need a Vector at

RE: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList

2001-07-04 Thread Nino Uziel
Title: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList ziv -Original Message-From: Vinay Menon [mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 04, 2001 3:49 PMTo: [EMAIL PROTECTED]Subject: Re:

RE: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList

2001-07-04 Thread Nino Uziel
Title: org.apache.jasper.compiler.CompileException: ... Unable to convert a String to java.util.Vector for attribute imgList Vinay, my tag library accepts a Vector not a String. This format "%=imgList%" according to my book should pass the Vector Object to the tag library. I have tried it