0 Replies Latest reply on May 28, 2009 6:00 PM by wayofdragonster

    Problem with SEAM Remoting Constraint

    wayofdragonster
      Hi All,

      I currently have some problems with SEAM's remoting constraint feature.  According to documentation, you can constraint objects of a specific type as follows:

      @WebRemote(exclude={"[com.test.apps].field})
      public TestObject getTestObject() {
      ...
      }

      This works.  However, when I tried to restrict a field within a field, then it doesn't work anymore.  The innerField actually shows up:

      @WebRemote(exclude={"[com.test.apps].field.innerField})
      public TestObject getTestObject() {
      ...
      }

      Does SEAM support this type of constrain or is this a bug?

      I am using SEAM 2.1.1 GA

      Thanks alot!

      Paul