User Epaga - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:06:42Z http://stackoverflow.com/feeds/user/6583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/377672/ipod-touch-iphone-development-on-windows 1 ipod touch / iphone development on Windows? Epaga 2008-12-18T12:24:38Z 2009-12-16T20:39:02Z <p>Is there any way to develop for the iPod touch or iPhone on a Windows system?</p> <p><hr /></p> <p>Months later: does anyone else think it's funny that this question has 4,500 views but only 2 upvotes? :D</p> <p><hr /></p> <p>I vote to close as duplicate of <a href="http://stackoverflow.com/questions/113547/iphone-development-on-windows">http://stackoverflow.com/questions/113547/iphone-development-on-windows</a></p> http://stackoverflow.com/questions/1840643/how-to-inject-with-guice-when-there-are-two-different-constructors 0 How to inject with Guice when there are two different constructors? Epaga 2009-12-03T15:29:33Z 2009-12-15T11:04:20Z <p>Total Guice noob here, have read a few articles and seen the intro video, that's about it.</p> <p>Here's my simplified old code that I'm trying to "guicifiy". Can't quite figure out how to, since (as far as I understand), I can only <code>@inject</code>-annotate one of the two constructors? How can a calling class create the one or the other instance? Or will I have to refactor this somehow?</p> <pre><code>public class MyDialog extends JDialog { public MyDialog( JFrame parent, &lt;other parameters...&gt; ) { super( parent ); } public MyDialog( JDialog parent, &lt;other parameters...&gt;) { super( parent ); } } </code></pre> http://stackoverflow.com/questions/281017/starttag-invalid-element-name-in-default-aspx 0 "StartTag: invalid element name" in default.aspx Epaga 2008-11-11T14:27:59Z 2009-12-06T14:23:02Z <p>(Warning - asp newbie) I have an aspx file with the tag</p> <pre><code> &lt;%@ Page Language=VB ... %&gt; </code></pre> <p>right at the beginning of the file.</p> <p>When calling this from my IIS server (<a href="http://localhost/myservice/default.aspx" rel="nofollow">http://localhost/myservice/default.aspx</a>), this gives me the error </p> <blockquote> <p>This page contains the following errors: </p> <p>error on line 1 at column 2: StartTag: invalid element name<br /> Below is a rendering of the page up to the first error.</p> </blockquote> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1838703/how-to-set-the-browser-locale-for-selenium-tests-running-in-java 1 How to set the browser locale for Selenium tests running in Java? Epaga 2009-12-03T09:20:41Z 2009-12-03T09:40:23Z <p>I've been <a href="http://release.seleniumhq.org/selenium-remote-control/0.9.2/doc/java/" rel="nofollow">looking</a> <a href="http://www.google.com/codesearch?q=selenium.%2Alocale+lang%3Ajava&amp;hl=en" rel="nofollow">for</a> a <a href="http://www.google.de/search?hl=de&amp;rlz=1C1%5F%5F%5F%5F%5FenDE353DE353&amp;q=selenium+locale+java&amp;btnG=Suche&amp;meta=&amp;aq=f&amp;oq=" rel="nofollow">while</a> and still haven't found anything. When I run my Selenium tests from within Eclipse, it opens up a Firefox browser which always has English as its default locale. Changing default browser settings doesn't change the fact that each new browser opened by Selenium has an English locale.</p> <p>I haven't found any way in the API to set something other than English as my locale. I've tried setting the locale as a VM parameter for the Selenium server, I've tried setting it for my tests.</p> <p>There's got to be some obvious way of doing this that I'm missing that will result in easy rep for you. :) Any thoughts?</p> http://stackoverflow.com/questions/264680/best-way-to-automagically-migrate-tests-from-junit-3-to-junit-4 6 Best way to automagically migrate tests from JUnit 3 to JUnit 4? Epaga 2008-11-05T09:32:45Z 2009-11-27T10:38:46Z <p>I have a bunch of JUnit 3 classes which extend TestCase and would like to automatically migrate them to be JUnit4 tests with annotations such as <code>@Before</code>, <code>@After</code>, <code>@Test</code>, etc.<br> Any tool out there to do this in a big batch run?</p> http://stackoverflow.com/questions/120865/how-do-i-get-files-in-my-own-file-format-to-have-its-own-dynamic-icon 7 How do I get files in my own file format to have its own dynamic icon? Epaga 2008-09-23T13:06:57Z 2009-11-25T09:22:49Z <p>Our application has a file format similar to the OpenDocument file format (see <a href="http://en.wikipedia.org/wiki/OpenDocument" rel="nofollow">http://en.wikipedia.org/wiki/OpenDocument</a>) - i.e. zipped with a manifest file, a thumbnail image, etc.</p> <p>I notice that OpenOffice files have a preview image of the Open Office file as their icons, both in Windows and in Linux. Is there some way to accomplish this for our files: i.e. I want a dynamic icon based on the internal thumbnail.png?</p> <p><strong>Edit 1</strong> Wow, thanks for all the quick answers. <a href="http://library.gnome.org/devel/integration-guide/stable/thumbnailer.html.en" rel="nofollow">Thumbnailer</a> looks great for the GNOME world. Windows I'll be looking into those links, thanks. As for the comment question: programmatically OR via our installer.</p> <p><strong>Edit 2</strong> Oh, forgot Mac. How about on the Mac? (Sorry Mac lovers!) Also are there any links or info for how OpenOffice does their IconHandler stuff - since ours would be very similar?</p> http://stackoverflow.com/questions/253614/getting-classformaterror-with-emma 0 Getting ClassFormatError with EMMA? Epaga 2008-10-31T14:06:28Z 2009-11-23T07:20:29Z <p>I'm trying to generate code coverage reports with <a href="http://emma.sourceforge.net/" rel="nofollow">EMMA</a> using tests of which some use <a href="http://jmockit.dev.java.net" rel="nofollow">JMockit</a> as a mocking framework. For the most part, it works, but a few of my tests crash with a ClassFormatError, like so:</p> <pre><code>java.lang.ClassFormatError at sun.instrument.InstrumentationImpl.redefineClasses0(Native Method) at sun.instrument.InstrumentationImpl.redefineClasses(InstrumentationImpl.java:79) at mockit.internal.RedefinitionEngine.redefineMethods(RedefinitionEngine.java:138) at mockit.internal.RedefinitionEngine.redefineMethods(RedefinitionEngine.java:73) at mockit.Mockit.setUpMocks(Mockit.java:177) at test.my.UnitTest.setUpBeforeClass(UnitTest.java:21) </code></pre> <p>Any idea what is going on, and whether I can fix the problem? Or are EMMA and JMockit mutually exclusive?</p> http://stackoverflow.com/questions/1770742/runtime-getruntime-exec-with-a-non-ascii-string-in-windows 2 Runtime.getRuntime().exec() with a non-ASCII string in Windows? Epaga 2009-11-20T14:23:41Z 2009-11-20T14:28:53Z <p>Trying the following method to open an Arabic URL:</p> <pre><code> String cmd = "cmd.exe /C start \"Open file\" \"http://ar.wikipedia.org/wiki/موسوعة\""; Runtime.getRuntime().exec( cmd ); </code></pre> <p>Unfortunately, the URL being opened is <code>http://ar.wikipedia.org/wiki/??????</code></p> <p>Any thoughts on why this is or how I could prevent this?</p> <p><hr></p> <p>Before you ask why I don't use java.awt.Desktop.getDesktop().open(), it's because of this Sun bug: <a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=6457572" rel="nofollow">http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=6457572</a></p> http://stackoverflow.com/questions/239732/things-possible-in-intellij-that-arent-possible-in-eclipse 36 Things possible in IntelliJ that aren't possible in Eclipse? Epaga 2008-10-27T12:36:21Z 2009-11-19T21:08:55Z <p>I have heard from people who have switched either way and who swear by the one or the other.</p> <p>Being a huge Eclipse fan but having not had the time to try out IntelliJ, I am interested hearing from IntelliJ users who are "ex-Eclipsians" some specific things that you can do with IntelliJ that you can not do with Eclipse.</p> <p><strong>Note</strong>: This is not a subjective question nor at all meant to turn into a holy IDE war. <strong><em>Please downvote any flamebait answers</em></strong>. Thanks.</p> http://stackoverflow.com/questions/1763130/how-to-fetch-current-state-of-a-wave 1 How to fetch current state of a Wave? Epaga 2009-11-19T13:01:05Z 2009-11-19T13:03:39Z <p>With the current Wave API, is there any way to fetch the current state of a Wave? I want to write a little notifier app that observes any changes in a certain wave and notifies me...</p> http://stackoverflow.com/questions/1748788/have-program-recognize-it-crashed-last-time 5 Have program recognize it crashed last time? Epaga 2009-11-17T13:13:47Z 2009-11-17T16:51:18Z <p>What is the best way to have a (Java) program recognize it crashed last time it ran and show a message along the lines of "it looks like this program crashed on you last time. Report this problem here: bla@foo.com ...."</p> <p>Is there a recommended way of doing this? (Bad?) ideas I had would be:</p> <ul> <li>Have the program store a temporary key file at startup and then delete it when closing regularly. If the file exists at startup, show the message.</li> <li>Recognize deadlocks and store an "error file" in this case. If an "error file" exists at startup, show the error message and move the file into an archive or something similar.</li> </ul> http://stackoverflow.com/questions/589905/equivalent-of-double-clickable-sh-and-bat-on-mac 4 Equivalent of double-clickable .sh and .bat on Mac? Epaga 2009-02-26T10:06:34Z 2009-11-12T11:18:44Z <p>I am distributing a Java program where I want a double-clickable file to run</p> <pre><code>java -cp MyProgram.jar;MyLib.jar my.program.Main </code></pre> <p>On Windows I simply distribute a .bat file, for *nix an executable .sh file. Problem is, double-clicking the .sh file just opens it up in a text editor on Mac. What should I do for Mac?</p> http://stackoverflow.com/questions/1661204/how-do-you-organize-your-work/1674100#1674100 2 Answer by Epaga for How do you organize your work? Epaga 2009-11-04T14:29:38Z 2009-11-05T09:54:22Z <p>If you're at all used to Emacs, you might LOVE <strong><a href="http://orgmode.org" rel="nofollow">org-mode</a></strong>. I was not an emacs user, so it was a pretty steep learning curve for me, but it was so worth it. I now have a super fast plain-text based system with</p> <ul> <li>hierarchical folding</li> <li>search</li> <li>tagging</li> <li>scheduling / clocking</li> <li>RSS fetching</li> <li>email capabilities</li> <li><a href="http://mobileorg.ncogni.to" rel="nofollow">NEW iPhone addon</a></li> </ul> <p>all with a simple(?) Emacs addon. Frickin' perfect for me (and I'm a confessing productivity porn addict).</p> <p><hr></p> <p>Secret tip for free: Combine this with the auto-file-syncing <a href="https://www.getdropbox.com/referrals/NTMyOTg0OQ" rel="nofollow">Dropbox</a> (2.25 GB cloud space for free) and you'll never want anything else ever again. Well maybe that's a little bit of an overstatement...</p> <p><hr></p> <p>Also, check out <a href="http://members.optusnet.com.au/~charles57/GTD/gtd%5Fworkflow.html" rel="nofollow">this article</a> which really helped me get off the ground with a system that works well. He combines GTD and orgmode.</p> http://stackoverflow.com/questions/1611904/selenium-how-to-test-whether-a-download-of-a-certain-file-was-started 2 (Selenium) How to test whether a download of a certain file was started? Epaga 2009-10-23T07:39:13Z 2009-10-23T08:49:24Z <p>I want to test whether a certain action results in a file download (a) at all, and (b) with the file having a certain name.</p> <p>Is there any way to use Selenium to do this?</p> http://stackoverflow.com/questions/1611979/remove-all-non-word-characters-from-a-string-in-java-leaving-accented-characte 3 Remove all non-"word characters" from a String in Java, leaving accented characters? Epaga 2009-10-23T08:01:23Z 2009-10-23T08:20:05Z <p>Apparently Java's Regex flavor counts Umlauts and other special characters as non-"word characters" when I use Regex.</p> <pre><code> "TESTÜTEST".replaceAll( "\\W", "" ) </code></pre> <p>returns "TESTTEST" for me. What I want is for only all truly non-"word characters" to be removed. Any way to do this without having something along the lines of</p> <pre><code> "[^A-Za-z0-9äöüÄÖÜßéèáàúùóò]" </code></pre> <p>only to realize I forgot ô?</p> http://stackoverflow.com/questions/1611979/remove-all-non-word-characters-from-a-string-in-java-leaving-accented-characte/1611995#1611995 0 Answer by Epaga for Remove all non-"word characters" from a String in Java, leaving accented characters? Epaga 2009-10-23T08:05:43Z 2009-10-23T08:05:43Z <p>Well, here is one solution I ended up with, but I hope there's a more elegant one...</p> <pre><code> StringBuilder result = new StringBuilder(); for(int i=0; i&lt;name.length(); i++) { char tmpChar = name.charAt( i ); if (Character.isLetterOrDigit( tmpChar) || tmpChar == '_' ) { result.append( tmpChar ); } } </code></pre> <p><code>result</code> ends up with the desired result...</p> http://stackoverflow.com/questions/1606411/codecoverage-vs-expectedexception/1606461#1606461 0 Answer by Epaga for CodeCoverage vs ExpectedException Epaga 2009-10-22T11:00:52Z 2009-10-22T11:00:52Z <p>Yep this is pretty standard fare - a lot of our tests do the same. At the same time, you have to wonder if you're not placing too high a value on code coverage if those half-branches weigh in so much for it to be worth the effort.</p> http://stackoverflow.com/questions/1588211/how-to-submit-new-entity-as-well-as-clear-anchor-task 0 How to submit new entity as well as clear $anchor.task? Epaga 2009-10-19T11:41:47Z 2009-10-20T03:38:55Z <p>Using the <a href="http://getangular.com" rel="nofollow">Angular</a> framework, how do I have the "submit" button both update the current entity as well as clear the anchor ID - I basically want to rapid-fire add entries, but it always turns my add form into an edit form. Here's my current div which isn't working, it's like it's ignoring the "<code>$anchor.task=null</code>"...</p> <p>Note that the "Add New" button works fine!</p> <pre><code>&lt;div&gt; Description: &lt;input name="task.desc" ng-required&gt;&lt;br&gt; &lt;a href="#" ng-action="task.$save(); $anchor.task=null"&gt;Save&lt;/a&gt; &lt;input type="button" value="Add New" ng-action="$anchor.task=null"&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1542788/xpath-in-selenium-what-am-i-doing-wrong 0 xPath in Selenium - what am I doing wrong? Epaga 2009-10-09T09:29:03Z 2009-10-15T19:50:01Z <p>I have a page with the following snippet in the HTML:</p> <pre><code>... &lt;tbody id="c_scopePane4_tbody"&gt; &lt;tr id="c_scopePane4_tr_header"&gt; ... &lt;/tr&gt; &lt;/tbody&gt; ... </code></pre> <p>Now I'm trying to specify the <code>&lt;tr&gt;</code> tag with an XPath expression from within Selenium. Here's what I try:</p> <pre><code> //tr[@id='c_scopePane4_tr_header'] </code></pre> <p>This tells me </p> <pre><code>[error] locator not found: //tr[@id='c_scopePane4_tr_header'], error = Error: Element //tr[@id='c_scopePane4_tr_header'] not found </code></pre> <p>But if I change the XPath expression to:</p> <pre><code> //*[@id='c_scopePane4_tr_header'] </code></pre> <p>...then it works. What gives?</p> http://stackoverflow.com/questions/1503028/migration-from-subversion-to-git-in-a-company-setting 8 Migration from Subversion to Git in a company setting? Epaga 2009-10-01T10:02:00Z 2009-10-08T18:54:36Z <p>Is there anyone out there whose company has migrated from a medium to large Subversion repository to Git? If so:</p> <ul> <li>What were the pitfalls you had to overcome?</li> <li>How easy was it for your developers to make the switch and learn Git?</li> <li>Is it a good idea for companies to migrate at this point or should they wait for Git to become more mature (e.g. at this point there doesn't seem to be a good Git Eclipse plugin, is that right)?</li> </ul> http://stackoverflow.com/questions/1508194/is-there-a-way-to-automatically-convert-a-greasemonkey-script-into-a-bookmarklet 3 Is there a way to automatically convert a Greasemonkey script into a bookmarklet? Epaga 2009-10-02T07:45:37Z 2009-10-02T08:04:33Z <p>For those who don't know what a bookmarklet is: <a href="http://en.wikipedia.org/wiki/Bookmarklet" rel="nofollow">http://en.wikipedia.org/wiki/Bookmarklet</a></p> http://stackoverflow.com/questions/1498471/figure-out-method-name-from-line-number-in-java 0 Figure out method name from line number in Java? Epaga 2009-09-30T14:28:22Z 2009-09-30T14:50:41Z <p>Given a line number, the code file, as well as the compiled class file if necessary, what is the most elegant way to get the signature of the surrounding method (if the line number is even in a method)?</p> <p>Things to keep in mind:</p> <ul> <li>the line might not even be in a method</li> <li>the line might be in a method of an inner or anonymous class</li> </ul> <p><hr /></p> <p><strong>While Googling I discovered <a href="http://stackoverflow.com/questions/1026873/method-name-from-line-number">this duplicate question</a> so I'm closing this down myself.</strong></p> http://stackoverflow.com/questions/970275/a-good-alternative-to-crystal-reports-over-the-internet/1493114#1493114 1 Answer by Epaga for A good alternative to crystal reports over the internet Epaga 2009-09-29T15:00:29Z 2009-09-29T15:00:29Z <p>(disclaimer: I work for i-net software, but this is still my personal opinion, albeit a bit biased...)</p> <p><strong><a href="http://www.inetsoftware.de/products/crystalclear/" rel="nofollow">i-net Crystal-Clear</a></strong></p> <ul> <li>can read Crystal Reports templates</li> <li>powerful and simple API</li> <li>much more cost-efficient</li> <li>platform-independent because written in Java.</li> <li>can export to HTML or also a nice Java applet with zoom, search, and highlighting capabilities...</li> </ul> http://stackoverflow.com/questions/16396/easy-way-for-crystal-reports-to-ms-sql-server-reporting-services-conversion/1493056#1493056 1 Answer by Epaga for Easy way for Crystal Reports to MS SQL Server Reporting Services conversion Epaga 2009-09-29T14:53:05Z 2009-09-29T14:53:05Z <p>An alternative would be to use a much cheaper reporting solution which can read Crystal Reports templates, such as (our very own) Java-based <a href="http://www.inetsoftware.de/products/crystalclear" rel="nofollow">i-net Crystal-Clear</a>.</p> http://stackoverflow.com/questions/457229/how-to-cause-soft-references-to-be-cleared-in-java 5 How to cause soft references to be cleared in Java? Epaga 2009-01-19T10:54:56Z 2009-09-16T13:21:45Z <p>I have a cache which has soft references to the cached objects. I am trying to write a functional test for behavior of classes which use the cache specifically for what happens when the cached objects are cleared.</p> <p>The problem is: I can't seem to reliably get the soft references to be cleared. Simply using up a bunch of memory doesn't do the trick: I get an OutOfMemory before any soft references are cleared.</p> <p>Is there any way to get Java to more eagerly clear up the soft references?</p> <p><hr /></p> <p><strong>Found <a href="http://stackoverflow.com/questions/299659/what-is-the-difference-between-a-soft-reference-and-a-weak-reference-in-java">here</a></strong>: </p> <blockquote> <p>"It is guaranteed though that all SoftReferences will get cleared before OutOfMemoryError is thrown, so they theoretically can't cause an OOME."</p> </blockquote> <p>So does this mean that the above scenario MUST mean I have a memory leak somewhere with some class holding a hard reference on my cached object?</p> http://stackoverflow.com/questions/125701/getting-database-is-locked-error-messages-from-trac 0 Getting "database is locked" error messages from Trac Epaga 2008-09-24T06:29:30Z 2009-09-14T19:14:29Z <p>Wondering if anyone has gotten the infamous "database is locked" error from Trac and how you solved it. It is starting to occur more and more often for us. Will we really have to bite the bullet and migrate to a different DB backend, or is there another way?</p> <p>See these two Trac bug entries for more info:</p> <p><a href="http://trac.edgewall.org/ticket/3446" rel="nofollow">http://trac.edgewall.org/ticket/3446</a></p> <p><a href="http://trac.edgewall.org/ticket/3503" rel="nofollow">http://trac.edgewall.org/ticket/3503</a></p> <p><strong>Edit 1</strong> Thanks for the answer and the recommendation, which seems to confirm our suspicion that migrating to PostgreSQL seems to be the best option. The SQLite to PostgreSQL script is here: <a href="http://trac-hacks.org/wiki/SqliteToPgScript" rel="nofollow">http://trac-hacks.org/wiki/SqliteToPgScript</a> Here goes nothing...</p> <p><strong>Edit 2 (solved)</strong> The migration went pretty smooth and I expect we won't be seeing the locks any more. The speed isn't noticeably better as far as I can tell, but at least the locks are gone. Thanks!</p> http://stackoverflow.com/questions/178667/does-jeditorpane-have-charset-problems-when-showing-html 1 Does JEditorPane have Charset problems when showing HTML? Epaga 2008-10-07T14:21:39Z 2009-09-14T11:53:59Z <p>I have the following code:</p> <pre><code>import javax.swing.JEditorPane; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.ScrollPaneConstants; public class ScratchPad { public static void main(String args[]) throws Exception { String html ="&lt;html&gt;"+ "&lt;head&gt;"+ "&lt;meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\"/&gt;"+ // this is the problem right here "&lt;title&gt;Error 400 BAD_REQUEST&lt;/title&gt;"+ "&lt;/head&gt;"+ "&lt;body&gt;"+ "&lt;h2&gt;HTTP ERROR: 400&lt;/h2&gt;&lt;pre&gt;BAD_REQUEST&lt;/pre&gt;"+ "&lt;p&gt;RequestURI=null&lt;/p&gt;"+ "&lt;p&gt;&lt;i&gt;&lt;small&gt;&lt;a href=\"http://jetty.mortbay.org\"&gt;Powered by jetty://&lt;/a&gt;&lt;/small&gt;&lt;/i&gt;&lt;/p&gt;"+ "&lt;/body&gt;"+ "&lt;/html&gt;"; JFrame f = new JFrame(); JEditorPane editor = new JEditorPane(); editor.setEditable( false ); editor.getDocument().putProperty( "Ignore-Charset", "true" ); // this line makes no difference either way editor.setContentType( "text/html" ); editor.setText( html ); f.add( new JScrollPane(editor, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER) ); f.pack(); f.setVisible( true ); } } </code></pre> <p>If you run it, you'll notice the frame is blank. However, if I remove the "; charset=ISO-8859-1" from the meta tag, the HTML shows up. Any ideas why and what I can do to prevent this (other than manually hacking the HTML string over which I have no control...).</p> <p><strong>Edit #1</strong> - putProperty( "Ignore-Charset", "true" ) makes no difference unfortunately.</p> http://stackoverflow.com/questions/1411105/javahelp-handler-for-hyperlinks 0 JavaHelp Handler for Hyperlinks? Epaga 2009-09-11T14:10:30Z 2009-09-11T14:10:30Z <p>Using JavaHelp, is there any way to specify/register a custom handler to handle the event of someone clicking on a link in the help page?</p> http://stackoverflow.com/questions/1409628/monitoring-eclipse-performance-what-is-eclipse-doing 1 Monitoring Eclipse performance: what is Eclipse doing? Epaga 2009-09-11T08:09:27Z 2009-09-11T09:16:02Z <p>Lately I have been experiencing Eclipse Galileo (3.5) slowing down under Java 1.5b12 OR Java 1.6b10, every 10 to 15 minutes for about 30 seconds, it hits a 90-95% CPU load. The progress view shows nothing, however.</p> <p>I'm suspecting a plugin is causing issues, but what I'd need is some tool or plugin to monitor Eclipse for what it is doing during those spikes.</p> <p>Does such a plugin or tool exist?</p> <p><hr /></p> <p>Edit #1: added details about Eclipse version and Java version (d'uh, sorry)</p> http://stackoverflow.com/questions/1403913/error-while-loading-manipulator 1 "Error while loading manipulator" Epaga 2009-09-10T07:53:17Z 2009-09-10T08:39:46Z <p>I'm continually getting the following error under Eclipse Galileo while trying to install the WTP Web Page Editor plugin:</p> <pre><code>java.lang.IllegalStateException: Error while loading manipulator. at org.eclipse.equinox.internal.p2.touchpoint.eclipse.LazyManipulator.loadDelegate(LazyManipulator.java:54) at org.eclipse.equinox.internal.p2.touchpoint.eclipse.LazyManipulator.getConfigData(LazyManipulator.java:108) at org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.InstallBundleAction.installBundle(InstallBundleAction.java:76) at org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.InstallBundleAction.execute(InstallBundleAction.java:29) at org.eclipse.equinox.internal.p2.engine.ParameterizedProvisioningAction.execute(ParameterizedProvisioningAction.java:35) at org.eclipse.equinox.internal.provisional.p2.engine.Phase.mainPerform(Phase.java:129) at org.eclipse.equinox.internal.provisional.p2.engine.Phase.perform(Phase.java:72) at org.eclipse.equinox.internal.provisional.p2.engine.PhaseSet.perform(PhaseSet.java:44) at org.eclipse.equinox.internal.provisional.p2.engine.Engine.perform(Engine.java:54) at org.eclipse.equinox.internal.provisional.p2.ui.operations.ProvisioningUtil.performProvisioningPlan(ProvisioningUtil.java:389) at org.eclipse.equinox.internal.provisional.p2.ui.operations.ProfileModificationOperation.doExecute(ProfileModificationOperation.java:61) at org.eclipse.equinox.internal.provisional.p2.ui.operations.ProvisioningOperation.execute(ProvisioningOperation.java:37) at org.eclipse.equinox.internal.provisional.p2.ui.ProvisioningOperationRunner$1.run(ProvisioningOperationRunner.java:94) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) </code></pre> <p>One blog said Eclipse Galileo doesn't play well with Java 1.6 (what??), so I've tried running Eclipse with Java 1.5 but that hasn't helped. Has anyone else had this problem and been able to get around it?</p> <p><hr /></p> <p><strong>Edit</strong> BTW, below the error in the error log it also says</p> <p><code>session context was:(profile=epp.package.java, phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Install, operand=null --&gt; [R]javax.mail 1.4.0.v200905040518, action=org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.InstallBundleAction).</code></p> http://stackoverflow.com/questions/1816617/running-automated-web-browser-tests-under-hudson/1816630#1816630 Comment by Epaga on Running automated Web browser tests under Hudson Epaga 2009-12-03T09:29:05Z 2009-12-03T09:29:05Z No but how about saying what's in the link. Is it a picture of Jon Skeet? What is it? http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game Comment by Epaga on Programmer Puzzle: Encoding a chess board state throughout a game. Epaga 2009-12-02T14:18:11Z 2009-12-02T14:18:11Z sounds like someone is wanting to write a google wave chess game http://stackoverflow.com/questions/1764878/favorite-3rd-party-python-libraries Comment by Epaga on Favorite 3rd-party Python Libraries? Epaga 2009-11-24T13:41:46Z 2009-11-24T13:41:46Z awesome question, great list of stuff. http://stackoverflow.com/questions/1584406/google-wave-onblipsubmitted Comment by Epaga on google wave OnBlipSubmitted Epaga 2009-11-23T15:02:46Z 2009-11-23T15:02:46Z check out this open bug: <a href="http://code.google.com/p/google-wave-resources/issues/detail?id=158" rel="nofollow">code.google.com/p/google-wave-resources/&hellip;</a> http://stackoverflow.com/questions/1584406/google-wave-onblipsubmitted/1586989#1586989 Comment by Epaga on google wave OnBlipSubmitted Epaga 2009-11-23T14:57:49Z 2009-11-23T14:57:49Z There is a currently open bug that is causing robots to have issues writing text (except for using appendtext) <a href="http://code.google.com/p/google-wave-resources/issues/detail?id=158" rel="nofollow">code.google.com/p/google-wave-resources/&hellip;</a> http://stackoverflow.com/questions/1770742/runtime-getruntime-exec-with-a-non-ascii-string-in-windows/1770779#1770779 Comment by Epaga on Runtime.getRuntime().exec() with a non-ASCII string in Windows? Epaga 2009-11-20T14:34:33Z 2009-11-20T14:34:33Z perfect, that's what was missing. thanks. http://stackoverflow.com/questions/1741773/google-wave-python-tutorial-nothing-happens/1741973#1741973 Comment by Epaga on Google Wave Python Tutorial - Nothing happens Epaga 2009-11-19T15:48:17Z 2009-11-19T15:48:17Z it's working in the sandbox now, but not in the Preview. http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 Comment by Epaga on RegEx match open tags except XHTML self-contained tags Epaga 2009-11-18T08:22:34Z 2009-11-18T08:22:34Z I'd be very interested in a &quot;Making Of&quot; this answer: how did you do the Unicode signs? Did you use a certain editor for that? http://stackoverflow.com/questions/1700859/did-java-steal-away-the-fun-from-programming/1700902#1700902 Comment by Epaga on Did Java steal away the fun from programming? Epaga 2009-11-13T09:30:05Z 2009-11-13T09:30:05Z funny how the abundance of 3rd party libraries are always toted as a STRENGTH of python but a WEAKNESS of java... http://stackoverflow.com/questions/1715822/unit-test-for-thread-safe-ness/1715877#1715877 Comment by Epaga on Unit test for thread safe-ness? Epaga 2009-11-11T15:47:45Z 2009-11-11T15:47:45Z LOL this is awesome coming from a 16k guy :D http://stackoverflow.com/questions/1661204/how-do-you-organize-your-work/1661250#1661250 Comment by Epaga on How do you organize your work? Epaga 2009-11-05T10:52:46Z 2009-11-05T10:52:46Z +1 - GTD rocks. see the orgmode answer for a combo of GTD+orgmode. http://stackoverflow.com/questions/1661204/how-do-you-organize-your-work/1674100#1674100 Comment by Epaga on How do you organize your work? Epaga 2009-11-05T09:50:30Z 2009-11-05T09:50:30Z it took me about 3 days of having it open and forcing myself to use it as my system for me to have it really flow. http://stackoverflow.com/questions/1661204/how-do-you-organize-your-work/1661536#1661536 Comment by Epaga on How do you organize your work? Epaga 2009-11-05T09:48:49Z 2009-11-05T09:48:49Z +1. Mylyn rocks da house. http://stackoverflow.com/questions/377672/ipod-touch-iphone-development-on-windows Comment by Epaga on ipod touch / iphone development on Windows? Epaga 2009-11-03T13:38:44Z 2009-11-03T13:38:44Z i just voted to close as duplicate in favor of <a href="http://stackoverflow.com/questions/113547/iphone-development-on-windows" rel="nofollow" title="iphone development on windows">stackoverflow.com/questions/113547/&hellip;</a> (with 21k views and only 8 upvotes, which i still find humorous ) http://stackoverflow.com/questions/377672/ipod-touch-iphone-development-on-windows Comment by Epaga on ipod touch / iphone development on Windows? Epaga 2009-11-03T13:36:19Z 2009-11-03T13:36:19Z i think it's funny, Paul, yup. Note that my question was from last year, though, so I was one of the first. :) i'm willing to close as duplicate if we can agree on a good &quot;first post&quot; on this question. when i asked back in 2008, the search didn't show any similar questions...