Mailing List
Home
Forum Home
Cocoon - MVC web framework based on XML/XSL
Maven - Project building tool
Axis - Java SOAP implementation
Lucene - Full-featured text search engine APIs
Log4J - A log library
Fop - Create PDF, PCL, PS, SVG, XML driven by XSL formatting objects.
POI - Java Excel, Word and other Microsoft Office files manipulating library
Oracle database, Microsoft SQL server ...
MySQL - an open source database
Red Hat Linux Installation and Config discussions ...
Subjects
log4j warning: No appenders could be found
java security AccessControlException: access denied (java io FilePermission clie
java lang InstantiationException: org apache tools ant Main
Apache Axis Tutorial
Struts <logic iterate >
log4j properties How to parse outpu to multiple files
configuring log4j with BEA Weblogic 8 1
How to use XSL FOP Java together
JSP precompile
Servlet File Download dialog problem (IE6,Adobe 6 0)
Proposal: Adding jar manifest classpath in jar and war plugins
Unsupported major minor version 48 0 problem while running the an
   telope task
java security AccessControlException: access denied (java io FilePermission
axis wsdl2java Ant Task usage
net sf hibernate MappingException: Error reading resource: test/User hbm xml
Building EAR ANT Script for websphere 5 0
CREATING WAR Files
jsp data into Excel
Classpath problem
Jboss 3 2 3+ vs Tomcat Axis Question
RE: How to include jars and add them into the MANIFEST MF/Class Path
attribute
Printing problem
InstantiationException
Couldn 't find trusted certificate
Please : How can one install ant 1 6 0 under Eclipse 2 1 ?
Excel: Too many different cell formats
Running junit tests fails
XDoclet, Struts and Maven: Where to start? SOLUTION
1 3 final: now giving me java io FileNotFoundException (Too many
open files)
AXIS: tomcat timeout ?
 
Search:  
Power your search with and, or, +, -, or "some phrase" operators.
Custom jelly beans and iterators

Custom jelly beans and iterators

2004-09-08       - By Ludovic Claude

 Back
Hello,

I'm wrinting a plugin for Maven, and now with Maven 1.0 i have a strange
behavior. The following used to work with RC2, but now i get:

File...... C:\Java\Maven-1.0\cache\maven-sourceforge-plugin-1.3\plugin.jelly
Element... sf:ftpBean
Line...... 26
Column.... 11
Property 'filesIterator' has no write method

Do you have any clue what happening there? Here is the definition of the
sf:ftpBean element.
The ${files} variable is defined with a <fileScanner>

  <define:taglib uri="sf">
     <define:jellybean
       name="ftpBean"
       className="net.sourceforge.mavenplugins.sourceforge.FTPBean"
       method="execute">
     </define:jellybean>

     <define:jellybean name="ftp">
       <sf:ftpBean
         site="${site}"
         destDir="${destDir}"
         filesIterator="${files.iterator()}"
         userEmail="${userEmail}"
       />
     </define:jellybean>
 </define:taglib>

And here is a summary of the bean, you can see that the write methode
setFilesIterator() exists!

public class FTPBean {

   /**
    * Gets the files.
    * @(protected) the files.
    */
   public Iterator getFilesIterator() {
       if (_files == null) {
           return Collections.EMPTY_LIST.iterator();
       }
       return _files.iterator();
   }

   /**
    * Sets the files.
    * @(protected) files The files to set.
    */
   public void setFilesIterator(Iterator iterator) {
       _files = new ArrayList();
       while (iterator.hasNext()) {
           _files.add(iterator.next());
       }
   }

   // ....
}

Thanks for your help,
Ludovic

__ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ __
Express yourself with cool new emoticons http://www.msn.co.uk/specials/myemo


-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe, e-mail: users-unsubscribe@(protected)
For additional commands, e-mail: users-help@(protected)