Kodo 3.1.12 and Eclipse

Hi,
I have added Kodo plugin to Eclipse (version 3) . I have added Kodo
enhancer to Build sequence for the project. However when I run build I get
an error and eclipse log file has following exception:
ava.lang.NoClassDefFoundError: org/apache/log4j/Category
     at
com.solarmetric.log.Log4JLogFactory.newLogAdapter(Log4JLogFactory.java:19)
     at com.solarmetric.log.LogFactoryAdapter.getLog(LogFactoryAdapter.java:25)
     at
com.solarmetric.conf.ConfigurationImpl.getLog(ConfigurationImpl.java:115)
     at kodo.enhance.JDOEnhancer.run(JDOEnhancer.java:2168)
     at
kodo.jdbc.integration.eclipse.EnhancerBuilder.build(EnhancerBuilder.java:40)
     at
org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:564)
     at
org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615)
     at org.eclipse.core.runtime.Platform.run(Platform.java:747)
     at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:157)
     at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:249)
     at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:202)
     at
org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:229)
     at
org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615)
     at org.eclipse.core.runtime.Platform.run(Platform.java:747)
     at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:232)
     at
org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:268)
     at
org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:297)
     at org.eclipse.core.internal.resources.Workspace.build(Workspace.java:198)
     at
org.eclipse.ui.actions.GlobalBuildAction$1.run(GlobalBuildAction.java:182)
     at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66)
I have copied the log4j jar to kodo plugin directory and added libarary
tag to plugin.xml as following:
     <library name="log4j-1.2.8.jar"/>
What am I doing wrong?

Mark,
Here is my plugin.xml. classes12.jar is in the same directory as the
plugin.xml
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="kodo"
     name="%name"
     version="1.0.1"
     provider-name="%provider-name"
     class="kodo.jdbc.integration.eclipse.KodoPlugin">
     <runtime>
     <!--
     Put your jdbc driver in this directory and enter the filename
     here (and configure in Preferences the changes you make) -->
          <library name="classes12.jar"/>
<!-- ########### do not modify below ######### -->
<!-- ########### do not modify below ######### -->
<!-- ########### do not modify below ######### -->
<!-- ########### do not modify below ######### -->
<!-- ########### do not modify below ######### -->
          <library name="kodo-jdo.jar"/>
          <library name="jakarta-commons-collections-2.1.jar"/>
          <library name="jakarta-commons-lang-1.0.1.jar"/>
          <library name="jakarta-commons-pool-1.0.1.jar"/>
          <library name="jakarta-regexp-1.1.jar"/>
          <library name="jca1.0.jar"/>
          <library name="jdbc2_0-stdext.jar"/>
          <library name="jdo-1.0.1.jar"/>
          <library name="jta-spec1_0_1.jar"/>
          <library name="xalan.jar"/>
          <library name="xercesImpl.jar"/>
          <library name="xml-apis.jar"/>
          <library name="jfreechart-0.9.16.jar"/>
          <library name="jcommon-0.9.1.jar"/>
          <library name="mx4j-admb.jar"/>
          <library name="mx4j-jmx.jar"/>
          <library name="mx4j-tools.jar"/>
          <library name="jline.jar"/>
          <library name="sqlline.jar"/>
     </runtime>
     <requires>
          <import plugin="org.eclipse.ui"/>
          <import plugin="org.eclipse.core.resources"/>
          <import plugin="org.eclipse.jdt.core"/>
          <import plugin="org.eclipse.jdt.launching"/>
     </requires>
     <extension point="org.eclipse.ui.actionSets">
          <actionSet id="kodo.jdbc.integration.eclipse.actionSet"
               label="%action-set-name"
               visible="true">
               <menu id="kodo.menu"
                    label="%group-label">
                    <separator name="baseGroup"/>
               </menu>
               <action id="kodo.removeBuilder"
                    label="%remove-builder-label"
          class="kodo.jdbc.integration.eclipse.RemoveBuilderAction"
                    tooltip="%remove-builder-tooltip"
                    menubarPath="kodo.menu/baseGroup"
                    enablesFor="1">
               </action>
               <action id="kodo.addbuilder"
                    label="%add-builder-label"
               class="kodo.jdbc.integration.eclipse.AddBuilderAction"
                    tooltip="%add-builder-tooltip"
                    menubarPath="kodo.menu/baseGroup"
                    enablesFor="1">
               </action>
               <action id="kodo.mapping.build"
                    label="%mapping-build-label"
                    tooltip="%mapping-build-tooltip"
               class="kodo.jdbc.integration.eclipse.MappingToolAction$BuildSchema"
                    icon="icons/BuildSchemaMappingTool.gif"
                    menubarPath="kodo.menu/baseGroup"
                    toolbarPath="Normal/Kodo"
                    enablesFor="+">
                    <selection class="org.eclipse.core.resources.IFile"
                         name="*.jdo">
                    </selection>
               </action>
               <action id="kodo.mapping.drop"
                    label="%mapping-drop-label"
                    tooltip="%mapping-drop-tooltip"
                    class="kodo.jdbc.integration.eclipse.MappingToolAction$Drop"
                    icon="icons/DropMappingTool.gif"
                    menubarPath="kodo.menu/baseGroup"
                    toolbarPath="Normal/Kodo"
                    enablesFor="+">
                    <selection class="org.eclipse.core.resources.IFile"
                         name="*.jdo">
                    </selection>
               </action>
               <action id="kodo.mapping.refresh"
                    label="%mapping-refresh-label"
                    tooltip="%mapping-refresh-tooltip"
          class="kodo.jdbc.integration.eclipse.MappingToolAction$Refresh"
                    icon="icons/RefreshMappingTool.gif"
                    menubarPath="kodo.menu/baseGroup"
                    toolbarPath="Normal/Kodo"
                    enablesFor="+">
                    <selection class="org.eclipse.core.resources.IFile"
                         name="*.jdo">
                    </selection>
               </action>
               <action id="kodo.enhance"
                    label="%enhance-label"
                    icon="icons/EnhancerAction.gif"
               class="kodo.jdbc.integration.eclipse.EnhancerAction"
                    tooltip="%enhance-tooltip"
                    menubarPath="kodo.menu/baseGroup"
                    toolbarPath="Normal/Kodo"
                    enablesFor="+">
                    <selection class="org.eclipse.core.resources.IFile"
                         name="*.jdo">
                    </selection>
               </action>
          </actionSet>
     </extension>
     <!-- lock our actions into the base perspective -->
     <extension point="org.eclipse.ui.perspectiveExtensions">
          <perspectiveExtension targetID="org.eclipse.ui.resourcePerspective">
               <actionSet
                    id="kodo.jdbc.integration.eclipse.actionSet">
               </actionSet>
          </perspectiveExtension>
     </extension>
     <!-- put our extensions in -->
     <extension point="org.eclipse.ui.preferencePages">
          <page name="%preference-name"
               class="kodo.jdbc.integration.eclipse.KodoPreferencePage"
               id="kodo.jdbc.integration.eclipse.preferences.KodoPreferencePage">
          </page>
     </extension>
     <!-- lock in our eclipse-generated xml editor -->
     <extension point="org.eclipse.ui.editors">
          <editor name="%mappingeditor-name" extensions="mapping"
               icon="icons/mapping.gif"
               contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
               class="kodo.jdbc.integration.eclipse.editor.XMLEditor"
               id="kodo.jdbc.integration.eclipse.editor.XMLEditorMapping">
          </editor>
          <editor name="%editor-name" extensions="jdo,schema"
               icon="icons/metadata.gif"
               contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
               class="kodo.jdbc.integration.eclipse.editor.XMLEditor"
               id="kodo.jdbc.integration.eclipse.editor.XMLEditor">
          </editor>
     </extension>
     <!-- lock in our "view" -->
     <extension point="org.eclipse.ui.views">
          <view id="kodo.jdbc.integration.eclipse.KodoView"
               name="%view-name"
               category="org.eclipse.jdt.ui.java"
               icon="icons/kodosmall.gif"
               class="kodo.jdbc.integration.eclipse.KodoView">
          </view>
     </extension>
     <!-- lock in our builder -->
     <extension point="org.eclipse.core.resources.builders"
          id="kodo.jdbc.integration.eclipse.EnhancerBuilder"
          name="%builder-name">
          <builder>
               <run
               class="kodo.jdbc.integration.eclipse.EnhancerBuilder">
               </run>
          </builder>
     </extension>
     <!-- put our view onto the bottom bar -->
     <extension point="org.eclipse.ui.perspectiveExtensions">
          <perspectiveExtension
               targetID="org.eclipse.debug.ui.DebugPerspective">
               <view id="kodo.jdbc.integration.eclipse.KodoView"
                    relative="org.eclipse.debug.ui.ExpressionView"
                    relationship="stack"/>
               <viewShortcut id="org.eclipse.jdt.debug.ui.DisplayView"/>
          </perspectiveExtension>
     </extension>
</plugin>
Marc Prud'hommeaux wrote:
Genna-
Can you post your plugin.xml file? The majority of the time, this
problem is because of an error in the configuration file.
In article <[email protected]>, Genna Reingold wrote:
Ok,
I have found where log4j was coming from - I have selected my runtime
Kodo property file in Kodo preferences. Removing reference to property
file fixed the problem. However I have another issue now. When I run
refresh mapping I get following error:
<error>-An error occurred running MappingTool
     kodo.util.FatalDataStoreException: oracle.jdbc.OracleDriver
NestedThrowables:
java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
I have upgraded to Kodo 3.1.15, I'm using latest Eclipse 3.0. I have
copied classes12.jar to plugin directory and modified plugin.xml as
prescribed in the manual.
Stephen Kim wrote:
Genna,
Also note that the Eclipse plugin uses its own logging mechanism.
Setting a kodo.Log property for the plugin's property file will not
change the way in which the plugin logs messages (you may want to have
an Eclipse specific property file with the Log property removed).
Marc Prud'hommeaux wrote:
Genna-
It sounds like Eclipse might have an older version of the log4j jar
file. Can you check to see if there are any other "log4j" jars in
Eclipse's environment?
Also, what version of Kodo are you using? Can you try with the latest
release (3.1.5)?
Finally, can you ensure that you are using the final 3.0 release of
Eclipse, and not one of the betas? There are some known problems with
some of the 3.0 betas.
In article <[email protected]>, Genna Reingold wrote:
Hi,
I have added Kodo plugin to Eclipse (version 3) . I have added Kodo
enhancer to Build sequence for the project. However when I run build I
get
an error and eclipse log file has following exception:
ava.lang.NoClassDefFoundError: org/apache/log4j/Category
     atcom.solarmetric.log.Log4JLogFactory.newLogAdapter(Log4JLogFactory.java:19)
     at
com.solarmetric.log.LogFactoryAdapter.getLog(LogFactoryAdapter.java:25)
     atcom.solarmetric.conf.ConfigurationImpl.getLog(ConfigurationImpl.java:115)
     at kodo.enhance.JDOEnhancer.run(JDOEnhancer.java:2168)
     at
kodo.jdbc.integration.eclipse.EnhancerBuilder.build(EnhancerBuilder.java:40)
     at
org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:564)
     at
org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615)
     at org.eclipse.core.runtime.Platform.run(Platform.java:747)
     at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:157)
     at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:249)
     at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:202)
     at
org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:229)
     at
org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615)
     at org.eclipse.core.runtime.Platform.run(Platform.java:747)
     at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:232)
     at
org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:268)
     at
org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:297)
     at
org.eclipse.core.internal.resources.Workspace.build(Workspace.java:198)
     atorg.eclipse.ui.actions.GlobalBuildAction$1.run(GlobalBuildAction.java:182)
     at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66)
I have copied the log4j jar to kodo plugin directory and added libarary
tag to plugin.xml as following:
     <library name="log4j-1.2.8.jar"/>
What am I doing wrong?
Steve Kim
[email protected]
SolarMetric Inc.
http://www.solarmetric.com
Marc Prud'hommeaux
SolarMetric Inc.

Similar Messages

  • Kodo 3.1.4 and Eclipse plugin

    I'm currently migrating from Kodo 2.5.3 to Kodo 3.1.4, and as I'm using
    Eclipse have decided to give the Eclipse plugin a go. I've followed the
    documentation (@15.6), and am now attempting the Eclipse Sample from the
    documentation (@15.6.4). The documentation has seemed slightly incomplete,
    but I assume that's just me using Eclipse 3.0 with the doumentation being
    written for WSAD 4.
    However, when I clean the project or run the enhancer I get the following
    error:
    <error>-The Enhancer failed. The message included was:
    {0}
         org.apache.commons.lang.exception.NestableRuntimeException: Animal
    <info>-Done.
    This message doesn't seem to be giving me any info that would help me
    track down the problem, so hopefully somebody has seen it beforehand in
    these circumstances and can help me out?
    Cheers,
    Matt

    Stephen, the stack trace is as below. Apparently the Animal class isn't
    being found...? - How does the Kodo plugin look for / find it? - Eclipse
    itself has no trouble compiling it. Do I need to somehow configure my
    classpath separately for the Kodo plugin?
    !MESSAGE Errors running builder "Kodo Enhancer Builder" on project Kodo
    Pet Shop.
    !SUBENTRY 1 kodo 4 0 Aug 10, 2004 16:27:52.687
    !MESSAGE The Enhancer failed. The message included was:
    org.apache.commons.lang.exception.NestableRuntimeException: Animal
    !STACK 0
    java.lang.ClassNotFoundException: Animal
         at
    kodo.enhance.TemporaryClassLoader.loadClass(TemporaryClassLoader.java:49)
         at
    kodo.enhance.TemporaryClassLoader.loadClass(TemporaryClassLoader.java:27)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:217)
         at serp.util.Strings.toClass(Strings.java:160)
         at
    com.solarmetric.meta.ClassArgParser.parseClasses(ClassArgParser.java:77)
         at kodo.enhance.JDOEnhancer.run(JDOEnhancer.java:2176)
         at
    kodo.jdbc.integration.eclipse.EnhancerBuilder.build(EnhancerBuilder.java:40)
         at
    org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:564)
         at
    org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615)
         at org.eclipse.core.runtime.Platform.run(Platform.java:747)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:157)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:249)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:202)
         at
    org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:229)
         at
    org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615)
         at org.eclipse.core.runtime.Platform.run(Platform.java:747)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:232)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:268)
         at
    org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:297)
         at
    org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:155)
         at
    org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:212)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66)
    rethrown as org.apache.commons.lang.exception.NestableRuntimeException:
    Animal
         at serp.util.Strings.toClass(Strings.java:164)
         at
    com.solarmetric.meta.ClassArgParser.parseClasses(ClassArgParser.java:77)
         at kodo.enhance.JDOEnhancer.run(JDOEnhancer.java:2176)
         at
    kodo.jdbc.integration.eclipse.EnhancerBuilder.build(EnhancerBuilder.java:40)
         at
    org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:564)
         at
    org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615)
         at org.eclipse.core.runtime.Platform.run(Platform.java:747)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:157)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:249)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:202)
         at
    org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:229)
         at
    org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615)
         at org.eclipse.core.runtime.Platform.run(Platform.java:747)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:232)
         at
    org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:268)
         at
    org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:297)
         at
    org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:155)
         at
    org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:212)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66)
    Caused by: java.lang.ClassNotFoundException: Animal
         at
    kodo.enhance.TemporaryClassLoader.loadClass(TemporaryClassLoader.java:49)
         at
    kodo.enhance.TemporaryClassLoader.loadClass(TemporaryClassLoader.java:27)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:217)
         at serp.util.Strings.toClass(Strings.java:160)
         ... 18 more
    ==================
    Stephen Kim wrote:
    Matt,
    you should see a stack trace in workspace/.metadata/.log. Can you send
    us the error so that we can fix the reproting?

  • Building J2EE Applications using JBOSS and ECLIPSE 3.0

    Hi all
    i am trying to deploy a J2EE application using JBOSS3.2.5 and Eclipse 3.0.
    I have written the EJB bean, home, remote and a test JSP page. Can someone tell me the exact procedure...step by step ways to deploy the JBOSS server and run my application.
    My package structure is
    MyProject
    ejb
    client
    Servlet.java
    server
    Bean.java
    shared
    home.java
    remote.java
    please tell the various jar files that i must include. Kindly give information about the directory structure, the xml file details and the WAR file generation
    Thankz in advance
    Arun :)

    That is a lot of stuff! At a basic level, you can create an EAR file and put it in the JBoss auto-deployment directory. In the EAR file you should have a WAR file for the web component and a JAR file for the EJB component. And inside each archive there should be a valid deployment descriptor that contains configuration data for the component. When you start up JBoss, the application will be deployed and accessible via web browser, or there will be error messages written to the server log.

  • Using NetBeans and Eclipse to drag and drop forms, controls etc

    Hi, can you use NetBeans and Eclipse to drag and drop like say with C# in MS Visual Studio ?
    like forms and listboxes, textboxes etc ??

    And [this is a good place to start|http://java.sun.com/docs/books/tutorial/uiswing/index.html]
    db

  • Kodo 3.4.1 and Oracle JDBC 11.1.0.6?

    Hi,
    did anybody already try using Kodo 3.4.1 and Oracle JDBC driver 11.1.0.6?
    We have been able to use it by specifying:
    kodo.jdbc.DBDictionary=oracle(BatchLimit=1000)
    but it does not run very smoothly and we get for example the
    following exception (but not always).
    NestedThrowablesStackTrace:
    [migrate-data] java.lang.ArrayIndexOutOfBoundsException: -32193
    [migrate-data] at
    oracle.jdbc.driver.OraclePreparedStatement.setupBindBuffers(OraclePreparedS
    tatement.java:2677) [migrate-data] at
    oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedState
    ment.java:9270) [migrate-data] at
    oracle.jdbc.driver.OracleStatementWrapper.executeBatch(OracleStatementWrapp
    er.java:210) [migrate-data] at
    com.solarmetric.jdbc.DelegatingPreparedStatement.executeBatch(DelegatingPre
    paredStatement.java:325) [migrate-data] at
    com.solarmetric.jdbc.PoolConnection$PoolPreparedStatement.executeBatch(Pool
    Connection.java:375) [migrate-data] at
    com.solarmetric.jdbc.DelegatingPreparedStatement.executeBatch(DelegatingPre
    paredStatement.java:325) [migrate-data] at
    com.solarmetric.jdbc.DelegatingPreparedStatement.executeBatch(DelegatingPre
    paredStatement.java:325) [migrate-data] at
    com.solarmetric.jdbc.DelegatingPreparedStatement.executeBatch(DelegatingPre
    paredStatement.java:325)Any hints?
    Thanks,
    Werner

    Disabling SQL batching by specifying BatchLimit = 0 solved the
    problem temporarlyOf course this is not what we want, anybody else using this configuration?
    Werner

  • RoboHelp and Eclipse

    Hi,
    We have been generating XML Help and then with a script changing tag names so that we can incorporate the Help into Eclipse.
    However, in RoboHelp 9, RoboHelp adds BOM characters to the html files and Eclipse doesn't seem to handle these characters correctly (even though they are legal).
    Is there a way to prevent RH from adding these characters?
    I also saw that RH9 supports Eclipse Help - it has the same BOM characters so we couldn't really try it out. Is there any details somewhere on how to integrate the Eclipse Help that RH generates with Eclipse? Wehn we just add the files it doesn't seem to work. Are there instructions anywhere?
    Thanks,
    Rakefet

    Contact me via my site.

  • Configuring blazeds, spring, flex and eclipse ide

    Hi,
    Can you please suggest me in configuring blazeds, spring, flex and eclipse ide. I have tried hard googling, but couldnt get solution for configuring all the four.
    thanks in advance

    Hi jvk180:
    Firstly, you should either need to define the destination in remoting-config.xml or in app-context.xml, but and in both places.
    Secondly, the error indicates that it is missing the channel information.
    Option 1:
    Assuming your bean "helloServiceDestination" uses other Spring beans, then:
    1. The right place to declare the destinations is in app-context.xml.
    2. In that case, you need to also define the channels that the destination will be exposed over. See documentation for how to do that.
    3. In your remote object declaration, you need to pass the channel set that gets used as well.
    <mx:ChannelSet id="cs">
       <mx:AMFChannel url="http://<yourServerName>:<yourServerPort>:/<yourContextRoot>/messagebroker/amf"/>
    </mx:ChannelSet>
    <mx:RemoteObject id="ro" destination="helloServiceDestination" channelset="{cs}" result="resultHandler(event)" fault="faultHandler(event)"/>
    Option 2:
    If you declare your destination, in remoting-config.xml, then you need to compile your swf with services-config.xml. Refer to documentation for how to do that.
    Hope that helps.
    Rohit

  • Similar to the question in cvs and eclipse thread

    My Question is similar to the question in the cvs and eclipse thread, how can you know on the *.<file_extension>, v the date it was created? thank you very much to those who will reply

    Hey wspearman,
    Thanks for the question. Genius is still a great feature of iTunes 11, it may be that you simply need to turn it on. To do so, click Store > Turn On Genius
    iTunes 11 for Windows: Use Genius Shuffle, Genius playlists, or Genius Mixes
    http://support.apple.com/kb/PH12342
    Note: Use Control-B on a Windows computer to show/hide the menubar
    Thanks,
    Matt M.

  • Oracle JVM 6u21 and Eclipse

    If you have been experiencing Eclipse crashes since updating to Sun/Oracle JVM 6u21 (aka 1.6.0_21), head over to the following blog post to read about a workaround...
    http://lt-rider.blogspot.com/2010/07/oracle-jvm-6u21-and-eclipse.html
    - Konstantin

    Oracle has produced another build of 6u21 JVM that reverts the change that adversely affected Eclipse. If you have reverted back to an older JVM, you can safely move forward to 6u21. The build 1.6.0_21-b07 is safe to use. The version that Eclipse has trouble with is b06. You can check which version you have by running "java -version".
    - Konstantin

  • Java JDK 7 u17 won't install and Eclipse won't run past boot logo.

    Java JDK 7 u17 won't install and Eclipse won't run past boot logo. Eclipse Classic used to work fine for awhile. I haven't used it for a month or two and tried to boot it, Eclipse won't run past boot logo. It looks like JDK is not even there anymore. JDK won't install successfully. I have Mac OS X 10.8.3.
    I tried removing Java, re-download JDK multiple times.. same results.
    MyComputer-MacBook-Air:~ MyComputer$ java -version
    java version "1.7.0_17"
    Java(TM) SE Runtime Environment (build 1.7.0_17-b02)
    Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)

    Paul Adare is correct in saying that you cannot "upgrade" from 32-bit to 64-bit. You can, however, backup your files and reload them onto your PC.
    Given that you are able to boot Windows 7 after the failure to install Windows 10 Technical Preview, it is apparent that you are not formatting the drive during your clean installation. There are a number of potential issues an existing configuration can
    cause, such as preventing Windows Setup from registering boot files, modifying partitions, or moving an existing installation and data to the windows.old folder. I would recommend removing the partitions from your drive (note: this will erase any data remaining
    on the hard disk) during installation to ensure that Windows Setup has a fresh hard drive to install to. If you continue to experience errors, two other factors to take into consideration are:
    Does your system use a storage controller that requires loading a driver during Windows Setup?
    Is the hardware malfunctioning? Do the hard disk and memory pass testing software like Windows Memory Diagnostic or chkdsk?
    Reference
    this article for more information.
    Hessam
    Windows Outreach Team- IT Pro
    Windows for IT Pros on TechNet

  • Apache Axis and Eclipse WTP

    I've just started to use java recently and now trying to develop SOAP web services. I've installed Eclipse and Eclipse Web Tools Platform (Eclipse WTP) as my IDE, and Apache Tomcat as my web container.
    In order to develop java web services, I think I need Apache Axis which is basically a SOAP engine that parses java objects into SOAP messages. And included in Eclipse WTP are java web services tools built upon Apache Axis. Therefore I can start developing web services without installing Apache Axis for my Apache Tomcat.
    The question here is when I need to deploy my web services in a real-world Apache Tomcat server (which also includes Apache Axis), what should I do?

    Hi,
    All that you want to do is trying to call a web service and get the response from it, you can use the WSDLs from any weather or lets say google. From XI you can call it and you would get response in SOAP format.
    If you want to create a web service, create a SOAP to RFC scenario in XI where RFC returns you some thing that you wanted in sync fashion. Now use the WSDL genrated from this scenario and import in XI for another scenario.. where it could be a HTTP to SOAP. Now you would get the response of RFC in SOAP format it self..
    VJ

  • Remote Server Debugging with Tomcat and Eclipse

    Hi ,
    I am using Tomcat 4.0, Jdk1.3 and eclipse 2.1 ,Windows 2000
    I am trying for past 5 days, Remote Server Debugging.
    But I can't acheive.Please help in this tough situation.
    I have configured Tomcat to run in debug mode by the following steps:
    1) In catalina.bat, SET CATALINA_OPTS=-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000
    2) Then I set the JAVA_HOME AND TOMCAT_HOME in the environment mode.
    3) Then I clicked the startup.bat in the bin directory.
    In Eclipse side , I followed as,
    1) Run/Debug/Remote Java Application/New/
    In the connect tab, I gave host:localhost and port:8000
    2) Then I clicked Debug button.
    I didn't use any plugin.
    But it producing "Failed to connect to Remote VM.Connection refused."
    So I gave host:localhost and port:8080 in eclipse side,
    but this I am getting errorin eclipse side as "Failed to connect to Remote VM".In server side, I am getting error as,
    java.lang.NullPointerException
    at org.apache.catalina.connector.http.HttpResponseStream.checkHead(HttpR
    esponseStream.java:253)
    at org.apache.catalina.connector.http.HttpResponseStream.<init>(HttpResp
    onseStream.java:104)
    at org.apache.catalina.connector.http.HttpResponseImpl.createOutputStrea
    m(HttpResponseImpl.java:220)
    at org.apache.catalina.connector.ResponseBase.getOutputStream(ResponseBa
    se.java:725)
    at org.apache.catalina.connector.ResponseBase.finishResponse(ResponseBas
    e.java:469)
    at org.apache.catalina.connector.HttpResponseBase.finishResponse(HttpRes
    ponseBase.java:236)
    at org.apache.catalina.connector.http.HttpResponseImpl.finishResponse(Ht
    tpResponseImpl.java:288)
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcesso
    r.java:1039)
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.ja
    va:1107)
    at java.lang.Thread.run(Thread.java:484)
    Please do the needful
    If you have anwser, Please mail to [email protected]

    Well, once you're already using MyEclipse, I have it set up even simpler than that. Go to Window/Preferences/MyEclipse/Application Servers/Tomcat4/Launch and set the launch mode to debug.
    This works if the project is successfully setup as a webproject in MyEclipse.
    My problem is that I have a project that was not developed with MyEclipse and for some reason does not work when I set it up as a web project in MyEclipse. MyEclipse seem to do something funny with it when I establish the project. Now, if I set it up simply as a java project (as oppposed to Web Project) in myEclipse, then MyEclipse does not give me an option of deploying it.
    Any ideas about how I would go about debugging a project that's not set up as a Web Project in my eclipse?

  • Weblogic 8.1 and Eclipse using Weblogic Server Tools

    I am working on a project that has been developed with Weblogic 8.1 without integration into an IDE (Eclipse, etc.) We are trying to convert the source tree to a form usable within Eclipse using Weblogic Server Tools. We want to make deployment on developer workstations quicker and easier and provide for server side debugging. There is not much documentation on how to do this that I have been able to find. I have just finished reading the details of the split directory strucuture in the Weblogic documentation and understand that Server Tools uses the split directory concept. My question is basically how we create the project in Eclipse (with Server Tools plug-ins) initially. Is anyone out there still using Weblogic 8.1 and Eclipse 3.3 (Europa) using Weblogic Server Tools that can help?

    There isn't much in a way of documentation that's explicit to WebLogic Server Tools, but a lot of Workshop 10.2 documentation applies. Basically, you will want to create Dynamic Web Projects to house your code. On the first page of Dynamic Web Project wizard, you will get a chance to define and target a server (WLS 8.1 in your case). That will configure your project classpath for WLS 8.1 and get everything else squared away.
    Note that there is only very basic support for 8.1. In particular, the split-directory concept is not supported, but deployment is taken care of for you behind the scenes, so the details shouldn't matter that much.

  • Jdk 1.5.0_04 and Eclipse with SuSE Linux - startup problems with Eclipse

    Hi,
    I have SuSE Linux 9.3 and just downloaded Jdk 1.5.0_04 and Eclipse IDE 3.1 for Linux.
    I have sucessfully installed Java in the following directory under Linux:
    '/usr/java/jdk1.5.0_04'
    And I also have downloaded Eclipse IDE 3.1 for Linux. I have unzipped it into the following directory:
    '/home/juergenkemeter/bin/eclipse/eclipse
    I have chosen the upper Java JRE in the Eclipse preferences.
    Now to my problem:
    Sometimes it happens that when I startup Eclipse or try to runa java program, Eclipse is shut down with a) no comment at all, or b) with an error message "JVM terminated. Exit code = 1 (...)". I can send the picture of the whole screenshot of the error message if it helps.
    Now I think that this is due to wrong installation paths of the Jdk and Eclipse?! Perhaps there are some conflicts regarding user rights (admin and the normal user 'juergenkemeter'.
    If anyone has suggestions, that would be helpful. Its nasty when Eclipse shuts down while programming...
    cheers,
    J�rgen

    I only used the getSystemResource because it is slightly more convenient. The
    getResource version requires a "/" in front of the filename, as in:
    java.net.URL imageURL = getClass().getResource("/" + imageName);
    System.out.println("Loading icon: " + imageName);
    for (int i = 0; i < 32000; i++)
    System.out.println(i);
    icon = new ImageIcon(imageURL);
    Unfortunately, this still deadlocks after a few thousand hits.
    Of course, I don't need thousands of icons in my application, but the real-world issue is that the program locks up every few times it is started, which is a real drag for the customers!
    I suppose the InputStream way would work, though it is not very elegant compared to loading the resource in the usual manner. I'll try it if there are no other suggestions.
    Thanks,
    Dan

  • SWT and Eclipse Plugin

    im having trouble creating a plugin. i have created my code in JFC but unfortunately it wouldn't work in Eclipse plugin. it must be written in SWT..
    after searching tons of website on SWT and Eclipse Plugin, i came across the plugin wizard of Eclipse..
    i have created a sample SWT code and i was wondering how can i get it to work with an Eclipse plugin? i was editing the files under the src folder but to no avail, im still stuck..
    please help me.. thanx a lot.

    the wizards for generating eclipse plugins are quite useful if you use the right one. there's sample projects for more UI artifacts (editors, views etc). they'll do a lot of the legwork of setting up and configuring, say, a view, and give you a blank Composite to put your own work on
    you can also use the AWT_SWT bridge if you really want to use AWT or Swing components on your plugins, but it's a pain in the @rse to be honest
    also, you'd be far better off going to eclipse.org newsgroups for this sort of question. hardly anyone here uses SWT or writes plugins, that I know of

Maybe you are looking for