Path: csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!nx01.iad01.newshosting.com!newshosting.com!novia!news-out.readnews.com!transit3.readnews.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Lew Newsgroups: comp.lang.java.programmer Subject: Re: java.lang.VerifyError running Eclipse project Date: Thu, 22 Sep 2011 10:19:22 -0700 (PDT) Organization: http://groups.google.com Lines: 35 Message-ID: <28997584.979.1316711962032.JavaMail.geo-discussion-forums@preb19> References: <5798675.575.1316705613833.JavaMail.geo-discussion-forums@prib32> Reply-To: comp.lang.java.programmer@googlegroups.com NNTP-Posting-Host: 2620:0:1000:fd42:224:d7ff:fe69:5838 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1316712350 7555 127.0.0.1 (22 Sep 2011 17:25:50 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 22 Sep 2011 17:25:50 +0000 (UTC) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2620:0:1000:fd42:224:d7ff:fe69:5838; posting-account=CP-lKQoAAAAGtB5diOuGlDQk0jIwmH0T User-Agent: G2/1.0 X-Google-Web-Client: true Xref: x330-a1.tempe.blueboxinc.net comp.lang.java.programmer:8211 On Thursday, September 22, 2011 9:23:43 AM UTC-7, Qu0ll wrote: > "Lew" wrote in message=20 > news:5798675.575.1316705613833.JavaMail.geo-discussion-forums@prib32... >=20 > > Looks like 'ResultsModel' in the link to the unnamed client is an=20 > > out-of-date version. >=20 > My guess as well but I can't see how this is possible given that I even= =20 > deleted the "bin" directory of all Eclipse projects involved. I think it= 's=20 > an Eclipse caching bug but I don't know how to resolve it. Try the build from the command line. Are the client and service classes in the same project? If not, are inter-= project dependencies set in Eclipse? Did you rebuild both projects? If there are two projects, it is often best to make the library project (th= e one in the build path of the other) emit a JAR, and use the JAR in the de= pendent project. Search from the command line for all ".class" files using something like th= e UNIX (Cygwin) "find"; that should pre-empt anything Eclipse is trying und= er the hood. Make sure you "refrech" your Eclipse projects. I don't know about RCP projects, but enterprise Java projects are of simila= r complexity and there are all sorts of intermediate places in those where = an out-of-date ".class" file can linger, between server directories and sta= ging directories and temporary directories and what-all. --=20 Lew