This problem is also reported at http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930922. I checked JIRA and it seems that the fix was done in late April, so I assume it is the code released with JBossAS 4.0.4 GA. However, I ran on this problem while defining a web service through annotations:
@WebService
@SOAPBinding(style = SOAPBinding.Style.RPC)
public class MyWebService {
 @WebMethod
 public MyClass[] someMethod() { ... }
}
public class MyClass {
 private String str;
 public String getStr() { return str; }
 public void setStr(String str) { this.str = str; }
}Hi. I have the same problem. Do you found the solution? Thanks