active questions tagged eclipse - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:13:19Zhttp://stackoverflow.com/feeds/tag/eclipsehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814526/problem-building-executable-jar-with-maven0Problem building executable jar with mavenRMorrisey2009-11-29T03:14:29Z2009-11-29T15:06:08Z
<p>I am trying to generate an executable jar for a small home project called "logmanager" using maven, just like this:</p>
<p><a href="http://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven">http://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven</a></p>
<p>I added the snippet shown there to the pom.xml, and ran mvn assembly:assembly. It generates two jar files in logmanager/target: logmanager-0.1.0.jar, and logmanager-0.1.0-jar-with-dependencies.jar. I get an error when I double-click on the first jar:</p>
<pre><code>Could not find the main class: com.gorkwobble.logmanager.LogManager. Program will exit.
</code></pre>
<p>A slightly different error when I double-click the jar-with-dependencies.jar:</p>
<pre><code>Failed to load Main-Class manifest attribute from: C:\EclipseProjects\logmanager\target\logmanager-0.1.0-jar-with-dependencies.jar
</code></pre>
<p>I copied and pasted the path and classname, and checked the spelling in the POM. My main class launches fine from an eclipse launch configuration. Can someone help me figure out why my jar file won't run? Also, why are there two jars to begin with? Let me know if you need more information.</p>
<p>Thanks!</p>
<p>[Edit: my POM is now as follows:]</p>
<pre><code><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gorkwobble</groupId>
<artifactId>logmanager</artifactId>
<name>LogManager</name>
<version>0.1.0</version>
<description>Systematically renames specified log files on a scheduled basis. Designed to help manage MUSHClient logging and prevent long, continuous log files.</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<!-- nothing here -->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.gorkwobble.logmanager.LogManager</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- commons-lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<!-- Quartz scheduler -->
<dependency>
<groupId>opensymphony</groupId>
<artifactId>quartz</artifactId>
<version>1.6.3</version>
</dependency>
<!-- Quartz 1.6.0 depends on commons collections -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
<scope>runtime</scope>
</dependency>
<!-- Quartz 1.6.0 depends on commons logging -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1</version>
<scope>runtime</scope>
</dependency>
<!-- Quartz 1.6.0 requires JTA in non J2EE environments -->
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>1.1</version>
<scope>runtime</scope>
</dependency>
<!-- junitx test assertions -->
<dependency>
<groupId>junit-addons</groupId>
<artifactId>junit-addons</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
</dependencyManagement>
</project>
</code></pre>
http://stackoverflow.com/questions/1815726/run-without-debugging-in-eclipse0Run without debugging in eclipseTheArchedOne2009-11-29T14:55:32Z2009-11-29T15:00:16Z
<p>When I run my app on my phone from eclipse, it always runs in debug. This has only recently started to happen. I guess I must have inadvertently changed a preference or something, but can't work out what. Does anyone know how I can switch it back so I can run without debugging?</p>
<p>Thanks in advance</p>
<p>TAO</p>
http://stackoverflow.com/questions/1815457/android-ndk-autogenerate-function-declarations0Android NDK: Autogenerate function declarations?John2009-11-29T12:51:14Z2009-11-29T12:51:14Z
<p>I am trying to use a pre-existing native C library in my android project.. The library builds just fine with the NDK tools...</p>
<p>Now what I've come to understand is that I cannot just call into the library, but my library needs to include jni.h and add specific function declarations, like for example:</p>
<pre><code>JNIEXPORT jint JNICALL Java_com_MultPkg_Mult_mult(JNIEnv *, jobject, jint, jint);
</code></pre>
<p>But since I'm using an existing library I that is also used on other platforms I don't like the idea of littering the whole code with these definitions that will only end up wrapping my real functions...</p>
<p>Is there a way around this? And if this really is the only way, is there any way to automatically generate these based on my existing C function declarations/definitions?</p>
<p>Much appreciated</p>
http://stackoverflow.com/questions/1815403/how-to-generate-java-rmi-stubs-and-skeletons-from-interface1How to generate JAVA RMI stubs and skeletons from Interface?Boris Daich2009-11-29T12:33:48Z2009-11-29T12:38:13Z
<p>Is there an action (menu / shortcut) that I miss or plug-in to add to a basic JavaEE distribution of Eclipse 3.5 that will allow to generate / regenerate files that usualy done from command line call for rmic?</p>
<p>I am aware of the <a href="http://www.genady.net/rmi/v20/" rel="nofollow">"RMI Plug-in for Eclipse version 2.0"</a> I am looking for a free one.</p>
http://stackoverflow.com/questions/1679493/how-to-deploy-on-jboss-exploded-web-application-from-eclipse-galileo1How to deploy on JBoss exploded web application from Eclipse Galileo?Vladimir Bezugliy2009-11-05T09:55:02Z2009-11-29T10:57:37Z
<p>Is it possible to deploy on JBoss exploded web application(not archived war file) from Eclipse Galileo?</p>
http://stackoverflow.com/questions/1798411/file-system-regular-expression-search-tool0File system regular expression search toolSuperfilin2009-11-25T17:06:13Z2009-11-29T06:44:08Z
<p>What is the best tool to make complex (multi-line) regular expression file contents searches with good reporting capabilities? </p>
<p>I need to make a report over large Java/JSP code base and I have to make some charts afterward.</p>
<p>Eclipse is rather good at searches, but it does not provide good report of what is found. It just shows the tree of files, but I would like to see a table with columns corresponding to full match, each group, file name, file path, file date, may some version control information etc. Then I can transfer this table to Excel and make some graphs that I want.</p>
<p>Is there some generic file system search tool that has such capabilities? Or maybe there is some Eclispe plugin that can give better reports (note that I'm stuck on eclipse 3.1.2)?</p>
http://stackoverflow.com/questions/1771324/eclipse-as-an-ide-what-do-you-find-missing-as-a-beginner-in-java5Eclipse as an IDE - What do you find missing as a beginner in Java?Jay 2009-11-20T15:39:55Z2009-11-29T05:42:52Z
<p>I am working on a solution that aims at solving problems that newbie programmers experience when they are "modifying code" while bug fixing / doing change requests, on code in production. Eclipse, as we all know is a great IDE. Features such as Code Completion, Open Declaration, Type Hierarchy, Package Explorer, Navigator, Finding References etc aids people in fixing things quicker compared to say using something like Textpad.</p>
<p>If you are a newbie java programmer and you are using Eclipse IDE, what areas of the Eclipse IDE do you think were less helpful/ less intuitive? If you are a seasoned programmer, what are the common issues that newbies look up to you to solve for them? </p>
<p>Please ignore issues related to : Domain Expertise (Business Knowledge), Infra( where to test your change etc), performance related (eclipse search being slow,etc), Skill level in a particular language (think of the developer as a noob) ... and think one language - Java</p>
<p>I did a local survey in my small team and here are some: </p>
<ul>
<li>Newbies using Eclipse to handle code that is written to interfaces where the implementation is supplied at runtime. Doing a 'Open Declaration' will always show you an interface. This could be confusing at times.</li>
<li>Eclipse is not intuitive while developing EJBs. Sure, you know all you have to do to create a new bean is to right click and 'Create Bean', however, once created it shows no contextual help to what the next step should be. For instance, generating stubs.</li>
<li>When Data Source Mapping with entity beans, changing something screws up the entire flow of things and eclpise never complains / hints.</li>
<li>Developing applications that make use of Struts, eclipse doesn't tell you that when you change struts-config.xml, particular web flow would get affected.</li>
</ul>
<p>At this point, to me, as someone who is interested in collecting opinions for my research, it appears as if Eclipse could use more 'contextual runtime hints'.</p>
<p>I am sure the community would have a lot more to add... Please add more of your negative experiences (just from the code change perspective). </p>
<p><strong>EDIT:</strong>
<strong><em>I guess, my question was too lengthy and confusing. I am gonna rephrase it a bit and keep it short:</em></strong></p>
<p>While "making a code change" (not analogous to code formatting, infra related activities, CVS etc... say something like refactoring), what feature(s) of eclipse IDE did you not like / hate the most? Here are the examples: </p>
<ul>
<li>When modifying code that has been written to interfaces: 'Open Declaration /F3 on an object instance shows you the interface when the implementation is supplied at runtime'.</li>
<li>When changing apps using EJBs: No contextual help </li>
<li>When changing apps using MVCs(Spring / Struts) : No warnings about change impact.</li>
</ul>
http://stackoverflow.com/questions/98610/how-can-i-get-eclipse-to-show-files9How can I get Eclipse to show .* files?jodonnell2008-09-19T01:23:28Z2009-11-29T02:12:56Z
<p>By default, Eclipse won't show my .htaccess file that I maintain in my project. It just shows an empty folder in the Package Viewer tree. How can I get it to show up? No obvious preferences.</p>
http://stackoverflow.com/questions/556971/how-to-layout-folders-locally-and-in-svn-when-using-eclipse9How to layout folders locally and in SVN when using eclipseBrian Schimmel2009-02-17T14:12:45Z2009-11-28T21:27:16Z
<p>I've been working with eclipse and SVN for many years in teams from a single developer up to 12 and I always was the one to setup our folder structure. I managed to get it working somehow, but I feel that my folder layout is far from optimal. It's hard to tell what my typical folder layout looked like, because it looked very different each time.</p>
<p>I'm just starting another big project now, and I want to do it <em>the professional way</em> this time.</p>
<h2>Facts about the project</h2>
<p>Those are the facts right now:</p>
<ul>
<li>All developers will work with Eclipse</li>
<li>Some will be using Subclipse to integrate SVN into Eclipse, others will use external clients like Tortoise SVN or svnX </li>
<li>we're developing on Windows and Mac OS</li>
<li>we're using ant to automate building and junit testing</li>
<li>there will be multiple interrelated projects:
<ul>
<li>a library written in pure java, so it runs on all known java platforms</li>
<li>several applications for several java plattforms (J2SE, J2ME, android...). All those applications depend on the library mentioned before</li>
</ul></li>
</ul>
<h2>What to do with .project?</h2>
<p>I'm alway unsure wether to commit those files generated by eclipse (like ''.project'' and ''.classpath''). In prior projects, sometimes we put them into the SVN, sometimes we didn't, and both approaches had ther pros and cons. Once, we even committed the whole workspace, but that seemed to be a bad idea.</p>
<p>One key concept that I'm certainly missing is how Eclipse handles its workspace. By default, the whole project lies inside the workspace-folder, but there can be projects that are external, which are linked in some magic manner I just don't understand. </p>
<h2>Possible folder layouts</h2>
<p>I'm unsure how to layout the project locally <em>and</em> on the repository. I think there are three possibilities:</p>
<ul>
<li>the workspace is a subfolder of my local working copy (like c:\code\myWorkingCopies\projectXyz\trunk\workspace)</li>
<li>my workspace IS my working copy (I use c:\code\myWorkingCopies\projectXyz\trunk\ as workspace)</li>
<li>My workspace is somewhere (c:\code\workspace) and my working copy somewhere else (c:\code\myWorkingCopies\projectXyz\trunk) and I have those external projects</li>
<li>any other ideas?</li>
</ul>
<h2>What kind of answer am I looking for?</h2>
<p>A dummy folder structure, maybe something like that (do I just answer my own question?):</p>
<ul>
<li>trunk
<ul>
<li>projects
<ul>
<li>projectA</li>
<li>projectB</li>
</ul></li>
</ul></li>
</ul>
<p>Along with a hint what to checkout where, like that:</p>
<ul>
<li>checkout trunk/projects to c:\code...)</li>
</ul>
<p>And some guidlines like</p>
<ul>
<li>never upload files of type x,y,z...</li>
</ul>
http://stackoverflow.com/questions/1805738/eclipse-perforce-is-it-possible-to-avoid-interrupting-a-build-to-check-out-a-f1Eclipse + Perforce: Is it possible to avoid interrupting a build to check out a file?averisk2009-11-26T21:29:38Z2009-11-28T20:53:07Z
<p>This may be somewhat obscure but I've been happily using Eclipse + Perfoce/P4WSAD for over a year now and have thus far been unable to figure this out myself. I often start a build and let it run in the background while I continue to edit source files. The problem occurs when I try to edit a file that is not checked out from perforce. In this case, eclipse pops up a modal dialog box that forces me to choose between either canceling the build or canceling the check-out operation. So usually I just cancel the build, check out the file, and start the build up again, but this is very time consuming. Is it possible to get eclipse to allow check-outs during builds?</p>
http://stackoverflow.com/questions/1813273/is-eclipse-a-panacea-for-java-based-software-maintenance0Is Eclipse a panacea for Java based software maintenance [closed]HT2009-11-28T18:20:06Z2009-11-28T18:22:40Z
<p>Eclipse makes software maintenance a breeze. But are there use cases/situations where it was felt, wish Eclipse could have offered moreā¦.For example warned about non-compliance to architecture norms, regression to expected functional behaviourā¦.</p>
http://stackoverflow.com/questions/1800634/diff-tool-that-can-compare-sub-sections-of-files1Diff tool that can compare sub-sections of filesEvilPuppetMaster2009-11-25T23:20:52Z2009-11-28T15:26:07Z
<p>I'm looking for a diff tool that will allow me to compare just a sub-section of a file with a section of another file, or even of itself. Preferably eclipse based but will take all suggestions.</p>
<p>Yes I know I can copy out the two sections into different files and compare those, but that is very tedious when you are trying to do a large amount of refactoring.</p>
<p>Basically I'm trying to remove as much duplicated code as possible from a code base that is suffering from a great deal of ctrl-V 'inheritance' ;-) However the pasted parts have evolved apart a little over time.</p>
http://stackoverflow.com/questions/505389/how-do-i-update-an-eclipse-template-variable-on-the-fly0How do I update an Eclipse template variable on the fly?Nocturne2009-02-02T23:13:49Z2009-11-28T09:00:02Z
<p>I've added the following new Eclipse template via extension point. It simply adds a template for a sample <em>testTag</em> tag.</p>
<pre><code><!-- Add code template -->
<extension point="org.eclipse.ui.editors.templates">
<template autoinsert="true"
contextTypeId="html_tag"
description="[Description] Template populated by Snippet values ***"
id="org.eclipse.jst.jsf.ui.newHtmltag"
name="testTag">
<pattern>
<![CDATA[
<testTag style="background: ${color}"></testTag>
]]>
</pattern>
</template>
<resolver
contextTypeId="html_tag"
type="src"
class="TestTagTemplateVariableResolver">
</resolver>
</extension>
</code></pre>
<p>What I'd cannot figure out is how to change the value of the $(color) variable at runtime. More specifically, when the user presses Ctrl+Space (or the equivalent for content-assist) and types in "testTag" and presses Enter -- instead of the "color" placeholder text, I'd like it replaced by some other text value I have in another class. How do I do this?</p>
http://stackoverflow.com/questions/1809006/problem-updating-eclipse-ganymede0Problem updating Eclipse GanymedeFermin2009-11-27T14:10:39Z2009-11-28T08:55:14Z
<p>Hi,</p>
<p>I am predominately a .NET developer so forgive me if I am missing something obvious. I use Eclipse Ganymede (3.4.0) for Blackberry development.</p>
<p>I have Blackberry JDE Plugin 4.3.0.8 installed and would like to install 4.5.0. I try using Help -> Software Updates to get it but get the following error:</p>
<p><strong><em>"Cannot launch the Update UI. This installation has not been configured properly for Software Updates".</em></strong></p>
<p>Any ideas on how to fix this? Failing that any ideas how to install 4.5.0 without using the Update facility in eclipse? I have installed the 4.5.0 component back but it has not put it into eclipse, just installed files in c:\Program Files\Research In Motion.</p>
<p>I'd rather not do a fresh installation of eclipse!</p>
http://stackoverflow.com/questions/122110/is-there-a-way-to-get-jadclipse-working-with-eclipse-3-44Is there a way to get jadclipse working with Eclipse 3.4?Alex Argo2008-09-23T16:26:47Z2009-11-28T03:51:15Z
<p>I'm a big fan of the Jadclipse plugin and I'd really like to upgrade to Eclipse 3.4 but the plugin currently does not work. Are there any other programs out there that let you use jad to view source of code you navigate to from Eclipse? (Very useful when delving into ambiguous code in stack traces).</p>
http://stackoverflow.com/questions/1804839/eclipse-most-useful-refactorings5Eclipse: Most useful refactoringsAdrian2009-11-26T17:11:22Z2009-11-27T20:31:30Z
<p>Every now and again, I make use of the Eclipse refactoring feature. Some techniques are more obvious then others and some I never tried.</p>
<p>What refactoring is most useful for you and why?</p>
<p>Note: I find this presentation very useful, perhaps because it is example driven therefore easy to understand
"<a href="http://www.ibm.com/developerworks/library/os-ecref/" rel="nofollow">Refactoring for everyone - How and why to use Eclipse's automated refactoring features</a>"</p>
http://stackoverflow.com/questions/1798468/svn-not-working-in-eclipse4SVN not working in EclipseTrue Soft2009-11-25T17:15:10Z2009-11-27T20:20:00Z
<p>One day I pressed in Eclipse <code>Help</code> -> <code>Check for Updates</code> (and I learnt that I should Never Ever update a software which works fine.)</p>
<p>Then in a project that I used with SVN the whole submenu of "Team" and the little icons that showed that some files weren't commited, they all dissapeared.</p>
<p>I tried everything: </p>
<ul>
<li>revert from <code>Instalation History</code> tab</li>
<li>uninstall from <code>Installed Software</code> tab</li>
<li>replaced the folder <code>eclipse</code> in <code>Program Files</code> with a new one downloaded from eclipse website and tried to install again</li>
<li>searched how to install it on the net</li>
</ul>
<p>But in none of the cases above if I press <kbd>Ctrl+N</kbd> There is no SVN group;
If i right click on a project and select <code>Team</code> -> <code>Share project</code>, a window with CVS appears, but no SVN.
If I choose <code>File</code> -> <code>Import</code> I can't find SVN anywhere.</p>
<p>If I go to <code>Help</code> -> <code>About Eclipse</code> -> <code>Instalation details</code> I see at <code>Instalation History</code> in 25.06.2009, 09:59:08 GMT+03:00 (when SVN worked)</p>
<pre><code>Eclipse IDE for Java EE Developers 1.2.0.20090621-0820
Subclipse (Required) 1.6.2
Subversion JavaHL Native Library Adapter (Required) 1.6.3
SVNKit Library 1.3.0.5847
</code></pre>
<p>In the <code>Installed Software</code> tab I have now installed </p>
<pre><code>Eclipse IDE for Java EE Developers 1.2.0.20090621-0820 epp.package.jee
Subclipse (Required) 1.6.5 org.tigris.subversion.subclipse.feature.group
Subversion JavaHL Native Library Adapter (Required) 1.6.6 org.tigris.subversion.clientadapter.javahl.feature.feature.group
SVNKit Library 1.3.1.6109 org.tmatesoft.svnkit.feature.group
</code></pre>
<p>How can I make SVN to work?<br>
Where does eclipse store its files, because when I changed the eclipse directory with a new one all my stuff was there (the ones that I installed with no success: SVN, Subversive, Subclipse, SVNKit, ...)</p>
http://stackoverflow.com/questions/1809865/eclipse-to-play-nice-wtih-svn-version-control-and-wamp-development-environment0Eclipse to play nice wtih SVN version control and WAMP development environmentDan2009-11-27T17:27:53Z2009-11-27T20:19:58Z
<p>I've been using a WAMP stack for a while now and have my projects organized in this way</p>
<pre><code>wamp/www/project1
wamp/www/project2
wamp/www/project3
etc.
</code></pre>
<p>Now I started to use Eclipse for PHP and have a workspace that's located in my C drive at</p>
<pre><code>C:/my_eclipse_workspace
</code></pre>
<p>When I create new project in eclipse, a folder gets created for it at </p>
<pre><code>C:/my_eclipse_workspace/project1
</code></pre>
<p>Then on top of that I need to start using a local version control repository on my system. All this is getting me scratching my head. How do I use Eclipse + have my project files in their appropriate wamp directory (e.g. wamp/www/project1 so they can launched easily from within the browser like I normally do) all while keeping the project somewhere under SVN? This may be simple and I'm just not getting it, so a detailed slow answer for the stupid would be much appreciated here.</p>
http://stackoverflow.com/questions/1810289/what-is-the-easiest-way-to-debug-embedded-jython-in-eclipse0What is the easiest way to debug embedded jython in eclipse?rapto2009-11-27T19:13:56Z2009-11-27T19:13:56Z
<p>I know I can debug embedded (launched from a Java program) Jython with a remote Pydev debugger. Is there a simpler way to do it?</p>
http://stackoverflow.com/questions/1809205/eclipse-galileo-does-not-deploy-external-jars-into-web-inf-lib-directory1Eclipse Galileo does not deploy external jars into WEB-INF/lib directoryVladimir Bezugliy2009-11-27T14:52:09Z2009-11-27T15:48:24Z
<p>I created new web project testweb.</p>
<p>By default default output folder is <strong>testweb\build\classes</strong>.</p>
<p>Added some jars to build path.</p>
<p>Then selected these jars in "Java EE Module Dependencies" in order to Eclipse put this jars into WEB-INF/lib during deploying on some server.</p>
<p>Then I deployed this web application from Eclipse on server(JBoss).</p>
<p>All is ok - there are jars in WEB-INF/lib directory.</p>
<p>But if I change default output folder from <strong>testweb\build\classes</strong> to <strong>testweb\web\WEB-INF\classes</strong> Eclipse stops to deploy external jars to WEB-INF/lib directory.</p>
<p>This directory is empty!
Why?
What is wrong?</p>
http://stackoverflow.com/questions/1453690/does-junit-have-some-weird-30-character-length-limit-on-the-name-of-your-class3Does JUnit have some weird 30 character length limit on the name of your class?uriDium2009-09-21T09:50:26Z2009-11-27T14:56:24Z
<p>I have a class that I made for some unit tests. Everything was going swimmingly until I changed the name of the class to match the class that I was testing suffixed with TestCase. All of a sudden every time I tried to run the test case in Eclipse I get a "There is no input configuration for this type".</p>
<p>Someone then suggested that there is a 30 character length limit on the name of the class. I had a look at the class name and it was 32 characters long. I then deleted two characters off the end and tried again and everything worked. I put them back and it stopped working.</p>
<p>Is there an explanation for this?</p>
<p>EDIT:</p>
<p>In response to some of the comments. It is Galileo, using Windows XP, JUnit 4.4.</p>
<p>EDIT 2:</p>
<p>Sorry guys. I guess I was wrong. The pattern seems to be that JUnit/Eclipse does not like my class name being TestCase. As soon as I take the TestCase part away it works. It works with a massively long string, short strings and everything in between. The name can be anything like ABCTestCase it just CANNOT be for some reason TestCase.</p>
http://stackoverflow.com/questions/1808994/oracle-c-linux-and-more-weird-stuff0Oracle C++ linux and more weird stuffawregan2009-11-27T14:09:01Z2009-11-27T14:39:21Z
<p>So here is the story. I have this device that uses Linux and more open source tools(btw its an <strong>ARM</strong>). And I was given the task of creating some magic cashier application with it.</p>
<p>I have done it and now my boss have made a new request. He wants me to make that stuff(the device) connect to a remote database(preferably <strong>Oracle</strong>). So thats what I started doing with the light version of oracle instant client. Everything is fine and cool until I ran my first hello world:</p>
<pre><code>#include <occi.h>
using namespace oracle::occi;
int main(){
Environment *env = Environment::createEnvironment();
Connection *conn = env->createConnection("HR", "password");
env->terminateConnection(conn);
Environment::terminateEnvironment(env);
return 0;
}
</code></pre>
<p>Linking against <strong>occi, clntsh, thread</strong>;
And setting the library search path, along other stuff to: "<strong>${workspace_loc:/OracleTest/instantclient_10_2}</strong>" that is the directory that holds my <strong>.so</strong> files;</p>
<p>Here is the compilation command:</p>
<pre><code>ucfront-g++ -Wl,-elf2flt="r" -static -o OracleTest ./main.o -locci -lclntsh -lthread -L/usr/local/arm-elf/lib -L"C:\workspace\OracleTest\instantclient_10_2" -L/usr/local/fit-libs/lib
</code></pre>
<p>And here is the error:</p>
<pre><code>/usr/local/arm-elf/bin/ld.real: cannot find -locci collect2: ld returned 1 exit status
</code></pre>
<p>And there are a few things that I would like to mention:</p>
<p>1- I'm running <strong>windows</strong> and compiling this for <strong>linux</strong>, the instant client version that I've downloaded is for linux x86(No Idea if that will work or if it could be the source of the problem).</p>
<p>2- I'm using a modified version of <strong>eclipse</strong> to develop, specific for that device.</p>
<p>3- I have no idea if I should move those <strong>Oracle</strong> libs to the device after the compilation, so if anyone could give me orientation on that, I would be very thankful.</p>
<p>TLDR: I wan't to compile the above code but it fails to link, help, please!</p>
<p><strong>EDIT</strong>:</p>
<p>To the two first answers, no I haven't found any specific ARM libraries, I don't think there are any.</p>
<p>Here is the link if anyone can find anything that resemble an ARM distribution I would be thankful.
There are two <strong>RISC</strong> distribution but I don't know if they are compatible with <strong>ARM</strong> :</p>
<pre><code>Instant Client for HP-UX PA-RISC (64-bit)
Instant Client for HP-UX PA-RISC (32-bit)
</code></pre>
http://stackoverflow.com/questions/1805921/why-am-i-stuck-on-initiating-update-when-deploying-to-google0why am I stuck on "Initiating update" when deploying to googlemichelle2009-11-26T22:22:21Z2009-11-27T14:03:26Z
<p>I've have not had any trouble deploying through eclipse until now.</p>
<p>I'm guessing it might have to do with all the stuff I've added today</p>
<ul>
<li>a folder of .pdf and .tex files (in war/web-inf directory) </li>
<li>a bit of JDO stuff</li>
<li>and a servlet that reads the files in the directory and indexes them into the JDO</li>
</ul>
<p>Is there any way to find out what exactly is the problem?
I currently get stuck at "Initiating update"
and the stack trace say "ConnectionReset" </p>
<p>Any helkp of imput will be appreciated, I really need to deploy this today, thanks!</p>
<p>here's the deploy trace:</p>
<pre><code>Unable to update:
java.net.SocketException: Connection reset
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection$6.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at sun.net.www.protocol.http.HttpURLConnection.getChainedException(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.HttpURLConnection.getResponseCode(Unknown Source)
at com.google.appengine.tools.admin.ServerConnection.getAuthCookie(ServerConnection.java:315)
at com.google.appengine.tools.admin.ServerConnection.authenticate(ServerConnection.java:219)
at com.google.appengine.tools.admin.ServerConnection.send(ServerConnection.java:145)
at com.google.appengine.tools.admin.ServerConnection.post(ServerConnection.java:81)
at com.google.appengine.tools.admin.AppVersionUpload.send(AppVersionUpload.java:427)
at com.google.appengine.tools.admin.AppVersionUpload.beginTransaction(AppVersionUpload.java:241)
at com.google.appengine.tools.admin.AppVersionUpload.doUpload(AppVersionUpload.java:98)
at com.google.appengine.tools.admin.AppAdminImpl.update(AppAdminImpl.java:56)
at com.google.appengine.eclipse.core.proxy.AppEngineBridgeImpl.deploy(AppEngineBridgeImpl.java:271)
at com.google.appengine.eclipse.core.deploy.DeployProjectJob.runInWorkspace(DeployProjectJob.java:148)
at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:38)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
</code></pre>
<p>Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(Unknown Source)
at java.io.BufferedInputStream.fill(Unknown Source)
at java.io.BufferedInputStream.read1(Unknown Source)
at java.io.BufferedInputStream.read(Unknown Source)
at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getHeaderFieldKey(Unknown Source)
at com.google.appengine.tools.util.ClientCookieManager.readCookies(ClientCookieManager.java:123)
at com.google.appengine.tools.admin.ServerConnection.connect(ServerConnection.java:340)
at com.google.appengine.tools.admin.ServerConnection.getAuthCookie(ServerConnection.java:314)
... 11 more</p>
http://stackoverflow.com/questions/1808651/eclipse-debugger-attaching-source-code-of-maven-managed-libraries1eclipse debugger: attaching source-code of maven managed librariesmeriton2009-11-27T13:01:55Z2009-11-27T14:00:42Z
<p>I'd like to use the source code of maven-managed dependencies when debugging our webapp in eclipse.</p>
<p>I have managed to attach the sources to the libraries in the "Maven Managed Depedencies" classpath container, i.e. when I open a class file from a depedency (e.g. using Ctrl-Shift-T), I see the source code.</p>
<p>However, when I launch the tomcat within eclipse, and execution halts on a breakpoint in that same class, the editor pane only displays the text "source not found", and a button to edit the "source lookup path". I have attempted to manually add the "Maven Managed Dependencies" classpath container, only to be told "Use maven project settings to configure depedency resolution". However, I see no useful setting in that property pane ...</p>
<p>How can I attach those sources?</p>
http://stackoverflow.com/questions/1801952/why-do-only-certain-feeds-get-recovered-from-google-reader0Why do only certain feeds get recovered from google reader?Andrew C2009-11-26T06:52:14Z2009-11-27T13:24:09Z
<p>I want to parse the results of a public google reader feed of mine. I am writing an app in gwt and up to this point I had been following an example with the line:</p>
<pre><code>String gdata =
"http://www.google.com/base/feeds/snippets?alt=json-in-script&callback=";
</code></pre>
<p>The feed is retrieved,</p>
<pre><code>public void handle(JavaScriptObject jso) {
JSONObject json = new JSONObject(jso);
JSONArray ary = json.get("feed").isObject().get("entry").isArray();
Window.alert(json.toString());
}
</code></pre>
<p>and the data is displayed on the panel + i see it in the alert window. However, when I change the url so that I can use my feed rather than an example, nothing works.</p>
<p>Here are some of the ways I've tried to format my url:</p>
<pre><code>http://www.google.com/reader/public/javascript/feed/http://www.google.com/reader/public/atom/user%2F17524205173321155204%2Flabel%2Fpub?alt=json-in-script&callback=
http://www.google.com/reader/public/javascript/feed/http://www.google.com/reader/public/atom/user%2F11035509885961399965%2Fstate%2Fcom.google%2Fbroadcast?callback=?
http://www.google.com/reader/public/javascript/feed/http://www.google.com/reader/public/atom/user%2F11035509885961399965%2Fstate%2Fcom.google%2Fbroadcast?callback=?
</code></pre>
<p>Ostensibly the feeds are the same except for the example one that works has all the text on a single long line where the others have whitespace. Could this be causing an issue? What can I do to get around it?</p>
<p>I want to run regular expressions against the data im getting back from the feed. is there a better way to do this? </p>
<p>Thank you very much!</p>
http://stackoverflow.com/questions/1711980/how-to-use-messagedialog-open-with-questionwithcancel0How to use MessageDialog.open() with QUESTION_WITH_CANCEL?DJ2009-11-10T23:27:17Z2009-11-27T10:30:26Z
<p>I'm wondering how to use the new *QUESTION_WITH_CANCEL* dialog kind when opened with <code>MessageDialog.open(int kind, Shell parent, String title, String message,int style)</code>.</p>
<p>Since the open method is returning <em>boolean</em> and now we have 3 possible state from <strong>Yes</strong>, <strong>No</strong>, or <strong>Cancel</strong>.</p>
http://stackoverflow.com/questions/1802616/how-to-select-column-in-editors-notepad-kate-vim-netbeans-eclips2How to select column in editors ( Notepad++,kate ,vim , Netbeans , Eclips)SjB2009-11-26T09:38:43Z2009-11-27T06:47:56Z
<p>How to select column in editors ( Notepad++,Kate ,vim , Netbeans , Eclipse)?
for delete or insert or replace some characters . </p>
http://stackoverflow.com/questions/1789013/eclipse-plug-ins-disappeared-after-update0Eclipse plug-ins disappeared after updateRayZ2009-11-24T09:45:00Z2009-11-27T06:22:41Z
<p>Have been updated Eclipse PDT using <code>Window->Check for Updates</code> feature.
After restart all trird-party plug-ins seems like switched off.</p>
<p>Starting with <code>-clean</code> command line key doesn't helps.</p>
<p><code>Eclipse Installation Detals</code> contains information about all my plug-ins correctly.</p>
<p><hr></p>
<p>Error log: </p>
<pre><code>eclipse.buildId=M20090917-0800
java.version=1.6.0_05
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=ru_RU
Framework arguments: -product org.eclipse.epp.package.php.product
Command-line arguments: -os win32 -ws win32 -arch x86 -product org.eclipse.epp.package.php.product
!ENTRY org.eclipse.team.core 4 0 2009-11-24 12:52:00.804
!MESSAGE Could not instantiate provider org.eclipse.team.svn.core.svnnature for project Search.
!STACK 1
org.eclipse.team.core.TeamException: Could not instantiate provider org.eclipse.team.svn.core.svnnature for project Search.
at org.eclipse.team.core.RepositoryProvider.mapNewProvider(RepositoryProvider.java:165)
at org.eclipse.team.core.RepositoryProvider.mapExistingProvider(RepositoryProvider.java:235)
at org.eclipse.team.core.RepositoryProvider.getProvider(RepositoryProvider.java:507)
at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.isMappedToCVS(CVSLightweightDecorator.java:192)
at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.decorate(CVSLightweightDecorator.java:147)
at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:263)
at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:81)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:365)
at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:347)
at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:371)
at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:331)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
!SUBENTRY 1 org.eclipse.team.core 4 0 2009-11-24 12:52:00.804
!MESSAGE Could not instantiate provider org.eclipse.team.svn.core.svnnature for project Search.
</code></pre>
http://stackoverflow.com/questions/1804913/why-does-eclipse-crash-with-xmx-xxmaxpermsize-above-certain-values1Why does Eclipse crash with Xmx, XX:MaxPermSize above certain values?gsmd2009-11-26T17:33:02Z2009-11-27T05:17:55Z
<p>Running Eclipse 3.5.1, JDK 1.6.0_17 on WinXP SP3 32Bit with 3.5 gigs of RAM.<br>
I'm aware of the known <a href="http://stackoverflow.com/questions/142357/what-are-the-best-jvm-settings-for-eclipse">Eclipse best practices</a>, still trying to figure out eclipse.ini. </p>
<p>This will launch: <code>-Xmx588m</code> and this won't: <code>-Xmx589m</code>.<br>
Same with <code>-XX:MaxPermSize</code>. Anything above <code>-XX:MaxPermSize=140m</code> won't launch.<br>
The screen of death is simlar to <a href="http://punyaku.com/eclipse34%5Fstart%5Ferror.png" rel="nofollow">this</a> (taken from <a href="http://stackoverflow.com/questions/1587002/eclipse-3-4-cant-start">here</a>).</p>
<p>Any ideas on why might this be happening?</p>
http://stackoverflow.com/questions/1806393/is-there-a-way-to-extract-a-class-with-methods-in-eclipse6Is there a way to extract a class with methods in eclipse?John Baker2009-11-27T01:27:48Z2009-11-27T05:07:14Z
<p>I am trying to refactor a class I have into 2 classes. Unfortunately eclipse's extract class function seems to only support the variables which really isn't all that helpful. Is there a way to do it that extracts the methods or Is there a plugin that does it? Thanks </p>