Attach Source Issue in Eclipse - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T16:11:29Z http://stackoverflow.com/feeds/question/191998 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/191998/attach-source-issue-in-eclipse 0 Attach Source Issue in Eclipse Paul Croarkin 2008-10-10T15:53:53Z 2008-10-10T23:47:10Z <p>In Eclipse (Ganymede) I'm debugging some code that uses Apache Commons HttpClient and would like to step into the HttpClient code. I've downloaded the source code and tried to attach it in the normal fashion (CTRL-click on the method name and use the Attach Source button). I've tried to attach both as external file and external folder with no success. I've attached source before with no issues and can currently step into Hibernate source code successfully.</p> <p>I've even tried editing the .classpath file directly to add sourcepath manually. Still no luck. Refreshing the project, doing a clean build, closing and re-opening Eclipse do not solve the issue. Frustratingly, Eclipse provides no error message; it just does not attach the source.</p> <p>Here are the entries in .claspath:</p> <p> </p> <p> </p> <p>I've tried changing the path to D:/Data/Download/commons-httpclient-3.1/src and that does not work either.</p> <p>The directory structure is: D Data Download commons-httpclient-3.1 src java org apache commons httpclient AutoCloseInputStream.java ... (and so forth)</p> http://stackoverflow.com/questions/191998/attach-source-issue-in-eclipse/192054#192054 2 Answer by JeeBee for Attach Source Issue in Eclipse JeeBee 2008-10-10T16:04:59Z 2008-10-10T16:04:59Z <p>Try attaching the src.zip instead of the unzipped src?</p> http://stackoverflow.com/questions/191998/attach-source-issue-in-eclipse/192240#192240 2 Answer by Dave Dunkin for Attach Source Issue in Eclipse Dave Dunkin 2008-10-10T16:53:47Z 2008-10-10T16:53:47Z <p>Try adding it to the source path of your launch configuration.</p> http://stackoverflow.com/questions/191998/attach-source-issue-in-eclipse/193261#193261 1 Answer by Daniel Spiewak for Attach Source Issue in Eclipse Daniel Spiewak 2008-10-10T22:42:17Z 2008-10-10T22:42:17Z <p>Attaching sources is not all that is required to step into a library on the classpath; that library must also be compiled with debug symbols. This usually isn't a problem, since most Java libraries are compiled and distributed in such a fashion, but as you have found, some of them are not.</p> <p>It is interesting to note that you can actually step into external libraries even without the source attached, you just can't see the line-by-line sources (all of the debug info still works).</p> <p>You could "fix" this problem by compiling a custom version of Commons HttpClient (not too difficult), or just skip the whole "step into the library" idea. As a general development practice, stepping into third-party libraries will rarely yield useful information. I've done it maybe once or twice in the last ten years, neither time did it actually bring me any closer to solving the dilemma at hand.</p> http://stackoverflow.com/questions/191998/attach-source-issue-in-eclipse/193385#193385 3 Answer by Dave L. for Attach Source Issue in Eclipse Dave L. 2008-10-10T23:47:10Z 2008-10-10T23:47:10Z <p>Try pointing it at a directory containing the top level package directly, "D:/Data/Download/commons-httpclient-3.1/src/java" for you. What worked for me was creating a new src zip file containing the "org" folder and everything beneath it.</p> <p>Here's my .classpath entry, (which works for me) in case it helps:</p> <pre><code>&lt;classpathentry kind="lib" path="/blib/java/commons-httpclient-3.1/commons-httpclient-3.1.jar" sourcepath="/blib/java/commons-httpclient-3.1/commons-httpclient-3.1-src.zip"/&gt; </code></pre>