Russell, This patch seems to work for me. Can you please check and let me know?
Thanks, dims --- Russell Butek <[EMAIL PROTECTED]> wrote: > Here's my full output from "ant clean functional-tests": (See attached > file: out) > > Russell Butek > [EMAIL PROTECTED] > > > Davanum Srinivas <[EMAIL PROTECTED]> on 06/06/2002 10:56:43 AM > > Please respond to [EMAIL PROTECTED] > > To: [EMAIL PROTECTED] > cc: Russell Butek/Austin/IBM@IBMUS > Subject: Re: DO NOT REPLY [Bug 8631] - Axis functional test failure with > JDK 1.4 > > > > Russell, > > Am unable to recreate the problem on the machine am on right now...Can you > please send me > logs/stacktrace? (I did not save mine when i was getting the problem) > > Thanks, > dims > > --- Davanum Srinivas <[EMAIL PROTECTED]> wrote: > > Russell, > > > > Now am getting it off and on. I will reopen the bug. > > > > Thanks, > > dims > > > > --- Russell Butek <[EMAIL PROTECTED]> wrote: > > > dims, how did you clean up your environment? I'm failing on the > > > multithread test case now. I worry that we may have a multithreading > > > problem that JDK 1.4 exposes. But if you're not getting it anymore, > maybe > > > I need to do some cleanup that I'm not doing. > > > > > > Russell Butek > > > [EMAIL PROTECTED] > > > > > > > > > [EMAIL PROTECTED] on 06/05/2002 12:07:29 PM > > > > > > Please respond to [EMAIL PROTECTED] > > > > > > To: [EMAIL PROTECTED] > > > cc: > > > Subject: DO NOT REPLY [Bug 8631] - Axis functional test failure > > > with JDK 1.4 > > > > > > > > > > > > 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=8631>. > > > 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=8631 > > > > > > Axis functional test failure with JDK 1.4 > > > > > > [EMAIL PROTECTED] changed: > > > > > > What |Removed |Added > > > > ---------------------------------------------------------------------------- > > > > Status|NEW |RESOLVED > > > Resolution| |FIXED > > > > > > > > > > > > ------- Additional Comments From [EMAIL PROTECTED] 2002-06-05 17:07 > ------- > > > Cleaned up my environment and ran "all-tests". Builds fine. > > > > > > > > > ===== > > Davanum Srinivas - http://xml.apache.org/~dims/ > > > > __________________________________________________ > > Do You Yahoo!? > > Yahoo! - Official partner of 2002 FIFA World Cup > > http://fifaworldcup.yahoo.com > > > ===== > Davanum Srinivas - http://xml.apache.org/~dims/ > > __________________________________________________ > Do You Yahoo!? > Yahoo! - Official partner of 2002 FIFA World Cup > http://fifaworldcup.yahoo.com > > ATTACHMENT part 2 application/octet-stream name=out ===== Davanum Srinivas - http://xml.apache.org/~dims/ __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com
cvs -z9 diff src\org\apache\axis\wsdl\toJava\JavaStubWriter.java (in directory D:\jakarta\xml-axis\java\) Index: src/org/apache/axis/wsdl/toJava/JavaStubWriter.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/toJava/JavaStubWriter.java,v retrieving revision 1.65 diff -d -u -b -B -w -r1.65 JavaStubWriter.java --- src/org/apache/axis/wsdl/toJava/JavaStubWriter.java 31 May 2002 20:34:32 -0000 1.65 +++ src/org/apache/axis/wsdl/toJava/JavaStubWriter.java 6 Jun 2002 18:36:48 -0000 @@ -197,6 +197,7 @@ pw.println(" // " + JavaUtils.getMessage("typeMap02")); pw.println(" // " + JavaUtils.getMessage("typeMap03")); pw.println(" // " + JavaUtils.getMessage("typeMap04")); + pw.println(" synchronized(this) {"); pw.println(" if (firstCall()) {"); // Hack alert - we need to establish the encoding style before we register type mappings due @@ -219,6 +220,7 @@ pw.println(" cachedDeserFactories.get(i);"); pw.println(" call.registerTypeMapping(cls, qName, sf, df, false);"); pw.println(" }"); + pw.println(" }"); pw.println(" }"); } pw.println(" return call;");