Eclipse + Proguard + Ant

Ok... I'm overwhelmed. I'm putting my game in a jar for webstard, and obfuscating it with Proguard. I use Eclipse, and I know it has Ant integrated, and I'm pretty sure it can help me here. Right now I save (Eclipse auto-compiles), I run Proguard to obfuscate my code, then I manually create a Jar file by renaming a .zip file I make with WinRAR, and move in the particular folders of obfuscated code I want. That's really tedious and time consuming to have to do that every time I make some changes to my code.
Now... in looking up information on Ant, I feel like I'm looking at a whole new language. Even beginner's tutorials seem to make no sense. Maybe I'm just looking too hard to find a specific solution, but I don't want to just jump out into the ocean of Google with no sense of direction. Could anyone help me out with what I need to do, or give me some good resources/direction to head for so I'm not completely clueless as I learn how to work with this? Thanks!

Ant is fairly simple. I'm sure they have a sample app build script somewhere, and I recomend you spend some time looking over the tutorials, and asking sperifc questions (either here, or might be better at [url http://forum.java.sun.com/forum.jsp?forum=54]n2j or even the [url http://ant.apache.org/mail.html]Ant User Mailing List.
But a basic Ant file looks like:
file system:
|
+- src (containing the source code)
+- misc (Containg the mainifest)
+- res (Containg the resouce files)
You might have to change the above, to match however Eclipse works
<project name="PLACE YOUR NAME HERE" default="dist">
       <property name="proguard-home" value="z:\proguard1.7.2"/>
       <property name="source" value="src"/>
       <property name="distribution" value="dist"/>
       <property name="compiled" value="compiled"/>
       <property name="misc" value="misc"/>
       <property name="resources" value="res"/>
     <target name="init">
          <echo message="Running with base dir ${basedir}"/>
          <!-- ensure some dirs exist -->
          <mkdir dir="${distribution}"/>
       </target>
      <target name="compile" depends="init">
          <javac srcdir="${source}" destdir="${compiled}" />
      </target>
     <target name="obfuscating-with-proguard" depends="compile">
             <taskdef name="proguard" classname="proguard.ant.ProGuardTask"
          classpath="${proguard-home}/lib/proguard.jar" />
          <echo message="obfuscating with proguard"/>
          <zip destfile="in.zip" basedir="${compiled}"/>
          <delete dir="${compiled}" />
          <proguard printmapping="mapping.txt"
                    outjar="out.zip"
                 defaultpackage="">
<!--
     SEE PROGUARD DOCS, THIS IS FOR J2ME!
-->
                 <libraryjar name="${j2mewtk.home}/lib/midpapi.zip"/>
                 <injar name="in.zip" />
                 <!-- Preserve all public midlets. -->
                 <keep access="public"
                       extends="javax.microedition.midlet.MIDlet" />
          </proguard>
          <mkdir dir="${unverified}"/>
          <unzip src="out.zip" dest="${unverified}"/>
          <delete file="in.zip"/>
          <delete file="out.zip"/>
     </target>
     <target name="dist" depends="obfuscating-with-proguard">
          <jar jarfile="${distribution}/${appname}.jar"
              manifest="${misc}/MANIFEST.MF">
               <fileset dir="${compiled}"/>
               <fileset dir="${resources}"/>
          </jar>
       </target>
</project>

Similar Messages

  • Export OSB configuration from eclipse using ant script

    I am trying to export an OSB project from eclipse using ant script
    I followed the link below http://biemond.blogspot.com/2010/07/osb-11g-ant-deployment-scripts.html
    It is using com.bea.alsb.core.ConfigExport to do the export. This export is always set to resource level.
    I see it generates a file ExportInfo setting some properties. It has a property that set the export level as below
    <imp:property name="projectLevelExport" value="false"/>*
    How can I export the project in project level? basically setting projectLevelExport to true?
    So that if a file does not exist in the sbconfig.jar file , then while importing the jar to OSB server it will delete the file from the server instead of skipping it?
    I appreciate any help
    here is the ant script snippet that gets executed to export from eclipse
    <target name="exportFromWorkspace">
         <delete failonerror="false" includeemptydirs="true"
    dir="${metadata.dir}"/>     
                   <!--eclipse.refreshLocal resource="${config.project}" depth="infinite"/-->
    <java dir="${eclipse.home}"
    jar="${eclipse.home}/plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar"
    fork="true" failonerror="true" maxmemory="768m">
    <jvmarg line="-XX:MaxPermSize=256m"/>
    <arg line="-data ${workspace.dir}"/>
    <arg line="-application com.bea.alsb.core.ConfigExport"/>
    <arg line="-configProject ${config.project}"/>
    <arg line="-configJar ${config.jar}"/>
    <arg line="-configSubProjects ${config.subprojects}"/>
              <arg line="-exportLevel true"/>
    <arg line="-includeDependencies ${config.includeDependencies}"/>
    <sysproperty key="weblogic.home" value="${weblogic.home}"/>
    <sysproperty key="osb.home" value="${osb.home}"/>
    <sysproperty key="osgi.bundlefile.limit" value="500"/>
    <sysproperty key="harvester.home" value="${osb.home}/harvester"/>
    <sysproperty key="osgi.nl" value="en_US"/>
    <sysproperty key="sun.lang.ClassLoader.allowArraySyntax" value="true"/>
    </java>
    </target>

    yes, I specified the project name to export the whole project.
    Here is few lines from my properties file
    # properties for workspace export
    config.project="OSB Configuration-GW"
    config.jar=D:/workspace/osb/scripts/gateway/mycode2/ant_osb/dist/sbconfig.jar
    config.subprojects="GatewaySecurity"
    config.includeDependencies=true
    workspace.dir=D:/workspace/osb/gateway-workspace
    But this property does not make it to export at project level ,it export the specified project at resource level.
    And while importing this jar to OSB server, if a file is missing it skips the file instead of deleting the file from the OSB server
    If I unjar sbconfig.jar file, open ExportInfo file and update the line in bold below to true then it deletes the file from OSB server, if not exist in sbconfig.jar
    <imp:property name="exporttime" value="Thu Dec 29 13:57:44 EST 2011"/>
    <imp:property name="productname" value="Oracle Service Bus"/>
    <imp:property name="productversion" value="11.1.1.4"/>
    *<imp:property name="projectLevelExport" value="false"/>*
    Here is few lines from Oracle API java doc
    http://docs.oracle.com/cd/E13171_01/alsb/docs26/javadoc/com/bea/wli/sb/management/importexport/ALSBImportOperation.Operation.html
    public static final ALSBImportOperation.Operation Delete
    Indicates that the resource is deleted in the importing domain. This is the default operation when the project is exported in its entirety and the resource exists in the target domain but not in the jar file
    public static final ALSBImportOperation.Operation Skip
    Indicates that the resource is skipped meaning the resource is not touched in the importing domain. This is the default operation if the jar file was exported at the resource level, and a resource that exists in the target domain, does not exist in the jar file.

  • Cannot make .war file using tomcat with eclipse and ant

    i have made all necesary configuration for deploying application using eclipse and ant for the tomcat server.
    when i start the server by clicking the tomcat icon on eclipse toolbar, the message is prompted that "missing application web.xml and using defaults". i have placed the web.xml file in the web/WEB-INF directory of the source project directory.
    also when i use ant by right-clicking on the build.xml file and choose Run as ant.. the process creates a desired .war file in webapps folder of the tomcat server but that war file does not works.
    where is the error i cannot figure out.
    am attaching the code of build.xml for reference.
    please help.
    build.xml:-
    <project name="BecilCTI" default="compile" basedir=".">
    <property file="build.properties"/>
    <property file="${user.home}/build.properties"/>
    <property name="app.name" value="BecilCTI"/>
    <property name="app.path" value="/${app.name}"/>
    <property name="app.version" value="0.1-dev"/>
    <property name="build.home" value="${basedir}/build"/>
    <property name="catalina.home" value="c:/Tomcat_5.5"/> <!-- UPDATE THIS! -->
    <property name="dist.home" value="${basedir}/dist"/>
    <property name="docs.home" value="${basedir}/docs"/>
    <property name="manager.url" value="http://localhost:8080/manager"/>
    <property name="src.home" value="${basedir}/src"/>
    <property name="web.home" value="${basedir}/web"/>
    <property name="compile.debug" value="true"/>
    <property name="compile.deprecation" value="false"/>
    <property name="compile.optimize" value="true"/>
    <!--<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>-->
    <path id="compile.classpath">
    <!-- Include all elements that Tomcat exposes to applications -->
    <pathelement location="${catalina.home}/common/classes"/>
    <fileset dir="${catalina.home}/common/endorsed">
    <include name="*.jar"/>
    </fileset>
    <fileset dir="${catalina.home}/common/lib">
    <include name="*.jar"/>
    </fileset>
    <pathelement location="${catalina.home}/shared/classes"/>
    <fileset dir="${catalina.home}/shared/lib">
    <include name="*.jar"/>
    </fileset>
    </path>
    <target name="all" depends="clean,compile"
    description="Clean build and dist directories, then compile"/>
    <target name="clean"
    description="Delete old build and dist directories">
         <echo message="Cleaning all dirs."/>
    <delete dir="${build.home}"/>
    <delete dir="${dist.home}"/>
    </target>
    <target name="compile" depends="prepare"
    description="Compile Java sources">
    <!-- Compile Java classes as necessary -->
    <mkdir dir="${build.home}/WEB-INF/classes"/>
    <javac srcdir="${src.home}"
    destdir="${build.home}/WEB-INF/classes"
    debug="${compile.debug}"
    deprecation="${compile.deprecation}"
    optimize="${compile.optimize}">
    <classpath refid="compile.classpath"/>
    </javac>
    <!-- Copy application resources -->
    <copy todir="${build.home}/WEB-INF/classes">
    <fileset dir="${src.home}" excludes="**/*.java"/>
    </copy>
    </target>
    <target name="dist" depends="compile"
    description="Create binary distribution">
    <!-- Copy documentation subdirectories
    <mkdir dir="${dist.home}/docs"/>
    <copy todir="${dist.home}/docs">
    <fileset dir="${docs.home}"/>
    </copy> -->
    <!-- Create application JAR file -->
    <jar jarfile="${catalina.home}/webapps/${app.name}.war"
    basedir="${build.home}"/>
    <!-- Copy additional files to ${dist.home} as necessary -->
    </target>
    <target name="install" depends="compile"
    description="Install application to servlet container">
    <deploy url="${manager.url}"
    username="${manager.username}"
    password="${manager.password}"
    path="${app.path}"
    localWar="file://${build.home}"/>
    </target>
    <target name="list"
    description="List installed applications on servlet container">
    <list url="${manager.url}"
    username="${manager.username}"
    password="${manager.password}"/>
    </target>
    <target name="prepare">
    <!-- Create build directories as needed -->
    <mkdir dir="${build.home}"/>
    <mkdir dir="${build.home}/WEB-INF"/>
    <mkdir dir="${build.home}/WEB-INF/classes"/>
    <!-- Copy static content of this web application -->
    <copy todir="${build.home}">
    <fileset dir="${web.home}"/>
    </copy>
    <mkdir dir="${build.home}/WEB-INF/lib"/>
    </target>
    <target name="reload" depends="compile"
    description="Reload application on servlet container">
    <reload url="${manager.url}"
    username="${manager.username}"
    password="${manager.password}"
    path="${app.path}"/>
    </target>
    <target name="remove"
    description="Remove application on servlet container">
    <undeploy url="${manager.url}"
    username="${manager.username}"
    password="${manager.password}"
    path="${app.path}"/>
    </target>
    </project>

    So is context.xml actually overwriting the settings found in server.xml?I think so. The way I understand it is the the context.xml file saves you from having to edit server.xml. It is preferred for each web app to do its own config, rather than lumping them all together in server.xml.
    And what would be the best way to create the war file? IAt its heart, a WAR is just a zip file with its contents laid out in according to the specification of a web application directory structure.
    So the simplest way to make a war file is to zip up your directory structure with a tool like winzip, and rename it to be myApp.war.
    Regarding ant, I would recommend you take a look through [url http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/index.html
    ]this tutorial. It explains the basics of website layout, configuration and deployment.
    On [url http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/source.html] this page  in particular, it includes a link to a basic ant file that you can use as a starting point.
    Cheers,
    evnafets

  • Different runtime behaviour between Eclipse and ANT

    I have a class which runs sucessfully in the Eclipse IDE. When I try to execute the same class with ANT, the result is invalid. Why ?
    the class is an ANT task subclass, responsible to create the context of a Tomcat application....
    I will drop here the two classes code, if you want to help...

    ok, thanks by the prompt response...
    The scenario is the following:
    The aim of my code is to generate a context used in the Tomcat application deployment - i.e., the user fills a set of parameters and then the class generates a XML with the structure expected by the Tomcat definitions...
    Running the class in the Eclipse, everithyng is ok. The class ask the user about the parameters and then generates the correct XML.
    Running the same class with ANT (encapsulated in a JAR) the XML result is null...

  • Compiling in Eclipse (without ANT)

    How do I compile my *.java files in Eclipse? I've read their help section on compiling and, to be honost, found it more confusing then anything else.
    If it's applicable, I'm working with Struts.

    You need to set your classpath in the properties of your project. Put in the path of your bin/java.exe and javac.exe (same folder)
    Eclipse will automatically compile them then

  • Ant in eclipse

    when i use ant in eclipse.
    it says
    [javac] BUILD FAILED: file:D:/JavaProject/ACS/testAnt.xml:18: Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK
    but i set the classpath as follow:
    CLASSPATH
    .;d:\j2sdk1.4.1_01\lib\dt.jar;D:\j2sdk1.4.0_01\lib\tools.jar
    JAVA_HOME
    D:\j2sdk1.4.0_01
    Path
    ......;D:\j2sdk1.4.0_01\bin;.;D:\j2sdk1.4.0_01\lib\dt.jar;D:\j2sdk1.4.0_01\lib\tools.jar
    how to slove that?

    Thanks for the solution E13, that fixed the same problem I was having. However, I'm thinking that this might be an Eclipse-specific bug, and not due to a shortcoming on M$ part (for once :)
    The reason I say this, is that when I was trying to debug this problem, I noticed that Eclipse kept wanting to set its internal java.home to the location of the System JRE (which was J2SDK1.4.2 in my case - run 'ant -diagnostics'). So I'm assuming that when it looked under ${java.home}/bin, it didn't find the javac compiler and failed.
    What's strange, is that no matter what I tried, I couldn't get Eclipse's Ant tool to point to a different java.home. My system JAVA_HOME is set correctly, but eclipse apparently clobbered it. I tried overwriting this value in the properties sheet to no avail. Even after applying your solution, the code compiles fine, but java.home is still pointing to the wrong directory.
    Is eclipse querying the Registry for Ant's java.home?? I grepped all the xml resource and property files in my Eclipse install dir looking for where this value was assigned, but it isn't there. Is anyone else seeing this problem? I'll probabally open up a Bug on Eclipse since this doesn't appear to be correct behavior.

  • Error when using Toplink Ant tasks - Several [3] SessionLoaderExceptions

    Hi,
    I'm trying to integrate toplink's session exports with my build process (Apache Ant). I've been working from the example here:
    http://download.oracle.com/docs/cd/E14571_01/web.1111/b32441/mw.htm
    My Ant init target and the session validation target are shown below:
    <!-- =====================================================================================
         init Target
         ==================================================================================== -->
    <target name="init">
         <property name = "toplink.home" value = "C:/APPS/OC4J/toplink"/>     
         <property name = "oracle.home" value = "C:/APPS/OC4J"/>
         <property name = "toplink.log.dir" value = "${basedir}/../toplinklogs"/>
         <property name = "toplink.mwp.dir" value = "${basedir}/../java/mwb"/>
         <property name = "toplink.sessions.dir" value = "${basedir}/config"/>
         <property name = " myProject.classes" value = "${basedir}/../java/classes "/>
         <path id = "database.classpath">
              <pathelement path = "${oracle.home}/lib/dms.jar"/>
         </path>
         <path id = "toplink.classpath">
              <pathelement path = "${toplink.home}/jlib/toplink.jar"/>
              <pathelement path = "${oracle.home}/j2ee/home/lib/ejb.jar"/>
              <pathelement path = "${oracle.home}/lib/xmlparserv2.jar"/>
              <pathelement path = "${toplink.home}/jlib/antlr.jar"/>
         </path>
         <path id = "mw.classpath">
              <pathelement path = "${toplink.home}/jlib/tlmwcore.jar"/>
              <pathelement path = "${toplink.home}/jlib/toplinkmw.jar"/>
         </path>
         <path id = "mwplatforms.classpath">
              <pathelement path = "${toplink.home}/config"/>
         </path>
         <typedef file = "${basedir}/toplink-ant-lib.xml" classpathref = "mw.classpath" uri = "toplinklib" />
    </target>
    <!-- =====================================================================================
         validate session Target
         ==================================================================================== -->     
    <target name="validate.session" depends="export.project" if="export-completed">
         <toplink:session.validate
              sessionsfile = "${basedir}/../java/src/aquila/administrator/accounting/config/toplink/AccountingMapping.xml"
         sessionname = "AccountingMapping"
         property = "session-valid"
         classpathref = "toplink.classpath"
         classpath = "${myProject.classes}" >
              <toplink:classpath refid = "mw.classpath" />
         <toplink:classpath refid = "database.classpath" />
         <toplink:loginspec refid = "loginSpec" />
         </toplink:session.validate>
    </target>
    <!-- =====================================================================================
         Error
         ==================================================================================== -->
    validate.session:
    [toplink:session.validate] An error occured while validating project:
    [toplink:session.validate] Exception Description: Several [3] SessionLoaderExceptions were thrown:
    BUILD FAILED
    C:\Eclipse\Administrator\ant\example.xml:105: An error occured while validating project:
    Exception Description: Several [3] SessionLoaderExceptions were thrown:
    <!-- =====================================================================================
    Verbose Errors      ==================================================================================== -->
    When I turn on verbose mode in ant I can see more details of the error:
    Local Exception Stack:
    Exception [TOPLINK-9001] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.SessionLoaderException
    Exception Description: Unknown tag name: [toplink:login] in XML node: [toplink:object-persistence].
    Internal Exception: java.lang.NoSuchMethodException: oracle.toplink.tools.sessionconfiguration.XMLLoader.process_toplink:login_Tag(org.w3c.dom.Node, oracle.toplink.tools.sessionconfiguration.XMLLoader$ObjectHolder)
    Local Exception Stack:
    Exception [TOPLINK-9001] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.SessionLoaderException
    Exception Description: Unknown tag name: [opm:class-mapping-descriptors] in XML node: [toplink:object-persistence].
    Internal Exception: java.lang.NoSuchMethodException: oracle.toplink.tools.sessionconfiguration.XMLLoader.process_opm:class_mapping_descriptors_Tag(org.w3c.dom.Node, oracle.toplink.tools.sessionconfiguration.XMLLoader$ObjectHolder)
    Local Exception Stack:
    Exception [TOPLINK-9001] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.SessionLoaderException
    Exception Description: Unknown tag name: [opm:name] in XML node: [toplink:object-persistence].
    Internal Exception: java.lang.NoSuchMethodException: oracle.toplink.tools.sessionconfiguration.XMLLoader.process_opm:name_Tag(org.w3c.dom.Node, oracle.toplink.tools.sessionconfiguration.XMLLoader$ObjectHolder)
    <!-- =====================================================================================
    Help
    ==================================================================================== -->
    The 3 errors shown above correspond to the 3 tags at the same level in the session.xml file. I have tested this validation process with a session.xml file generated from the workbench and that failed too. Since its a NoSuchMethodException it looks like my ant process isn't finding the oracle.toplink.tools.sessionconfiguration.XMLLoader class, but that is in toplink.jar which is in the class path.
    Any help appreciated

    Dear Arun,
    The WLS server is the same for (integrated WLS and Production) . For JRF template I'm sure it is the same. I have deploy another application that used BC, and it work fine in production.
    Regards
    Faizul

  • How to define new classpath of libraries while making jar files with ant

    I am useing eclipse and ant and trying to make a jar file. I have used some external jar files. I have managed to add external jar files to my jar. But Still I have a problem. In my project all libraries in lib folder. But when I put them into jar file. They are in the root folder.Classpath has changed and It couldn't find the class path.
    Is there any body knows how to define a new class path for external libraries with ANT. or How can I put my libraries into a lib folder in jar ?? I think both of them would solve my problem.
    thanks in advance.
    My code is like that, I think it requires a little modification
    <target name="jar">
            <mkdir dir="build/jar"/>         
            <jar destfile="build/jar/Deneme.jar" basedir="build/classes" >             
                <manifest>
                    <attribute name="Main-Class" value="${main-class}"/>                    
                </manifest>             
                 <fileset  dir="${lib.dir}" includes="**/*.jar"/>           
            </jar>
        </target>

    I can see why your other "question" was likely deleted. You need to drop the editorial comments and just ask a question. I believe what you want to know is how to configure something using php on your Apache server so that it can be read. If that's your question, here's a couple of places that discuss the topic:
    http://www.webmasterworld.com/linux/3345459.htm
    http://forums.macrumors.com/showthread.php?t=427742
    http://en.allexperts.com/q/PHP5-3508/configuring-installing-permissions.htm
    For a general introduction to 'nix permissions, take a look at this:
    http://www.osxfaq.com/Tutorials/LearningCenter/UnixTutorials/ManagingPermissions /index.ws
    And here's a whole book on the subject of Leopard permissions:
    http://my.safaribooksonline.com/9780321579331
    Try doing a Google search on "leopard permissions php apache" and see if you find what you are looking for.
    Francine
    Francine
    Schwieder

  • Wsgen as ant task doesn't recognize

    Hi
    I'm trying to build my webservice using ant in eclipse but ant doesn't regonize this kind of task
    my java files are in src catalouge and my build file looks like this
    <?xml version="1.0" encoding="UTF-8"?>
    <project name = "webservice">
    <property name = "build.dir" location="build.classes"/>
    <target name="init">
         <mkdir dir="${build.dir}"/>
    </target>
    <target name = "compile" description = "Kompiluje kod javy">
         <javac srcdir = "src" destdir = "build/classes"/>
    </target>
    <target name="generate">
    <wsgen destdir = "${build.dir}" sourcedestdir="${build.dir}">
         <classpath>
              <fileset dir = "src">
                   <include name="*.*"/>
              </fileset>
         </classpath>
    </wsgen>
    </target>
    </project>and i want to ask too, if iam using wsgen do i need to compile classes before, if someone could write some example buildfile i will be thankfull, i tryied to understand build file from the examples from sun's tutorial but the are too complicated for me

    Don't you need to declare the wsgen task somewhere?

  • ANT: optional tasks?

    How can I make ANT to support optional tasks (a task which typically requires an external library)?
    Documentation says:
    "If you want to develop extensions to Ant via the Apache Ant API within JDeveloper, see the Extension Manager page in Tools | Preferences - Extension Manager and the Apache Ant API documentation."
    I'd love to simply dump the external library (eg junit.jar) in a lib/ext/ant folder...

    I find it unfortunate that "add this to the project classpath" has become the de-facto standard solution to class finding and loading issues. Optional JARs contain ANT-specific support classes, and have nothing to do with the project code itself, so why pollute the project's classpath with those libraries?
    Like OC4J, ANT should have its own dedicated and customizable classpath, which should initially be cleaned of anything it doesn't need, especially the project's output path. ANT has an IDE-independent way to handle paths. If I want my project's output path to be part of ANT's classpath, then that should be my choice, not JDeveloper's!
    If you are in need of inspiration, take a look at Eclipse's ANT integration... no offense intended!

  • Eclipse problem after change from Openjdk to jre

    Hi guys, I have problem with eclipse and ant.
    I switched from openjre to sun jre from aur, I have instaled jre and jdk. But when I try to run my project over ant. I always get this error:
    Specified VM install not found: type Standard VM, name java-7-openjdk
    I don't know where is the problem.
    this is what i have in /etc/profile
    PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/java/jre/bin/:/usr/share/eclipse/jre/bin/java"
    export PATH
    JAVA_HOME="/opt/java"
    export JAVA_HOME
    I don't know where is the problem.

    jdarnold wrote:Have you checked the Java Build Path in eclipse?
    I try to set build path to option "project" and also set my path in Folder option source"src" and output:"build", it's not working

  • Urgent: source2wsdd ant problem

    I can successfully use MOST Web Service ANT tasks from inside Eclipse IDE, by either
    putting the weblogic jars on the eclipse's ant classpath or by pointing Eclipse
    at D:\bea\weblogic81\server\bin for the ant home, but I cannot get source2wsdd
    to work when Eclipse invokes ant.
    This is the error :-
    [source2wsdd] source2wsdd: Cannot find doclet class weblogic.webservice.tools.ddgen.ServiceGen
    It works fine if I run from dos window, but run setenv.cmd first.
    Also I don't think I can use <java fork="true" as there isn't an equivalent command
    line version of source2wsdd
    Any assistance would be much appreciated, this has been driving me mad.
    I believe weblogic.webservice.tools.ddgen.ServiceGen class is in the webservices.jar
    like all the other ant task classes, but although webservices.jar seems to be
    on the classpath for all ant targets it still complains.
    Maybe it is something to do

    Pete: Per the conversation with the person at eclipse.org, this code is
    NOT being retrofitted to Eclipse 2.1.3. (Apparently the ant plugin was
    totally rewritten for Eclipse 3.)
    I asked about the stability of Eclipse 3 M2, and was told that the
    developer in question uses it all the time. I downloaded it, unzipped to
    a new directory (I'm paranoid about losing my 2.1.3 workspace), checked
    out the project from CVS, added the appropriate JAR files to the
    CLASSPATH used by the ANT task (weblogic.jar and webservices.jar) and it
    works as you would expect. I didn't even have to change my scripts.
    So far I have had zero problems with Eclipse 3 M2, and as a matter of
    fact have already gotten some good use out of the new editor and
    refactoring tools. (I'm sure there is a ton more stuff "under the hood",
    but haven't gotten a chance to explore the "what's new" files yet.)
    Wayne
    Pete wrote:
    Wayne,
    Can you tell me how you got this to work ?
    and will it work in Eclipse 2.1.3 ?
    many thanks
    Pete
    Wayne Holmes <[email protected]> wrote:
    Pete: Good news. Between myself, BEA and Eclipse we were able to get
    this working. I upgraded to Eclipse 3 M2 (available at eclipse.org) and
    I can do do the build from within Eclipse.
    Wayne
    Pete wrote:
    Hi Wayne,
    No I never managed to resolve this issue, we looked at it for quitea while, but
    in the end proceeded with a temporary workaround, where we in our antscript we
    run just the source2wsdd target as an EXEC invoking a .bat file whichjust runs
    the <source2wsdd> target outside of Eclipse.
    I was not really clear if this is a Weblogic or Eclipse issue, whatversion of
    Eclipse are you using, we were using 2.1.3rc, but did wonder is Eclipse3 would
    solve this ?
    Let me know if you raise a bea support case.
    Pete
    Wayne Holmes <[email protected]> wrote:
    My bad... pasted the wrong information in the previous message. Here
    is the correct debug output:
    generateCreateTransactionWebService:
    Adding reference: eclipse.progress.monitor -> org.eclipse.core.runtime.SubProgressMonitor@17af46e
    dropping C:\program files\Java\j2re1.4.2_04\lib\tools.jar from path
    as
    it doesn't exist
    [source2wsdd] classpath C:\bea\weblogic81\server\lib\webservices.jar;C:\bea\weblogic81\server\lib\ejbgen.jar;C:\bea\weblogic81\server\lib\wlutil.jar;C:\bea\weblogic81\server\lib\weblogic.jar;C:\program
    files\Java\j2re1.4.2_04\lib\tools.jar;C:\eclipsem2\eclipse\workspace\WeblogicWebservice\bin;C:\temp\java;C:\eclipsem2\eclipse\startup.jar
    [source2wsdd] source2wsdd: Cannot find doclet class weblogic.webservice.tools.ddgen.ServiceGen
    [source2wsdd] 1 error
    [source2wsdd] BUILD FAILED: file:c:/eclipsem2/eclipse/workspace/WeblogicWebservice/scripts/build.xml:40:
    javadoc execution failed
    Here is the ant task:
              <source2wsdd javaSource="${project_source}/com/qwest/qxg/webservices/CreateTransactionImpl.java"
                   typesInfo="${generated_java}/types.xml"
                   ddFile="${generated_ddfiles}/web-services.xml"
                   wsdlFile="${generated_ddfiles}/createTransaction.wsdl"
                   serviceURI="/CreateTransaction">
                   <classpath refid="classpath"/>
              </source2wsdd>
    As you can see from the debug output, webservices.jar is in the CLASSPATH.
    What I noticed (and can be seen from the previous message) is thateven
    though I put webservices.jar in the path for the Eclipse ant task,it
    isn't showing up in the debug output. Best I can tell, this behavior
    is unique to the "source2wsdd" task, as "autotype" and "clientgen"and
    "wspackage" seem to run fine.
    If I set the environment from a cmd.exe and run the ant directly from
    the command line then the task runs correctly.
    Wayne

  • Call jalopy from ant

    I am using eclipse IDE for developing java code. it has the ant tool built in. Now I want to use jalopy for code formatting. Please tell me how can I call jalopy from ant.

    I don't neither see Eclipse nor ant nor jalopy support fora here...

  • Replicating ant script (env vars and copy of common files) in JDeveloper

    We have an existing application that was building in Eclipse using Ant scripts.
    We now have a requirement to build and deploy using JDeveloper. We have been successful in some aspects, but now are trying to replicate in JDeveloper the use of environment variables and copy of common folders as our Ant Scripts did for us in Eclipse. Is it possible to replicate this in JDeveloper?
    Thanks in advance.

    Our client requests a JDeveloper project file only that they can build and deploy. They do not approve of the use of Ant scripts, so we are trying to mirror our application that was built in Eclipse with Ant into JDeveloper (with no Ant).
    We are looking into workarounds to eliminate the need for a replacement of the Ant script to copy common files into the directories needed, and to determine those paths based on the environment varaibles, but none of hte work-arounds thus far are great options. Based on my reserach, I have not found a way to implement these functions in JDeveloper without the use of an Ant script. Is this an accurate statement?

  • File not found - opening files from appXplorer

    Quite strange this one. Bear in mind, I've just started my first JSP project. So if I get some terminology wrong, please be gentle. :)
    OK; start up NitroX and open the three files I have (two in web/ one in pages/). index.jsp includes two of the other files (using <%@include/> directive)
    All is well, it recognises that they are included and the top-level tag references and variables are available in the included pages.
    When I edit and save any one of the pages, all the other pages loose thier references. Variables and tags become unresolved. If I then close the page and try and reopen it, I get an alert box with "The file file:/x:/webapps/root/cars/pages/config.jsp cannot be found".
    Any changes I make and save are successful. Restarting NitroX fixes the problem, but it happens again as soon as I save the first time. X: is a network drive, but it's actually a network drive on my machine.
    Any suggestions? Configuration dump follows:
    *** Date: 7/09/05 15:11
    *** Platform Details:
    *** System properties:
    awt.toolkit=sun.awt.windows.WToolkit
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=I200409212000
    eclipse.commands=-os
    win32
    -ws
    win32
    -arch
    x86
    -showsplash
    C:\Documents and Settings\Shed Media\Desktop\eclipse\eclipse.exe -showsplash 600
    -exitdata
    C:\Documents and Settings\Shed Media\Desktop\eclipse\eclipse.exe -exitdata fe8_38
    -feature
    com.m7.nitrox
    -application
    org.eclipse.ui.ide.workbench
    -vm
    C:\WINDOWS\system32\javaw.exe
    eclipse.product=com.m7.nitrox
    eclipse.startTime=1126068873218
    eclipse.vm=C:\WINDOWS\system32\javaw.exe
    eclipse.vmargs=-Xms128M
    -Xmx512M
    -Dosgi.splashLocation=C:\NitroX_JSP_Editor_2.1_425\NitroX\splash.bmp
    -cp
    C:\Documents and Settings\Shed Media\Desktop\eclipse\startup.jar
    org.eclipse.core.launcher.Main
    eof=eof
    file.encoding=Cp1252
    file.encoding.pkg=sun.io
    file.separator=\
    http.proxyHost=
    http.proxyPort=
    http.proxySet=true
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:\Documents and Settings\Shed Media\Desktop\eclipse\startup.jar
    java.class.version=49.0
    java.endorsed.dirs=C:\Program Files\Java\jre1.5.0_02\lib\endorsed
    java.ext.dirs=C:\Program Files\Java\jre1.5.0_02\lib\ext
    java.home=C:\Program Files\Java\jre1.5.0_02
    java.io.tmpdir=C:\DOCUME~1\SHEDME~1\LOCALS~1\Temp\
    java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\usr\bin;C:\Program Files\OPENXTRA\WinPCap
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.5.0_02-b09
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.5
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.5.0_02
    java.vm.info=mixed mode, sharing
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=1.5.0_02-b09
    line.separator=
    m7.launcher=true
    org.eclipse.jdt.debug.ui.scrapbookActive=false
    org.osgi.framework.executionenvironment=
    org.osgi.framework.language=en
    org.osgi.framework.os.name=WindowsXP
    org.osgi.framework.os.version=5.1
    org.osgi.framework.processor=x86
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.2.0
    org.w3c.css.sac.parser=com.steadystate.css.parser.SACParser
    os.arch=x86
    os.name=Windows XP
    os.version=5.1
    osgi.arch=x86
    osgi.bundles=org.eclipse.core.runtime@2:start, org.eclipse.update.configurator@3:start
    osgi.bundles.defaultStartLevel=4
    osgi.bundlestore=c:\Documents and Settings\Shed Media\Desktop\eclipse\configuration\org.eclipse.osgi\bundles
    osgi.configuration.area=file:/c:/Documents and Settings/Shed Media/Desktop/eclipse/configuration/
    osgi.framework=file:/c:/Documents and Settings/Shed Media/Desktop/eclipse/plugins/org.eclipse.osgi_3.1.0/
    osgi.framework.beginningstartlevel=1
    osgi.framework.version=3.0.0
    osgi.frameworkClassPath=core.jar, console.jar, osgi.jar, resolver.jar, defaultAdaptor.jar, eclipseAdaptor.jar
    osgi.install.area=file:/c:/Documents and Settings/Shed Media/Desktop/eclipse/
    osgi.instance.area=file:/x:/webapps/root/
    osgi.logfile=x:\webapps\root\.metadata\.log
    osgi.manifest.cache=c:\Documents and Settings\Shed Media\Desktop\eclipse\configuration\org.eclipse.osgi\manifests
    osgi.nl=en_AU
    osgi.os=win32
    osgi.splashLocation=C:\NitroX_JSP_Editor_2.1_425\NitroX\splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.ws=win32
    path.separator=;
    sun.arch.data.model=32
    sun.boot.class.path=C:\Program Files\Java\jre1.5.0_02\lib\rt.jar;C:\Program Files\Java\jre1.5.0_02\lib\i18n.jar;C:\Program Files\Java\jre1.5.0_02\lib\sunrsasign.jar;C:\Program Files\Java\jre1.5.0_02\lib\jsse.jar;C:\Program Files\Java\jre1.5.0_02\lib\jce.jar;C:\Program Files\Java\jre1.5.0_02\lib\charsets.jar;C:\Program Files\Java\jre1.5.0_02\classes
    sun.boot.library.path=C:\Program Files\Java\jre1.5.0_02\bin
    sun.cpu.endian=little
    sun.cpu.isalist=
    sun.desktop=windows
    sun.io.unicode.encoding=UnicodeLittle
    sun.jnu.encoding=Cp1252
    sun.management.compiler=HotSpot Client Compiler
    sun.os.patch.level=Service Pack 2
    user.country=AU
    user.dir=C:\Documents and Settings\Shed Media\Desktop\eclipse
    user.home=C:\Documents and Settings\Shed Media
    user.language=en
    user.name=Shed Media
    user.timezone=Australia/Brisbane
    user.variant=
    *** Features:
    com.exadel.studio (3.0.3) "Exadel Studio Pro"
    com.m7.nitrox (2.1.0) "NitroX"
    org.eclipse.emf (2.1.0) "Eclipse Modeling Framework (EMF)"
    org.eclipse.emf.ecore.sdo (2.1.0) "EMF Service Data Objects (SDO)"
    org.eclipse.gef (3.1.0) "Graphical Editing Framework"
    org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools"
    org.eclipse.jdt.source (3.1.0) "Eclipse Java Development Tools SDK"
    org.eclipse.jst (0.7.0) "J2EE Standard Tools"
    org.eclipse.jst (0.7.0) "J2EE Standard Tools"
    org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment"
    org.eclipse.pde.source (3.1.0) "Eclipse Plug-in Development Environment Developer Resources"
    org.eclipse.platform (3.1.0) "Eclipse Platform"
    org.eclipse.platform.source (3.1.0) "Eclipse Platform Plug-in Developer Resources"
    org.eclipse.sdk (3.1.0) "Eclipse Project SDK"
    org.eclipse.wst (0.7.0) "Web Standard Tools"
    org.eclipse.wst (0.7.0) "Web Standard Tools"
    org.eclipse.xsd (2.1.0) "XML Schema Infoset Model (XSD)"
    org.springframework.ide.eclipse (1.2.2) "Spring IDE"
    *** Plug-in Registry:
    com.exadel.common (7.0.3) "Exadel Common" [Installed]
    com.exadel.common.gef (2.0.3) "Exadel GEF Common" [Installed]
    com.exadel.examples (1.0.3) "Exadel Examples" [Resolved]
    com.exadel.jsf (6.0.3) "Exadel JSF Studio" [Installed]
    com.exadel.jsf.examples (1.0.3) "JSF Examples" [Resolved]
    com.exadel.jsf.ui (2.0.3) "Exadel JSF Studio" [Installed]
    com.exadel.jsf.verification (7.0.3) "JSF Verification" [Installed]
    com.exadel.model (7.0.3) "Exadel Model" [Installed]
    com.exadel.model.ui (7.0.3) "Exadel Model UI" [Installed]
    com.exadel.model.ui.editors (7.0.3) "Exadel Editors" [Installed]
    com.exadel.model.ui.views (7.0.3) "Exadel Studio" [Installed]
    com.exadel.orm2.core (1.0.3) "ORM_CORE" [Installed]
    com.exadel.orm2.hblibs (1.0.3) "Hibernate Jars" [Resolved]
    com.exadel.orm2.view (1.0.3) "View Plug-in" [Installed]
    com.exadel.palette (7.0.3) "Exadel Studio Palette" [Installed]
    com.exadel.project.templates (7.0.3) "Exadel Project Templates" [Installed]
    com.exadel.prompting.knowledgebase (7.0.3) "Exadel Struts Studio Prompting Knowledgebase" [Installed]
    com.exadel.struts (7.0.3) "com.exadel.struts" [Installed]
    com.exadel.struts.debug (2.0.3) "Exadel Struts Debugger" [Installed]
    com.exadel.struts.examples (1.0.3) "Struts Examples" [Resolved]
    com.exadel.struts.pro.ui (7.0.3) "Struts Studio UI" [Installed]
    com.exadel.struts.ui (7.0.3) "Exadel Struts Studio" [Installed]
    com.exadel.struts.validator.ui (7.0.3) "Exadel Struts Studio Validator" [Installed]
    com.exadel.struts.verification (7.0.3) "Struts Verification" [Installed]
    com.exadel.studio (3.0.3) "Exadel Studio Pro" [Resolved]
    com.exadel.templates (2.0.3) "Exadel Templates Plug-in" [Installed]
    com.exadel.texteditors.extensions (1.0.3) "Text Editors Extensions" [Installed]
    com.exadel.texteditors.extensions.jsf (1.0.3) "Jsf Text Editors Extensions" [Installed]
    com.exadel.texteditors.extensions.struts (1.0.3) "Struts Text Editors Extensions" [Installed]
    com.exadel.texteditors.jsp (7.0.3) "Jsp Editor Plug-in" [Installed]
    com.exadel.texteditors.jsp.preview.verification (7.0.4) "Jsp Editor Plug-in" [Installed]
    com.exadel.texteditors.xml (7.0.3) "Xml Editor Plug-in" [Installed]
    com.exadel.ui (2.0.3) "Exadel UI Plugin" [Installed]
    com.exadel.verification (7.0.3) "com.exadel.verification" [Installed]
    com.exadel.verification.ui (7.0.3) "Exadel Studio Verification Framework" [Installed]
    com.exadel.vpe (1.0.3) "Vpe Plug-in" [Installed]
    com.exadel.vpe.mozilla (1.0.3) "Visual Page Editor" [Resolved]
    com.exadel.vpe.mozilla.win32 (1.0.3) "Win32 Fragment" [Resolved]
    com.exadel.web (7.0.3) "Web" [Installed]
    com.exadel.web.debug (2.0.3) "Web Debug" [Installed]
    com.exadel.web.debug.ui (2.0.3) "Web Debug UI" [Installed]
    com.exadel.web.tiles (7.0.3) "Web Tiles" [Installed]
    com.exadel.web.tiles.ui (7.0.3) "Exadel Tiles" [Installed]
    com.exadel.web.ui (7.0.3) "Web UI" [Installed]
    com.ibm.etools.emf.event (3.0.0.1) "Event Model" [Resolved]
    com.m7.nitrox (2.1.0) "NitroX" [Active]
    com.m7.nitrox.eclipse3.0 (2.1.0) "NitroX Eclipse 3.0 Fragment" [Resolved]
    com.neomalogic.solex (0.5.2.b) "Solex" [Resolved]
    com.rohanclan.cfml (1.1.17.2) "CFML Plug-in" [Resolved]
    nu.psnet.quickimage (0.2.0) "QuickImage" [Resolved]
    org.apache.ant (1.6.2) "Apache Ant" [Resolved]
    org.apache.axis (1.2.1) "Axis121 Plug-in" [Resolved]
    org.apache.lucene (1.3.0) "Apache Lucene" [Resolved]
    org.apache.wsil4j (1.0.0) "Apache WSIL4J 1.0" [Resolved]
    org.apache.xerces (2.7.0) "Xerces 2.7.0" [Resolved]
    org.eclipse.ant.core (3.1.0) "Ant Build Tool Core" [Resolved]
    org.eclipse.ant.ui (3.1.0) "Ant UI" [Resolved]
    org.eclipse.compare (3.1.0) "Compare Support" [Active]
    org.eclipse.core.boot (3.0.0) "Core Boot" [Resolved]
    org.eclipse.core.expressions (3.1.0) "Expression Language" [Active]
    org.eclipse.core.filebuffers (3.1.0) "File Buffers" [Active]
    org.eclipse.core.resources (3.1.0) "Core Resource Management" [Active]
    org.eclipse.core.resources.win32 (3.0.0) "Core Resource Management Win32 Fragment" [Resolved]
    org.eclipse.core.runtime (3.1.0) "Core Runtime" [Active]
    org.eclipse.core.runtime.compatibility (3.0.0) "Core Runtime Plug-in Compatibility" [Resolved]
    org.eclipse.core.variables (3.0.0) "Core Variables" [Resolved]
    org.eclipse.debug.core (3.1.0) "Debug Core" [Active]
    org.eclipse.debug.ui (3.1.0) "Debug UI" [Active]
    org.eclipse.draw2d (3.1.0) "Draw2d" [Resolved]
    org.eclipse.emf (2.1.0) "Eclipse Modeling Framework (EMF)" [Resolved]
    org.eclipse.emf.ant (2.1.0) "EMF Ant Tasks" [Resolved]
    org.eclipse.emf.codegen (2.1.0) "EMF Template Code Generator" [Resolved]
    org.eclipse.emf.codegen.ecore (2.1.0) "EMF Ecore Code Generation" [Resolved]
    org.eclipse.emf.codegen.ecore.ui (2.1.0) "EMF Ecore Code Generation UI" [Resolved]
    org.eclipse.emf.codegen.ui (2.1.0) "EMF Template Code Generator UI" [Resolved]
    org.eclipse.emf.common (2.1.0) "EMF Common" [Resolved]
    org.eclipse.emf.common.ui (2.1.0) "EMF Common UI" [Resolved]
    org.eclipse.emf.commonj.sdo (2.1.0) "CommonJ SDO" [Resolved]
    org.eclipse.emf.ecore (2.1.0) "EMF Ecore" [Resolved]
    org.eclipse.emf.ecore.change (2.1.0) "EMF Ecore Change Model" [Resolved]
    org.eclipse.emf.ecore.change.edit (2.1.0) "EMF Ecore Change Edit Support" [Resolved]
    org.eclipse.emf.ecore.edit (2.1.0) "EMF Ecore Edit Support" [Resolved]
    org.eclipse.emf.ecore.editor (2.1.0) "Sample Ecore Editor" [Resolved]
    org.eclipse.emf.ecore.sdo (2.1.0) "EMF Service Data Objects (SDO)" [Resolved]
    org.eclipse.emf.ecore.sdo.edit (2.1.0) "EMF Service Data Objects (SDO) Edit Support" [Resolved]
    org.eclipse.emf.ecore.sdo.editor (2.1.0) "EMF Service Data Objects (SDO) Editor" [Resolved]
    org.eclipse.emf.ecore.xmi (2.1.0) "EMF XMI" [Resolved]
    org.eclipse.emf.edit (2.1.0) "EMF Edit" [Resolved]
    org.eclipse.emf.edit.ui (2.1.0) "EMF Edit UI" [Resolved]
    org.eclipse.emf.importer (2.1.0) "EMF Model Import Support" [Resolved]
    org.eclipse.emf.importer.ecore (2.1.0) "EMF Ecore Importer" [Resolved]
    org.eclipse.emf.importer.java (2.1.0) "EMF Annotated Java Importer" [Resolved]
    org.eclipse.emf.importer.rose (2.1.0) "EMF Rose Importer" [Resolved]
    org.eclipse.emf.mapping (2.1.0) "EMF Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2ecore (2.1.0) "Ecore to Ecore Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2ecore.editor (2.1.0) "Ecore to Ecore Mapping Editor" [Resolved]
    org.eclipse.emf.mapping.ecore2xml (2.1.0) "Ecore to XML Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2xml.ui (2.1.0) "Ecore to XML Mapping UI" [Resolved]
    org.eclipse.emf.mapping.ui (2.1.0) "EMF Mapping UI" [Resolved]
    org.eclipse.emf.mapping.xsd2ecore (2.1.0) "XSD to Ecore Mapping" [Resolved]
    org.eclipse.emf.mapping.xsd2ecore.editor (2.1.0) "XSD to Ecore Mapping Editor" [Resolved]
    org.eclipse.gef (3.1.0) "Graphical Editing Framework" [Resolved]
    org.eclipse.help (3.0.0) "Help System Core" [Active]
    org.eclipse.help.appserver (3.0.0) "Help Application Server" [Resolved]
    org.eclipse.help.base (3.0.0) "Help System Base" [Resolved]
    org.eclipse.help.ide (3.0.0) "Help System IDE" [Resolved]
    org.eclipse.help.ui (3.0.0) "Help System UI" [Resolved]
    org.eclipse.help.webapp (3.0.0) "Help System Webapp" [Resolved]
    org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools" [Resolved]
    org.eclipse.jdt.core (3.1.0) "Java Development Tools Core" [Active]
    org.eclipse.jdt.debug (3.1.0) "JDI Debug Model" [Active]
    org.eclipse.jdt.debug.ui (3.1.0) "JDI Debug UI" [Active]
    org.eclipse.jdt.doc.isv (3.1.0) "Eclipse JDT Plug-in Developer Guide" [Resolved]
    org.eclipse.jdt.doc.user (3.1.0) "Eclipse Java Development User Guide" [Resolved]
    org.eclipse.jdt.junit (3.1.0) "Java Development Tools JUnit support" [Resolved]
    org.eclipse.jdt.junit.runtime (3.1.0) "Java Development Tools JUnit runtime support" [Resolved]
    org.eclipse.jdt.launching (3.1.0) "Java Development Tools Launching Support" [Active]
    org.eclipse.jdt.source (3.1.0) "Eclipse Java Development Tools SDK" [Resolved]
    org.eclipse.jdt.ui (3.1.0) "Java Development Tools UI" [Active]
    org.eclipse.jem (1.1.0) "Java EMF Model" [Installed]
    org.eclipse.jem.beaninfo (1.1.0) "Java EMF Model BeanInfo (Introspection) Support" [Installed]
    org.eclipse.jem.proxy (1.1.0) "Java EMF Model Proxy Support" [Installed]
    org.eclipse.jem.ui (1.1.0) "Java EMF Model UI" [Installed]
    org.eclipse.jem.util (1.1.0) "Java EMF Model Utilities" [Installed]
    org.eclipse.jem.workbench (1.1.0) "Java EMF Model Workbench Support" [Installed]
    org.eclipse.jface (3.1.0) "JFace" [Active]
    org.eclipse.jface.text (3.1.0) "JFace Text" [Active]
    org.eclipse.jst (0.7.0) "J2EE Standard Tools" [Resolved]
    org.eclipse.jst.common.annotations.controller (0.7.0) "Annotation Controller Plug-in" [Installed]
    org.eclipse.jst.common.annotations.core (0.7.0) "Annotation Core Plug-in" [Installed]
    org.eclipse.jst.common.annotations.ui (0.7.0) "Ui Plug-in" [Installed]
    org.eclipse.jst.common.frameworks (0.7.0) "Integration Plug-in" [Installed]
    org.eclipse.jst.common.navigator.java (0.7.0) "Navigator Plug-in" [Installed]
    org.eclipse.jst.doc.user (0.7.0) "JST User Doc Plug-in" [Resolved]
    org.eclipse.jst.ejb.ui (0.7.0) "WTP EJB UI Plug-in" [Installed]
    org.eclipse.jst.j2ee (0.7.0) "J2EE Component" [Installed]
    org.eclipse.jst.j2ee.core (0.7.0) "J2EE Core Component" [Installed]
    org.eclipse.jst.j2ee.ejb (0.7.0) "EJB component Plug-in" [Installed]
    org.eclipse.jst.j2ee.ejb.annotation.model (0.7.0) "EJB Annotation Model Plug-in" [Installed]
    org.eclipse.jst.j2ee.ejb.annotations.emitter (0.7.0) "EJB Emitter Plug-in" [Installed]
    org.eclipse.jst.j2ee.ejb.annotations.ui (0.7.0) "EJB Annotations Ui Plug-in" [Installed]
    org.eclipse.jst.j2ee.ejb.annotations.xdoclet (0.7.0) "Xdoclet Annotations Plug-in" [Installed]
    org.eclipse.jst.j2ee.jca (0.7.0) "JCA Plug-in" [Installed]
    org.eclipse.jst.j2ee.jca.ui (0.7.0) "WTP JCA UI Plug-in" [Installed]
    org.eclipse.jst.j2ee.navigator.ui (0.7.0) "J2EE Extensions to Common Navigator" [Installed]
    org.eclipse.jst.j2ee.ui (0.7.0) "WTP J2EE UI Plug-in" [Installed]
    org.eclipse.jst.j2ee.web (0.7.0) "Web Plug-in" [Installed]
    org.eclipse.jst.j2ee.webservice (0.7.0) "Web Service Plug-in" [Installed]
    org.eclipse.jst.j2ee.webservices.ui (0.7.0) "WTP Webservice UI Plug-in" [Installed]
    org.eclipse.jst.jsp.core (0.7.0) "Structured Source JSP Model" [Installed]
    org.eclipse.jst.jsp.core (0.7.1) "Structured Source JSP Model" [Installed]
    org.eclipse.jst.jsp.ui (0.7.0) "SSE JSP Source Editor" [Installed]
    org.eclipse.jst.server.core (0.7.0) "Java Server Support" [Resolved]
    org.eclipse.jst.server.generic.core (0.7.0) "Generic Server Plugin" [Resolved]
    org.eclipse.jst.server.generic.serverdefinitions (0.7.0) "Generic server example definitions" [Installed]
    org.eclipse.jst.server.generic.ui (0.7.0) "Generic Server Plugin UI" [Installed]
    org.eclipse.jst.server.geronimo.core (0.7.0) "Geronimo server support" [Installed]
    org.eclipse.jst.server.geronimo.ui (0.7.0) "Geronimo server UI support" [Installed]
    org.eclipse.jst.server.tomcat.core (0.7.0) "Apache Tomcat Support" [Installed]
    org.eclipse.jst.server.tomcat.ui (0.7.0) "Apache Tomcat UI Support" [Installed]
    org.eclipse.jst.server.ui (0.7.0) "Java Server UI Support" [Installed]
    org.eclipse.jst.server.websphere.core (0.7.0) "WebSphere Generic Server Definition Core Plug-in" [Installed]
    org.eclipse.jst.servlet.ui (0.7.0) "WTP Servlet UI Plug-in" [Installed]
    org.eclipse.jst.ws (0.7.0) "Web Services" [Installed]
    org.eclipse.jst.ws.axis.consumption.core (0.7.0) "Web service Axis Consumption Core" [Installed]
    org.eclipse.jst.ws.axis.consumption.ui (0.7.0) "Webservice Axis Consumption UI" [Installed]
    org.eclipse.jst.ws.axis.consumption.ui (0.7.1) "Webservice Axis Consumption UI" [Installed]
    org.eclipse.jst.ws.axis.creation.ui (0.7.0) "Webservice Axis Creation UI" [Installed]
    org.eclipse.jst.ws.consumption (0.7.0) "Web Services Consumption" [Installed]
    org.eclipse.jst.ws.consumption.ui (0.7.0) "Web Services Consumption Graphical User Interface" [Installed]
    org.eclipse.jst.ws.consumption.ui (0.7.1) "Web Services Consumption Graphical User Interface" [Installed]
    org.eclipse.jst.ws.creation.ejb.ui (0.7.0) "Web Services Creation EJB Graphical User Interface" [Installed]
    org.eclipse.jst.ws.creation.ui (0.7.0) "Web Services Creation Graphical User Interface" [Installed]
    org.eclipse.jst.ws.creation.ui (0.7.1) "Web Services Creation Graphical User Interface" [Installed]
    org.eclipse.jst.ws.uddiregistry (0.7.0) "Web Services Universal Description Discovery and Integration Registry" [Installed]
    org.eclipse.jst.ws.ui (0.7.0) "Web Services Graphical User Interface" [Installed]
    org.eclipse.jst.ws.ui (0.7.1) "Web Services Graphical User Interface" [Installed]
    org.eclipse.ltk.core.refactoring (3.1.0) "Refactoring Core" [Active]
    org.eclipse.ltk.ui.refactoring (3.1.0) "Refactoring UI" [Active]
    org.eclipse.osgi (3.1.0) "OSGi System Bundle" [Active]
    org.eclipse.osgi.services (3.0.0) "OSGi Release 3 Services" [Resolved]
    org.eclipse.osgi.util (3.0.0) "OSGi R3 Utility Classes" [Resolved]
    org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment" [Resolved]
    org.eclipse.pde.build (3.1.0) "Plug-in Development Environment Build Support" [Resolved]
    org.eclipse.pde.core (3.1.0) "Plug-in Development Core" [Resolved]
    org.eclipse.pde.doc.user (3.1.0) "Eclipse Plug-in Development User Guide" [Resolved]
    org.eclipse.pde.junit.runtime (3.1.0) "PDE JUnit Plug-in Test" [Resolved]
    org.eclipse.pde.runtime (3.1.0) "Plug-in Development Environment Runtime" [Resolved]
    org.eclipse.pde.source (3.1.0) "Eclipse Plug-in Development Environment Developer Resources" [Resolved]
    org.eclipse.pde.ui (3.1.0) "Plug-in Development UI" [Resolved]
    org.eclipse.platform (3.1.0) "Eclipse Platform" [Resolved]
    org.eclipse.platform.doc.isv (3.1.0) "Eclipse Platform Plug-in Developer Guide" [Resolved]
    org.eclipse.platform.doc.user (3.1.0) "Eclipse Workbench User Guide" [Resolved]
    org.eclipse.platform.source (3.1.0) "Eclipse Platform Plug-in Developer Resources" [Resolved]
    org.eclipse.platform.source.win32.win32.x86 (3.1.0) "Eclipse Platform Plug-in Developer Resources" [Resolved]
    org.eclipse.sdk (3.1.0) "Eclipse Project SDK" [Resolved]
    org.eclipse.search (3.1.0) "Search Support" [Active]
    org.eclipse.swt (3.1.0) "Standard Widget Toolkit" [Resolved]
    org.eclipse.swt.win32 (3.1.0) "Standard Widget Toolkit for Windows" [Resolved]
    org.eclipse.team.core (3.1.0) "Team Support Core" [Active]
    org.eclipse.team.cvs.core (3.1.0) "CVS Team Provider Core" [Resolved]
    org.eclipse.team.cvs.ssh (3.1.0) "CVS SSH Core" [Resolved]
    org.eclipse.team.cvs.ssh2 (3.1.0) "CVS SSH2" [Resolved]
    org.eclipse.team.cvs.ui (3.1.0) "CVS Team Provider UI" [Resolved]
    org.eclipse.team.ui (3.1.0) "Team Support UI" [Active]
    org.eclipse.text (3.1.0) "Text" [Active]
    org.eclipse.tomcat (4.1.30) "Tomcat Wrapper" [Resolved]
    org.eclipse.ui (3.1.0) "Eclipse UI" [Active]
    org.eclipse.ui.cheatsheets (3.0.0) "Cheat Sheets" [Resolved]
    org.eclipse.ui.console (3.1.0) "Console" [Resolved]
    org.eclipse.ui.editors (3.1.0) "Default Text Editor" [Active]
    org.eclipse.ui.externaltools (3.1.0) "External Tools" [Active]
    org.eclipse.ui.forms (3.0.0) "Eclipse Forms" [Resolved]
    org.eclipse.ui.ide (3.1.0) "Eclipse IDE UI" [Active]
    org.eclipse.ui.intro (3.0.0) "Intro Plugin" [Resolved]
    org.eclipse.ui.presentations.r21 (3.1.0) "R21 Presentation Plug-in" [Resolved]
    org.eclipse.ui.views (3.1.0) "Views" [Active]
    org.eclipse.ui.win32 (3.1.0) "Win32 fragment" [Resolved]
    org.eclipse.ui.workbench (3.1.0) "Workbench" [Active]
    org.eclipse.ui.workbench.compatibility (3.1.0) "Workbench Compatibility" [Resolved]
    org.eclipse.ui.workbench.texteditor (3.1.0) "Text Editor Framework" [Active]
    org.eclipse.update.configurator (3.0.0) "Install/Update Configurator" [Active]
    org.eclipse.update.core (3.0.0) "Install/Update Core" [Active]
    org.eclipse.update.core.win32 (3.0.0) "Install/Update Core for Windows" [Resolved]
    org.eclipse.update.scheduler (3.0.0) "Automatic Updates Scheduler" [Active]
    org.eclipse.update.ui (3.0.0) "Install/Update UI" [Resolved]
    org.eclipse.wst (0.7.0) "Web Standard Tools" [Resolved]
    org.eclipse.wst.command.env (0.7.0) "Environment Command Framework (headless)" [Resolved]
    org.eclipse.wst.command.env.core (0.7.0) "Environment Command Framework (core)" [Resolved]
    org.eclipse.wst.command.env.ui (0.7.0) "Environment Command Framework (GUI)" [Resolved]
    org.eclipse.wst.common.emf (0.7.0) "EMF Utilities" [Installed]
    org.eclipse.wst.common.emfworkbench.integration (0.7.0) "EMF Workbench Edit Plug-in" [Installed]
    org.eclipse.wst.common.frameworks (0.7.0) "org.eclipse.wst.common.frameworks" [Installed]
    org.eclipse.wst.common.frameworks.ui (0.7.0) "WTP UI Plug-in" [Installed]
    org.eclipse.wst.common.modulecore (0.7.0) "Modulecore Plug-in" [Installed]
    org.eclipse.wst.common.navigator.views (0.7.0) "Common Navigator View" [Resolved]
    org.eclipse.wst.common.navigator.workbench (0.7.0) "Navigator Workbench Components" [Installed]
    org.eclipse.wst.common.snippets (0.7.0) "Snippets View" [Resolved]
    org.eclipse.wst.common.ui (0.7.0) "Eclipse Base UI extensions" [Resolved]
    org.eclipse.wst.common.ui.properties (0.7.0) "Common Properties UI" [Resolved]
    org.eclipse.wst.common.uriresolver (0.7.0) "org.eclipse.wst.common.uriresolver" [Resolved]
    org.eclipse.wst.css.core (0.7.0) "Structured Source CSS Model" [Installed]
    org.eclipse.wst.css.ui (0.7.0) "SSE CSS Source Editor" [Installed]
    org.eclipse.wst.doc.user (0.7.0) "Web Standard Tools Help User Doc Plug-in" [Resolved]
    org.eclipse.wst.dtd.core (0.7.0) "Structured Source DTD Core" [Installed]
    org.eclipse.wst.dtd.ui (0.7.0) "SSE DTD Source Editor" [Installed]
    org.eclipse.wst.html.core (0.7.0) "Structured Source HTML Model" [Installed]
    org.eclipse.wst.html.standard.dtds (0.7.0) "Known DTDs" [Installed]
    org.eclipse.wst.html.ui (0.7.0) "HTML UI Source Editor" [Installed]
    org.eclipse.wst.internet.cache (0.7.0) "Cache URI Resolver Plug-in" [Resolved]
    org.eclipse.wst.internet.monitor.core (0.7.0) "Monitor" [Resolved]
    org.eclipse.wst.internet.monitor.ui (0.7.0) "TCP/IP Monitor" [Resolved]
    org.eclipse.wst.internet.proxy (0.7.0) "Internet Proxy Preferences" [Active]
    org.eclipse.wst.javascript.core (0.7.0) "Structured Source JavaScript Model" [Resolved]
    org.eclipse.wst.javascript.ui (0.7.0) "SSE JavaScript Source Editor" [Installed]
    org.eclipse.wst.rdb.connection.ui (0.7.0) "RDB Connection.ui" [Installed]
    org.eclipse.wst.rdb.connection.ui (0.7.1) "RDB Connection.ui" [Installed]
    org.eclipse.wst.rdb.core (0.7.0) "RDB Core" [Resolved]
    org.eclipse.wst.rdb.core.ui (0.7.0) "Core UI plugin" [Installed]
    org.eclipse.wst.rdb.core.ui (0.7.1) "Core UI plugin" [Installed]
    org.eclipse.wst.rdb.data.core (0.7.0) "Data Core Plugin" [Installed]
    org.eclipse.wst.rdb.data.ui (0.7.0) "Data UI Plugin" [Installed]
    org.eclipse.wst.rdb.dbdefinition.db2.iseries (1.0.0) "DB2 UDB iSeries Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.db2.luw (0.7.0) "DB2 UDB Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.db2.zseries (0.7.0) "DB2 UDB Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.derby (0.7.0) "IBM Cloudscape Database Definition" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.informix (0.7.0) "Informix Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.mysql (0.7.0) "DBDefinition Mysql Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.oracle (0.7.0) "Oracle Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.sqlserver (0.7.0) "SQL Server Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.dbdefinition.sybase (0.7.0) "Sybase Database Definition Plug-in" [Resolved]
    org.eclipse.wst.rdb.derby (0.7.0) "RDB Derby Plug-in" [Resolved]
    org.eclipse.wst.rdb.derby.ui (0.7.0) "RDB Derby Ui Plug-in" [Installed]
    org.eclipse.wst.rdb.fe.ui (0.7.0) "FE Ui Plug-in" [Installed]
    org.eclipse.wst.rdb.fe.ui.actions (0.7.0) "FE Ui Actions Plug-in" [Installed]
    org.eclipse.wst.rdb.models.dbdefinition (0.7.0) "DBDefinition Model" [Resolved]
    org.eclipse.wst.rdb.models.sql (0.7.0) "SQLModel Plug-in" [Resolved]
    org.eclipse.wst.rdb.models.sql.edit (0.7.0) "SQLModel Edit Plug-in" [Resolved]
    org.eclipse.wst.rdb.mysql (0.7.0) "RDB Mysql Plug-in" [Resolved]
    org.eclipse.wst.rdb.outputview (0.7.0) "Data Output Plug-in" [Installed]
    org.eclipse.wst.rdb.server.extensions (0.7.0) "Server Explorer Extensions Plug-in" [Installed]
    org.eclipse.wst.rdb.server.ui (0.7.0) "Server Explorer plugin" [Installed]
    org.eclipse.wst.rdb.server.ui (0.7.1) "Server Explorer plugin" [Installed]
    org.eclipse.wst.rdb.sqleditor (0.7.0) "SQL Source Editor Plugin" [Installed]
    org.eclipse.wst.rdb.sqlscrapbook (0.7.0) "Sqlscrapbook Plug-in" [Installed]
    org.eclipse.wst.server.core (0.7.0) "Server Core" [Resolved]
    org.eclipse.wst.server.ui (0.7.0) "Server UI" [Installed]
    org.eclipse.wst.sse.core (0.7.0) "Structured Text Model" [Resolved]
    org.eclipse.wst.sse.ui (0.7.0) "Structured Source Editor" [Installed]
    org.eclipse.wst.validation (0.7.0) "Validation Framework" [Installed]
    org.eclipse.wst.validation.ui (0.7.0) "Validation Framework UI" [Installed]
    org.eclipse.wst.web (0.7.0) "Simple Web Plug-in" [Installed]
    org.eclipse.wst.web.ui (0.7.0) "Simple Web UI Plug-in" [Installed]
    org.eclipse.wst.ws (0.7.0) "Web Services" [Resolved]
    org.eclipse.wst.ws.explorer (0.7.0) "Web Services Explorer" [Installed]
    org.eclipse.wst.ws.explorer (0.7.1) "Web Services Explorer" [Resolved]
    org.eclipse.wst.ws.parser (0.7.0) "Web Services Description Parser" [Resolved]
    org.eclipse.wst.ws.ui (0.7.0) "Web Services UI" [Resolved]
    org.eclipse.wst.wsdl (0.7.0) "WSDL Model" [Resolved]
    org.eclipse.wst.wsdl.ui (0.7.0) "WSDL Editor" [Installed]
    org.eclipse.wst.wsdl.ui (0.7.1) "WSDL Editor" [Installed]
    org.eclipse.wst.wsdl.validation (0.7.0) "WSDL Validator" [Installed]
    org.eclipse.wst.wsi (0.7.0) "WSI Conformance Tools" [Installed]
    org.eclipse.wst.wsi.ui (0.7.0) "Soap Monitor" [Installed]
    org.eclipse.wst.xml.core (0.7.0) "Structured Source XML Model" [Installed]
    org.eclipse.wst.xml.core (0.7.1) "Structured Source XML Model" [Installed]
    org.eclipse.wst.xml.ui (0.7.0) "XML UI Plugin" [Installed]
    org.eclipse.wst.xml.ui (0.7.1) "XML UI Plugin" [Installed]
    org.eclipse.wst.xsd.core (0.7.0) "XSD Core Plugin" [Installed]
    org.eclipse.wst.xsd.ui (0.7.0) "XML Schema Editor" [Installed]
    org.eclipse.wst.xsd.ui (0.7.1) "XML Schema Editor" [Installed]
    org.eclipse.xsd (2.1.0) "XML Schema Infoset Model (XSD)" [Resolved]
    org.eclipse.xsd.ecore.importer (2.1.0) "XML Schema Importer for EMF" [Resolved]
    org.eclipse.xsd.edit (2.1.0) "XML Schema Edit Framework" [Resolved]
    org.eclipse.xsd.editor (2.1.0) "XML Schema Editor" [Resolved]
    org.jboss.ide.eclipse.serverdefinitions (0.7.0) "Generic server example definitions" [Installed]
    org.junit (3.8.1) "JUnit Testing Framework" [Resolved]
    org.objectweb.lomboz.common.launcher.ant (3.1.0) "Ant Launcher Plug-in" [Resolved]
    org.objectweb.lomboz.product (1.0.0) "Lomboz Plug-in" [Resolved]
    org.objectweb.lomboz.serverdefinitions (1.0.0) "Lomboz server definitions" [Installed]
    org.objectweb.lomboz.ws.axis (3.1.0) "WTP Axis Plug-in" [Resolved]
    org.objectweb.lomboz.xdoclet.codeassist (1.0.0) "JOnAS XDoclet Codeassist Plug-in" [Installed]
    org.springframework.ide.eclipse (1.2.2) "Spring IDE" [Resolved]
    org.springframework.ide.eclipse.beans.core (1.2.2) "Spring IDE Beans Core" [Active]
    org.springframework.ide.eclipse.beans.ui (1.2.2) "Spring IDE Beans UI" [Active]
    org.springframework.ide.eclipse.beans.ui.doc (1.2.1) "Spring IDE Beans Documentation" [Resolved]
    org.springframework.ide.eclipse.beans.ui.graph (1.2.1) "Spring IDE Beans Graph" [Resolved]
    org.springframework.ide.eclipse.cor

    Hi,
    Please clarify the following:
    * "X: is a network drive, but it's actually a network drive on my machine." - Is "X" a mapped drive to one of your shared folder on network?
    * What is the project directory structure with respect to WEB-INF/web.xml? Are you able to see the three pages (from web & pages folder) in NitroX Editor?
    * Does the modified content appear in "Design view" of index.jsp upon restarting NitroX?
    Ex:
    - modify one of the pages in "web" folder > save the file (alert appears)
    - restart NitroX, does index.jsp display the modified content of included page?
    * If possible please send the test case project which exhibits the behavior to [email protected]
    Thanks,
    M7 Support

Maybe you are looking for

  • IOS 7.1.2 sync issue with iPhone 5 iTunes 11.2.2.3 windows 7

    Unable to sync content with iPhone 5 after upgraded to iOS 7.1.2 running iTunes 11.2.2.3 on Windows 7.  Photo albums are messed up initially, then re-sync a few times and ended up with iTunes summary tab status showing capacity usage as only "Other".

  • Wat is the best solution when I get DLL file is missing ,is that SFC to run or system restore?

    hi, wat is the best solution if I get an error some dll file is missing ,  is that SFC utility to run  or sytem restore  or some other solution? thanks johan h.david

  • Vendor bank name in Payment Means

    Dear ALL I just want to have one clarification... the Bank name which we are defining in payment means for incoming payments,whether its vendor's bank name or company's bank name.... Kindly clarify on this... Edited by: kaleeswaran.T on Jun 15, 2011

  • Create an image of a Bootcamp partition

    I just purchases an iMac, and I have installed Windows 7 as a Bootcamp partition on it. In addition, I have installed a bunch of Windows software that I want on it. What I'd like to do now is create an "image" of this BootCamp partition that I could

  • Burn disc doesn't highlight

    I made my first project the other day and want to burn to a DVD-R. The little spin wheel icon doesn't highlight and when I go to the drop down menu the "burn disc" isn't highlighted. A friend who knows Mac's and has worked a lot with computers actual