DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17348>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17348 WSDL2Java creates method >64K [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From [EMAIL PROTECTED] 2003-07-10 20:39 ------- The fix is incomplete: breaking up a static block into smaller blocks has no effect on the compiled class. To complete the fix you actually need to assign the names to the blocks. I have attached a patched source to JavaStubWriter.java. This by itself is sufficient to fix my problem. Dims also changed the JavaBeanHelperWriter.java. I assume that it was done to fix a related problem. I do not have a test case for that second problem and I do not have a patch for it either. I think that the change to JavaBeanHelperWriter.java may be dangerous: I do not think we can predict in what order the static blocks are executed. If the block which allocates the array executes after the block which assigns then we are in trouble. I recomend that the change to JavaBeanHelperWriter.java be rolled back or modified similarly to JavaStubWriter.java.