This now fixed in source. The code went StringBuffer.append(StringBuffer); in 1.3 and before this was cast to append(Object), and all was well; it is only code built against 1.4 that binds to the new declaration and breaks. One of those amusing little gotchas.
So the nightly build will work again. but before everyone rushes off to use it, can I suggest that anyone working with the nightly builds, just get onto CVS and build it themselves. 1. you control the build environment 2. you can add all the libraries you need 3. you are on the slippery slope to developer already; with CVS access you can improve the source and the docs. The nighltly builds are just test builds made by The Gump, they are not release builds and should not be treated as such -steve ----- Original Message ----- From: "Chris Forbis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 6:44 AM Subject: RE: NoSuchMethodError in Client > What JDK are you using? If not 1.4.1 you need to use 1.4.1 due to the fact > java.lang.StringBuffer( java.lang.StringBuffer ) does not exist in 1.3. 1.0 > did not have this limitation, but it seems the new builds do. Let us know > if it works for you... I think I saw a bug report opened on this as well. > > Chris > > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 18, 2002 9:33 AM > To: [EMAIL PROTECTED] > Subject: NoSuchMethodError in Client > > > I get the following exeception when trying to run a client application with > the 11/17 build. This same application worked under the 1.0 build. > > > java.lang.NoSuchMethodError: java.lang.StringBuffer: method > append(Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer; not found > at > org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:402) > > at > org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:122) > at > org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java: > 71) > at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:156) > at org.apache.axis.SimpleChain.invoke(SimpleChain.java:126) > at org.apache.axis.client.AxisClient.invoke(AxisClient.java:182) > at org.apache.axis.client.Call.invokeEngine(Call.java:2376) > at org.apache.axis.client.Call.invoke(Call.java:2365) > at org.apache.axis.client.Call.invoke(Call.java:2062) > at org.apache.axis.client.Call.invoke(Call.java:1986) > at org.apache.axis.client.Call.invoke(Call.java:1509) > at com.integro.neien.testclients.TestPing.callPing(TestPing.java:77) > > at com.integro.neien.testclients.TestPing.main(TestPing.java:30) > Exception in thread "main" > > Something I need to change in my code or a bug? >
