1 Reply Latest reply on Mar 9, 2007 6:04 AM by heiko.braun

    JAXB-2.0 for JSR-181 endpoints

    ivanlatysh

      I am trying to get JSR-181 WS to map complex structure (using JAXB-2.0)

      Test structure:

      public interface Container extends List {
      public void add(Item item);
      }

      public interface Item extends Map {
      public void set(String key, String value);
      }

      Will appreciate if anybody can point me to the example or a test case that I can have a look at.