2 Replies Latest reply on Oct 30, 2006 8:06 AM by janson

    "forgot-bug" in org.jboss.seam.remoting.wrapper.WrapperFact

    janson

      It seems, that
      org.jboss.seam.remoting.wrapper.WrapperFactory
      needs in adding a pair of strings to constructor ,
      for support Date wrapping.

      this 2 strings are :

      registerWrapper("date", DateWrapper.class);
      registerWrapperClass(Date.class, DateWrapper.class);








        • 1. Re:
          shane.bryzak

          The "date" type is already registered in the constructor, and there is special handling for the date class in getWrapperForObject(), hence no need for the registerWrapperClass() call for dates.

          • 2. Re:
            janson

            Ok, i dont check about second string,
            and wrote it for "any case" :).