2 Replies Latest reply on Oct 27, 2010 4:42 AM by laures

    setProperty must be overridden by all subclasses of SOAPMessage ?

    laures

      Hi, i wrote a Webservice. When i try to test it with SoapUI i get a UnsupportedOperationException.

       

      java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage

       

       

      @Stateless
      @WebService
      public class BPStatisticsServiceBean implements BPStatisticsService {
         
          @EJB
          private BPAccountManagement accountManagement;
             
          public String getUserStats() {
              return "<statistics><users>" + users.size() + "</users><gmean>" + "</gmean></statistics>";

          }
      }

       

       

      I'm running my jboss from within eclipse.

      Any ideas what goes wrong?

       

      Greetings,

      Alexander