XIP build.xml missing?

Hello
In this downloaded version of 9.2 I do not see a directory BEA_HOME/weblogic92/portal/xip/ and consequently cannot build the import-export tool. Also, I am unable to specify a remote server. Has anyone else had these troubles? Any fixes?
Thanks
Mike

Hello
In this downloaded version of 9.2 I do not see a directory BEA_HOME/weblogic92/portal/xip/ and consequently cannot build the import-export tool. Also, I am unable to specify a remote server. Has anyone else had these troubles? Any fixes?
Thanks
Mike

Similar Messages

  • Build.xml for model project  is showing package dosen't exist while compiling

    Hi all.
    For building my application i'm using ANT.I have followed the below link for deploying ant.
    Building Projects with Ant
    After created jdev-libs.xml and build.xml for the model project ,i tried to compile build.xml for model project.
    Below is my build.properties
    #Fri Nov 15 15:10:25 IST 2013
    javac.debug=on
    output.dir=classes
    javac.deprecation=off
    javac.nowarn=off
    build.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <!--Ant buildfile generated by Oracle JDeveloper-->
    <!--Generated Nov 15, 2013 3:10:25 PM-->
    <project xmlns="antlib:org.apache.tools.ant" name="Model" default="all" basedir=".">
      <property file="build.properties"/>
      <import file="../JDeveloperLibs/jdev-libs.xml"/>
      <path id="classpath">
        <path refid="JDeveloperLibs.library.ADF.Model.Runtime"/>
        <path refid="JDeveloperLibs.library.BC4J.Oracle.Domains"/>
        <path refid="JDeveloperLibs.library.BC4J.Runtime"/>
        <path refid="JDeveloperLibs.library.BC4J.Security"/>
        <path refid="JDeveloperLibs.library.BC4J.Tester"/>
        <path refid="JDeveloperLibs.library.MDS.Runtime"/>
        <path refid="JDeveloperLibs.library.MDS.Runtime.Dependencies"/>
        <path refid="JDeveloperLibs.library.Oracle.JDBC"/>
        <path refid="JDeveloperLibs.library.Resource.Bundle.Support"/>
        <path refid="JDeveloperLibs.library.ADF.Common.Runtime"/>
        <path refid="JDeveloperLibs.library.Log4j-1.2.17.jar"/>
      </path>
      <target name="init">
        <tstamp/>
        <mkdir dir="${output.dir}"/>
      </target>
      <target name="all" description="Build the project" depends="compile,copy"/>
      <target name="clean" description="Clean the project">
        <delete includeemptydirs="true" quiet="true">
          <fileset dir="${output.dir}" includes="**/*"/>
        </delete>
      </target>
      <target name="compile" description="Compile Java source files" depends="init">
        <javac destdir="${output.dir}" classpathref="classpath" debug="${javac.debug}" nowarn="${javac.nowarn}"
               deprecation="${javac.deprecation}" encoding="Cp1252" source="1.6" target="1.6">
          <src path="src"/>
        </javac>
      </target>
      <target name="copy" description="Copy files to output directory" depends="init">
        <patternset id="copy.patterns">
          <include name="**/*.gif"/>
          <include name="**/*.jpg"/>
          <include name="**/*.jpeg"/>
          <include name="**/*.png"/>
          <include name="**/*.properties"/>
          <include name="**/*.xml"/>
          <include name="**/*.ejx"/>
          <include name="**/*.xcfg"/>
          <include name="**/*.cpx"/>
          <include name="**/*.dcx"/>
          <include name="**/*.sva"/>
          <include name="**/*.wsdl"/>
          <include name="**/*.ini"/>
          <include name="**/*.tld"/>
          <include name="**/*.tag"/>
          <include name="**/*.xlf"/>
          <include name="**/*.xsl"/>
          <include name="**/*.xsd"/>
          <include name="**/*.jpx"/>
        </patternset>
        <copy todir="${output.dir}">
          <fileset dir="src">
            <patternset refid="copy.patterns"/>
          </fileset>
        </copy>
      </target>
    </project>
    jdev-libs.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <!-- created using version 11.6.0 of com.consideringred.jdevlibsforant -->
    <project name="JDeveloperLibs" default="" basedir=".">
      <dirname property="JDeveloperLibs.basedir" file="${ant.file.JDeveloperLibs}"/>
      <path id="JDeveloperLibs.srcpath">
        <pathelement location="${JDeveloperLibs.basedir}D:\wrkspace backup from stpi\Nov\Nov 15\JDeveloperLibs\src"/>
      </path>
      <!-- to accommodate the Ant copy/fileset element in "Apache Ant version 1.6.5 compiled on June 2 2005" bundled with JDeveloper 10.1.3.2 -->
      <property name="JDeveloperLibs.srcpath.first" value="${JDeveloperLibs.basedir}D:\wrkspace backup from stpi\Nov\Nov 15\JDeveloperLibs\src"/>
      <property name="JDeveloperLibs.outputdir" value="${JDeveloperLibs.basedir}D:\wrkspace backup from stpi\Nov\Nov 15\JDeveloperLibs\classes"/>
      <path id="JDeveloperLibs.library.ADF.Common.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adf-share-support.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adfsharembean.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.javacache_11.1.1/cache.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.security_11.1.1/adf-share-security.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.security_11.1.1/adf-controller-security.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.activation_1.1.0.0_1-1.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.Common.Web.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adflibfilter.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.javatools_11.1.1/javatools-nodeps.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.Controller.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.controller_11.1.1/adf-controller.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.controller_11.1.1/adf-controller-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.controller_11.1.1/adf-controller-rt-common.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.Controller.Schema">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adf-controller-schema.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.DVT.Faces.Databinding.MDS.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/dvt-databindings-mds.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.DVT.Faces.Databinding.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/dvt-databindings.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/dvt-facesbindings.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.DVT.Faces.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/dvt-utils.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/dvt-basemaps.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/dvt-jclient.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/dvt-trinidad.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/dvt-faces.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/prefuse.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-anim.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-awt-util.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-bridge.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-codec.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-css.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-dom.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-ext.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-extension.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-gui-util.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-gvt.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-parser.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-script.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-svg-dom.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-svggen.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-swing.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-transcoder.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-util.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/batik-xml.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/xml-apis-ext.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.Faces.Runtime.11">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/trinidad-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/trinidad-impl.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/adf-richclient-api-11.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/adf-richclient-impl-11.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.Model.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adfm.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/groovy-all-1.6.3.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adftransactionsdt.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/adf-dt-at-rt.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adfdt_common.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adflibrary.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/db-ca.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/jdev-cm.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.ldap_11.1.1/ojmisc.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/jsp-el-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/oracle-el.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.security_11.1.1/adf-share-security.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.security_11.1.1/adf-controller-security.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.activation_1.1.0.0_1-1.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.mail_1.1.0.0_1-4-1.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.Page.Flow.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.pageflow_11.1.1/adf-pageflow-impl.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.pageflow_11.1.1/adf-pageflow-dtrt.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.pageflow_11.1.1/adf-pageflow-fwk.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.pageflow_11.1.1/adf-pageflow-rc.jar"/>
      </path>
      <path id="JDeveloperLibs.library.ADF.Web.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adfmweb.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Apache.Ant">
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-antlr.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-apache-bcel.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-apache-bsf.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-apache-log4j.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-apache-oro.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-apache-regexp.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-apache-resolver.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-commons-logging.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-commons-net.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-jai.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-javamail.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-jdepend.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-jmf.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-jsch.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-junit.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-launcher.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-netrexx.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-nodeps.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-starteam.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-stylebook.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-swing.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-trax.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-weblogic.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Apache.Maven.2.2.1">
        <pathelement location="../JDeveloperLibs/jdeveloper/apache-maven-2.2.1/lib/maven-2.2.1-uber.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/apache-maven-2.2.1/boot/classworlds-1.1.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant-nodeps.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ant/lib/ant.jar"/>
      </path>
      <path id="JDeveloperLibs.library.BC4J.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adf-share-support.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adfsharembean.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adfm.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/bc4j-mbeans.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/groovy-all-1.6.3.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/db-ca.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/jdev-cm.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.ldap_11.1.1/ojmisc.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/jsp-el-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/oracle-el.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.javatools_11.1.1/resourcebundle.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.activation_1.1.0.0_1-1.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.mail_1.1.0.0_1-4-1.jar"/>
      </path>
      <path id="JDeveloperLibs.library.BC4J.Security">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jps_11.1.1/jps-common.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jps_11.1.1/jps-ee.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jps_11.1.1/jps-unsupported-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jps_11.1.1/jps-manifest.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jps_11.1.1/jacc-spi.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.pki_11.1.1/oraclepki.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.osdt_11.1.1/osdt_core.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.osdt_11.1.1/osdt_cert.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.osdt_11.1.1/osdt_xmlsec.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.osdt_11.1.1/osdt_ws_sx.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.iau_11.1.1/fmw_audit.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.security.jacc_1.0.0.0_1-1.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adf-share-support.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.security_11.1.1/adf-share-security.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.activation_1.1.0.0_1-1.jar"/>
      </path>
      <path id="JDeveloperLibs.library.BC4J.Oracle.Domains">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adfm.jar"/>
      </path>
      <path id="JDeveloperLibs.library.BC4J.Client">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adfm.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/db-ca.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/jdev-cm.jar"/>
      </path>
      <path id="JDeveloperLibs.library.BC4J.Tester">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jdbc_11.1.1/ojdbc6dms.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/BC4J/jlib/bc4jtester.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/adfm-debugger.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/db-ca.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/jdev-cm.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/regexp.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.help_5.0/ohj.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.help_5.0/help-share.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.bali.share_11.1.1/share.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/jlib/jewt4.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.help_5.0/oracle_ice.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.ldap_11.1.1/ojmisc.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ide/lib/idert.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/ide/lib/javatools.jar"/>
        <pathelement location="../JDeveloperLibs/wlserver_10.3/server/lib/weblogic.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Commons.Beanutils.1.6">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/org.apache.commons.beanutils_1.6.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Commons.Collections.3.1">
        <pathelement location="../JDeveloperLibs/modules/com.bea.core.apache.commons.collections_3.2.0.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Commons.Logging.1.0.4">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/org.apache.commons.logging_1.0.4.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Connection.Manager">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.model_11.1.1/jdev-cm.jar"/>
      </path>
      <path id="JDeveloperLibs.library.JDeveloper.Runtime">
        <pathelement location="../JDeveloperLibs/jdeveloper/jdev/lib/jdev-rt.jar"/>
      </path>
      <path id="JDeveloperLibs.library.JSF.2.0">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jsf_2.0/jsf-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jsf_2.0/jsf-impl.jar"/>
      </path>
      <path id="JDeveloperLibs.library.JSTL.1.2">
        <pathelement location="../JDeveloperLibs/modules/glassfish.jstl_1.2.0.1.jar"/>
      </path>
      <path id="JDeveloperLibs.library.JSP.Runtime">
        <pathelement location="../JDeveloperLibs/modules/javax.servlet_1.0.0.0_2-5.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.jsp_1.2.0.0_2-1.jar"/>
        <pathelement location="../JDeveloperLibs/modules/glassfish.el_1.0.0.0_2-1.jar"/>
      </path>
      <path id="JDeveloperLibs.library.MDS.Runtime">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.mds_11.1.1/mdsrt.jar"/>
      </path>
      <path id="JDeveloperLibs.library.MDS.Runtime.Dependencies">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.mds_11.1.1/oramds.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adf-share-support.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.servlet_1.0.0.0_2-5.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.jsp_1.2.0.0_2-1.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jdbc_11.1.1/ojdbc6dms.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/jlib/commons-cli-1.0.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/jsp-el-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.share_11.1.1/oracle-el.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.bali.share_11.1.1/share.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xmlef_11.1.1/xmlef.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.dms_11.1.1/dms.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.activation_1.1.0.0_1-1.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xdk_11.1.0/xml.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.javacache_11.1.1/cache.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.ucp_11.1.0.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.javatools_11.1.1/javatools-nodeps.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.management_1.2.1.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.management.j2ee_1.0.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Oracle.JEWT">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.bali.share_11.1.1/share.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/jlib/jewt4.jar"/>
        <pathelement location="../JDeveloperLibs/jdeveloper/jlib/inspect4.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Oracle.JDBC">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.jdbc_11.1.1/ojdbc6dms.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.nlsrtl_11.1.0/orai18n.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.dms_11.1.1/dms.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Oracle.XML.Parser.v2">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.xdk_11.1.0/xml.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.nlsrtl_11.1.0/orai18n-mapping.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Resource.Bundle.Support">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.javatools_11.1.1/resourcebundle.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Resource.Bundle.Variable.Resolver">
        <pathelement location="../JDeveloperLibs/jdeveloper/jlib/bundleresolver.jar"/>
      </path>
      <path id="JDeveloperLibs.library.SQLJ.Runtime">
        <pathelement location="../JDeveloperLibs/jdeveloper/sqlj/lib/runtime12.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Servlet.Runtime">
        <pathelement location="../JDeveloperLibs/modules/javax.servlet_1.0.0.0_2-5.jar"/>
        <pathelement location="../JDeveloperLibs/modules/javax.jsp_1.2.0.0_2-1.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Trinidad.Runtime.11">
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/trinidad-api.jar"/>
        <pathelement location="../JDeveloperLibs/oracle_common/modules/oracle.adf.view_11.1.1/trinidad-impl.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Bcpkix-jdk15on-1.48.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/bcpkix-jdk15on-1.48.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Bcprov-jdk15on-1.48.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/bcprov-jdk15on-1.48.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Commons-codec-1.8.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/commons-codec-1.8.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itext-asian.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itext-asian.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itext-hyph-xml.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itext-hyph-xml.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itext-pdfa-5.4.0-javadoc.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itext-pdfa-5.4.0-javadoc.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itext-pdfa-5.4.0-sources.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itext-pdfa-5.4.0-sources.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itext-pdfa-5.4.0.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itext-pdfa-5.4.0.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itext-xtra-5.4.0-javadoc.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itext-xtra-5.4.0-javadoc.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itext-xtra-5.4.0-sources.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itext-xtra-5.4.0-sources.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itext-xtra-5.4.0.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itext-xtra-5.4.0.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itextpdf-5.4.0-javadoc.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itextpdf-5.4.0-javadoc.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itextpdf-5.4.0-sources.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itextpdf-5.4.0-sources.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Itextpdf-5.4.0.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/itextpdf-5.4.0.jar"/>
      </path>
      <path id="JDeveloperLibs.library.Log4j-1.2.17.jar">
        <pathelement location="${JDeveloperLibs.basedir}/../lib/log4j-1.2.17.jar"/>
      </path>
      <path id="JDeveloperLibs.classpath">
        <path refid="JDeveloperLibs.library.ADF.Common.Runtime"/>
        <path refid="JDeveloperLibs.library.ADF.Common.Web.Runtime"/>
        <path refid="JDeveloperLibs.library.ADF.Controller.Runtime"/>
        <path refid="JDeveloperLibs.library.ADF.Controller.Schema"/>
        <path refid="JDeveloperLibs.library.ADF.DVT.Faces.Databinding.MDS.Runtime"/>
        <path refid="JDeveloperLibs.library.ADF.DVT.Faces.Databinding.Runtime"/>
        <path refid="JDeveloperLibs.library.ADF.DVT.Faces.Runtime"/>
        <path refid="JDeveloperLibs.library.ADF.Faces.Runtime.11"/>
        <path refid="JDeveloperLibs.library.ADF.Model.Runtime"/>
        <path refid="JDeveloperLibs.library.ADF.Page.Flow.Runtime"/>
        <path refid="JDeveloperLibs.library.ADF.Web.Runtime"/>
        <path refid="JDeveloperLibs.library.Apache.Ant"/>
        <path refid="JDeveloperLibs.library.Apache.Maven.2.2.1"/>
        <path refid="JDeveloperLibs.library.BC4J.Runtime"/>
        <path refid="JDeveloperLibs.library.BC4J.Security"/>
        <path refid="JDeveloperLibs.library.BC4J.Oracle.Domains"/>
        <path refid="JDeveloperLibs.library.BC4J.Client"/>
        <path refid="JDeveloperLibs.library.BC4J.Tester"/>
        <path refid="JDeveloperLibs.library.Commons.Beanutils.1.6"/>
        <path refid="JDeveloperLibs.library.Commons.Collections.3.1"/>
        <path refid="JDeveloperLibs.library.Commons.Logging.1.0.4"/>
        <path refid="JDeveloperLibs.library.Connection.Manager"/>
        <path refid="JDeveloperLibs.library.JDeveloper.Runtime"/>
        <path refid="JDeveloperLibs.library.JSF.2.0"/>
        <path refid="JDeveloperLibs.library.JSTL.1.2"/>
        <path refid="JDeveloperLibs.library.JSP.Runtime"/>
        <path refid="JDeveloperLibs.library.MDS.Runtime"/>
        <path refid="JDeveloperLibs.library.MDS.Runtime.Dependencies"/>
        <path refid="JDeveloperLibs.library.Oracle.JEWT"/>
        <path refid="JDeveloperLibs.library.Oracle.JDBC"/>
        <path refid="JDeveloperLibs.library.Oracle.XML.Parser.v2"/>
        <path refid="JDeveloperLibs.library.Resource.Bundle.Support"/>
        <path refid="JDeveloperLibs.library.Resource.Bundle.Variable.Resolver"/>
        <path refid="JDeveloperLibs.library.SQLJ.Runtime"/>
        <path refid="JDeveloperLibs.library.Servlet.Runtime"/>
        <path refid="JDeveloperLibs.library.Trinidad.Runtime.11"/>
        <path refid="JDeveloperLibs.library.Bcpkix-jdk15on-1.48.jar"/>
        <path refid="JDeveloperLibs.library.Bcprov-jdk15on-1.48.jar"/>
        <path refid="JDeveloperLibs.library.Commons-codec-1.8.jar"/>
        <path refid="JDeveloperLibs.library.Itext-asian.jar"/>
        <path refid="JDeveloperLibs.library.Itext-hyph-xml.jar"/>
        <path refid="JDeveloperLibs.library.Itext-pdfa-5.4.0-javadoc.jar"/>
        <path refid="JDeveloperLibs.library.Itext-pdfa-5.4.0-sources.jar"/>
        <path refid="JDeveloperLibs.library.Itext-pdfa-5.4.0.jar"/>
        <path refid="JDeveloperLibs.library.Itext-xtra-5.4.0-javadoc.jar"/>
        <path refid="JDeveloperLibs.library.Itext-xtra-5.4.0-sources.jar"/>
        <path refid="JDeveloperLibs.library.Itext-xtra-5.4.0.jar"/>
        <path refid="JDeveloperLibs.library.Itextpdf-5.4.0-javadoc.jar"/>
        <path refid="JDeveloperLibs.library.Itextpdf-5.4.0-sources.jar"/>
        <path refid="JDeveloperLibs.library.Itextpdf-5.4.0.jar"/>
        <path refid="JDeveloperLibs.library.Log4j-1.2.17.jar"/>
      </path>
    </project>
    Problem:
    While executing im getting the below error:package dosent exist.Please help on this.Thanks
    Buildfile: D:\wrkspace backup from stpi\Nov\Nov 15\Model\build.xml
    init:
    compile:
        [javac] Compiling 116 source files to D:\wrkspace backup from stpi\Nov\Nov 15\Model\classes
        [javac] D:\wrkspace backup from stpi\Nov\Nov 15\Model\src\com\workflow\common\entity\detailsEOImpl.java:17: package javax.persistence does not exist
        [javac] import javax.persistence.EntityManager;
        [javac]                         ^
        [javac] D:\wrkspace backup from stpi\Nov\Nov 15\Model\src\com\workflow\common\entity\detailsEOImpl.java:18: package javax.persistence does not exist
        [javac] import javax.persistence.Query;
        [javac]                         ^
        [javac] D:\wrkspace backup from stpi\Nov\Nov 15\Model\src\comworkflow\common\entity\detailsEOImpl.java:40: package oracle.toplink.queryframework does not exist
        [javac] import oracle.toplink.queryframework.DataModifyQuery;
        [javac]                                     ^
        [javac] D:\wrkspace backup from stpi\Nov\Nov 15\Model\src\com\workflow\common\entity\detailsEOImpl.java:41: package oracle.toplink.queryframework does not exist
        [javac] import oracle.toplink.queryframework.StoredProcedureCall;
        [javac]                                     ^
        [javac] D:\wrkspace backup from stpi\Nov\Nov 15\Model\src\com\workflow\common\entity\detailsEOImpl.java:43: package oracle.toplink.sessions does not exist
        [javac] import oracle.toplink.sessions.Session;
        [javac]                               ^
        [javac] D:\wrkspace backup from stpi\Nov\Nov 15\Model\src\com\workflow\common\entity\detailsEOImpl.java:45: package org.eclipse.persistence.annotations does not exist
        [javac] import org.eclipse.persistence.annotations.NamedStoredProcedureQuery;
        [javac]                                           ^
        [javac] D:\wrkspace backup from stpi\Nov\Nov 15\Model\src\com\workflow\common\entity\detailsEOImpl.java:46: package org.eclipse.persistence.annotations does not exist
        [javac] import org.eclipse.persistence.annotations.StoredProcedureParameter;
        [javac]                                           ^
        [javac] 7 errors
    BUILD FAILED
    D:\wrkspace backup from stpi\Nov\Nov 15\Model\build.xml:33: Compile failed; see the compiler error output for details.
    Total time: 6 seconds

    Timo and dvohra21,
    I found the mistake that javax.persistance jar is missed in modules folder.After added that and inculdeJavaRuntime i was able to compile model's build.xml.
    When compiling view's build.xml im getting
    cannot access weblogic.security.acl.internal.AuthenticatedSubject
    [javac] class file for weblogic.security.acl.internal.AuthenticatedSubject not found
    weblogic.servlet.security.ServletAuthentication.runAs(subject,request)
    I have searched the forums and applied the solutions :
    1.Added com.bea.core.weblogic.security.identity jar,added weblogic 10.3 remote client and its corresponding jar weblogic.jar
    2.javax.security.auth.subject subject=Authentication.login(new URLCallbackHandler(un,pw));
      weblogic.servlet.security.ServletAuthentication.runAs(subject,request);
    still im getting the same exception.Any idea on this?Thanks.

  • Sample-simple.2.2.1 error in build.xml

    Hi all,
    First, I ask for excuses for my english, is that I am Spanish
    I have a error in build.xml when I try to ejecute "gen-all". The error is in "gen-component", "gen-beaninfo" and "gen-taglib". The exit prints:
    Command Line Options:
    -c {classname} CategoryDescriptors constants class
    -C {packagename} Package containing ConstantMethodBinding
    -d {directory} Destination directory for generators
    -e {classname} Add FQCN of class to exclude for generation
    -f {config URL} Parse configuration URL (repeatable)
    -h Display help information
    -i {classname} Add FQCN of class to include for generation
    -L {classname} Add FQCN to list of servlet listeners
    -m {markup} Default markup section [FORM]
    -nobundles Encode description and display strings into gen code, not in resource bundles
    -o {jarURL} Omit generation for classes in (design time) JAR
    -O Override component and property descriptions from renderer and attributes
    -p {prefix} Default taglib prefix
    -r {id} Default render kit identifier
    -t {filename} Filename to contain TLD
    -T {packagename} Package for generated tag classes
    -u {uri} Default taglib URI
    -v Generated output should be verbose
    -V {classname} Add FQCN to list of JSP validators
    -x Exclude all classes parsed so far
    -w Warn on missing config URLs, instead of error
    --baseBI {class} Base class for java.beans.BeanInfo classes
    --implBD {class} Implementation class for BeanDescriptors
    --implPD {class} Implementation class for PropertyDescriptors
    --cpBeanInfo     Generate component BeanInfo classes
    --cpBeanInfoBase Generate component BeanInfoBase classes
    --cpClass        Generate component classes
    --cpClassBase    Generate component base classes
    --tlClass         Generate tag library classes
    --tlClassBase     Generate tag library base classes
    --tlDescriptor    Generate tag library descriptor
    --dump           Dump contents of root configuration bean
    --help           Display help information
    Exception in thread "main" java.lang.IllegalArgumentException: and
    at com.sun.rave.jsfmeta.generators.Main.run(Main.java:521)
    at com.sun.rave.jsfmeta.generators.Main.main(Main.java:279)
    Java Result: 1
    What am I doing bad? Please help me!
    Thanks

    Hi ,
    I have an error like this below:
    [java] Exception in thread "main" java.lang.IllegalArgumentException: and
    [java] at com.sun.rave.jsfmeta.generators.Main.run(Main.java:521)
    [java] at com.sun.rave.jsfmeta.generators.Main.main(Main.java:279)
    BUILD FAILED
    if someone know solution plz post it here
    Thanks

  • Help -- Who has experience with ant and build.xml files ?

    Hi,
    I think my build.xml file is missing setting a classpath I need, but I have never played around with a build.xml file. Could someone help ?
    Thank you.
    Grazia

    A lot of people here use ant. But not all of us can read your mind, and those of us that can are sadistic bastards that like to force people to provide details of their problems just for the hell of it.
    So please do the following:
    * Go through an ant tutorial or other introductory docs, doing an example or two if present.
    * Set up your build.xml according to what you've learned.
    * If it still doesn't work, post the relevant portions of it (hopefully you'll have a small, representative sample that reproduces the problem), along with your relevant directory and file structure, the command you're running, and what error messages you're getting.

  • Frameworks/projects/framework/build.xml

    This file is missing from the distribution. Was that a mistake or on purpose?
    A few other files are missing too I've noticed.
    One cannot build the source without these files.

    The build.xml that is meant for the "customers" to use to rebuild a swc is in sdk/frameworks.  The individual build.xml that might be in the source tree is used for building the SDK itself.<br /><br />Matt<br /><br /><br />On 5/22/08 7:07 PM, "Chris Hinkle" <[email protected]> wrote:<br /><br />A new discussion was started by Chris Hinkle in<br /><br />Developers --<br />  frameworks/projects/framework/build.xml<br /><br />This file is missing from the distribution.  Was that a mistake or on purpose?<br /><br />A few other files are missing too I've noticed.<br /><br />One cannot build the source without these files.<br /><br />________________________________<br />View/reply at frameworks/projects/framework/build.xml <a href=http://www.adobeforums.com/webx?13@@.59b5557e><a href=http://www.adobeforums.com/webx?13@@.59b5557e><br />Replies by email are OK.<br />Use the unsubscribe <a href=http://www.adobeforums.com/webx?280@@.59b5557e!folder=.3c060fa3><a href=http://www.adobeforums.com/webx?280@@.59b5557e!folder=.3c060fa3>  form to cancel your email subscription.

  • JMX equivalent for webservice build.xml

    Hi,
    I am using the below build.xml to create and deploy webservices.
    Can I get the equivalent or approximate JMX code (java code using MBeans) to do this.
    <project default="all">
         <!-- set global properties for this build -->
         <property name="wls.username" value="weblogic" />
         <property name="wls.password" value="weblogic" />
         <property name="wls.hostname" value="localhost" />
         <property name="wls.port" value="7001" />
         <property name="wls.server.name" value="AdminServer" />
         <property name="ear.deployed.name" value="wsdlcEar" />
         <property name="example-output" value="output" />
         <property name="compiledWsdl-dir" value="${example-output}/compiledWsdl" />
         <property name="impl-dir" value="${example-output}/impl" />
         <property name="ear-dir" value="${example-output}/wsdlcEar" />
         <property name="clientclass-dir" value="${example-output}/clientclasses" />
         <path id="client.class.path">
              <pathelement path="${clientclass-dir}" />
              <pathelement path="${java.class.path}" />
         </path>
         <taskdef name="wsdlc" classname="weblogic.wsee.tools.anttasks.WsdlcTask" />
         <taskdef name="jwsc" classname="weblogic.wsee.tools.anttasks.JwscTask" />
         <taskdef name="clientgen" classname="weblogic.wsee.tools.anttasks.ClientGenTask" />
         <taskdef name="wldeploy" classname="weblogic.ant.taskdefs.management.WLDeploy" />
         <target name="all" depends="clean,generate-from-wsdl,build-service,deploy,client" />
         <target name="clean" depends="undeploy">
              <delete dir="${example-output}" />
         </target>
         <target name="generate-from-wsdl">
              <wsdlc srcWsdl="wsdl_files/TemperatureService.wsdl" destJwsDir="${compiledWsdl-dir}" destImplDir="${impl-dir}" packageName="examples.webservices.wsdlc" />
         </target>
         <target name="build-service">
              <jwsc srcdir="src" destdir="${ear-dir}">
                   <jws file="examples/webservices/wsdlc/TemperaturePortTypeImpl.java" compiledWsdl="${compiledWsdl-dir}/TemperatureService_wsdl.jar" />
              </jwsc>
         </target>
         <target name="deploy">
              <wldeploy action="deploy" name="${ear.deployed.name}" source="${ear-dir}" user="${wls.username}" password="${wls.password}" verbose="true" adminurl="t3://${wls.hostname}:${wls.port}" targets="${wls.server.name}" />
         </target>
         <target name="undeploy">
              <wldeploy action="undeploy" name="${ear.deployed.name}" failonerror="false" user="${wls.username}" password="${wls.password}" verbose="true" adminurl="t3://${wls.hostname}:${wls.port}" targets="${wls.server.name}" />
         </target>
         <target name="client">
              <clientgen wsdl="http://${wls.hostname}:${wls.port}/temp/TemperatureService?WSDL" destDir="${clientclass-dir}" packageName="examples.webservices.wsdlc.client" />
              <javac srcdir="${clientclass-dir}" destdir="${clientclass-dir}" includes="**/*.java" />
              <javac srcdir="src" destdir="${clientclass-dir}" includes="examples/webservices/wsdlc/client/**/*.java" />
         </target>
         <target name="run">
              <java classname="examples.webservices.wsdlc.client.TemperatureClient" fork="true" failonerror="true">
                   <classpath refid="client.class.path" />
                   <arg line="http://${wls.hostname}:${wls.port}/temp/TemperatureService" />
              </java>
         </target>
    </project>
    Regards,
    Suresh

    JMX is for management, build.xml and what you have here is for assembling applications - in your case webservices.
    unless I'm missing something, using what you have is the best way to go.
    Pete

  • Obfuscate in build.xml

    Hi,
    does obfuscating jars in ant in windows not work? I have the following code & get the error that seems to be related to obfuscation.
    <project name="sims" default="CustomerDist" basedir=".">
      <property file="ant.properties"/>
      <property environment="localenv"/>
      <!--
      <taskdef name="proguard" classname="proguard.ant.ProGuardTask" classpath="builder/proguard.jar" />
      -->
      <taskdef classpath="jcoverage.jar" resource="tasks.properties"/>
      <target name="init">
        <fail unless="PROPERTIESLOADED">missing PROPERTIESLOADED, have you renamed ant.properties.sample to ant.properties?</fail>
        <available property="elandlibs_DirectoryExists"
                   file="${elandlibs}"
                   type="dir"
                   />
        <fail unless="elandlibs_DirectoryExists">Cannot find the shared 'javalibs' CVS project. Have you checked this project out of CVS and set the elandlibs property in ant.properties?</fail>
        <mkdir dir="${testbuild}"/>
        <mkdir dir="${build}"/>
        <mkdir dir="${build2}"/>
        <mkdir dir="${dist}"/>
        <mkdir dir="distInternal"/>
        <mkdir dir="${libdir}"/>
        <fail unless="OBFUSCATE_JAR">missing environment variable OBFUSCATE_JAR from ant.properties</fail>
          <!-- Decide whether to OBFUSCATE  the sims jar file-->
          <condition property="obfuscate">
           <not><or>
            <equals arg1="${OBFUSCATE_JAR}" arg2="NO"/>
            <equals arg1="${OBFUSCATE_JAR}" arg2="No"/>
            <equals arg1="${OBFUSCATE_JAR}" arg2="no"/>
            <equals arg1="${OBFUSCATE_JAR}" arg2="False"/>
            <equals arg1="${OBFUSCATE_JAR}" arg2="FALSE"/>
           </or></not>
          </condition>
        <copy todir="${libdir}">
          <fileset dir="extra">
             <include name="com.ibm.mq.jar"/>
             <include name="com.ibm.mqjms.jar"/>
             <include name="elandjavadev-v2.1.008.jar"/>
             <include name="jbcl.jar"/>
             <include name="jgl3.1.0.jar"/>
          </fileset>
        </copy>
        <copy todir="${libdir}">
          <fileset dir="${elandlibs}">
             <include name="xmlrpc-1.1.jar"/>
             <include name="xercesImpl-2.4.jar"/>
             <include name="xml-apis-2.4.jar"/>
             <include name="xmlParserAPIs-2.4.jar"/>
             <include name="elandsdk-1.0.3.jar"/>
             <include name="rwos-v2.4.0.001_int-javaapi.jar"/>
             <include name="log4j-1.2.8.jar"/>
             <include name="oro-2.0.8.jar" />
             <include name="dom4j-1.3.jar" />
                <include name="castor-0.9.5.3-xml.jar"/>
                <include name="jta1.0.1.jar"/>
                <include name="xercesImpl-2.4.jar"/>
          </fileset>
        </copy>
          <path id="castor.classpath">
             <fileset dir="${elandlibs}">
                <include name="castor-0.9.5.3-xml.jar"/>
                <include name="jta1.0.1.jar"/>
                <include name="xercesImpl-2.4.jar"/>
             </fileset>
          </path>
      </target>
      <target name="installer" depends="CustomerDist">
         <copy todir="install">
             <fileset dir="${dist}"/>
         </copy>
         <ant antfile="build.xml" dir="install" target="installer"/>
      </target>
       <target name="refresh_config_beans" depends="init,cleancastorfiles">
           <property name="target_schema" value="RunwaySimulatorConfig.xsd" />
           <echo>Generating code for XSD Schema: ${target_schema}</echo>
          <copy file="RunwaySimulatorConfig.xsd" tofile="src/RunwaySimulatorConfig.xsd"/>
           <java classname="org.exolab.castor.builder.SourceGenerator"
            fork="yes" dir="${src}" classpathref="castor.classpath">
          <arg line="-i ${target_schema} -f -dest . -nomarshall -package com.elandtech.sims.config.castor"/>
           </java>
           <delete file="src/RunwaySimulatorConfig.xsd"/>
       </target>
       <target name="cleancastorfiles" depends="init">
          <delete dir="${src}/com/elandtech/sims/config/castor"/>
            <echo>Deleting the directory: ${src}/com/elandtech/sims/config/castor}</echo>
       </target>
      <target name="compile" depends="init,refresh_config_beans" description="compile the source " >
        <copy todir="${build}">
          <fileset dir="src" includes="**/*.jpg"/>
        </copy>
        <javac srcdir="${src}" destdir="${build}" debug="on" optimize="on" deprecation="off">
          <classpath>
            <fileset dir="${libdir}">
              <include name="**/*.jar" />
            </fileset>
            <pathelement path="${build}" />
          </classpath>
        </javac>
        <copy todir="${build}">
          <fileset dir="src" includes="**/*.properties"/>
        </copy>
        <copy todir="${build}">
          <fileset dir="src" includes="**/*.gif"/>
        </copy>
        <copy todir="${build}">
          <fileset dir="src" includes="**/*.jpg"/>
        </copy>
        <copy todir="${build}">
          <fileset dir="src" includes="**/*.txt"/>
        </copy>
        <copy todir="${build}">
          <fileset dir="src" includes="**/*.ghost"/>
        </copy>
        <copy todir="${build}">
          <fileset dir="src" includes="**/*.dec"/>
        </copy>
        <copy todir="${build}">
          <fileset dir="src" includes="**/*.nan"/>
        </copy>
      </target>
      <target name="jar" depends="compile" description="generate JAR file" >
        <mkdir dir="${dist}/lib"/>
        <copy todir="${dist}/lib">
          <fileset dir="${libdir}"/>
        </copy>
        <jar destfile="${dist}/lib/sims.jar"  manifest="jars/sims.mf" >
           <fileset dir="${build}">
               <exclude name="**/itc/**"/>
               <exclude name="**/ghostengines/ITCGhostEngine.class"/>
               <exclude name="**/ghostengines/runway/**"/>
               <exclude name="**/ghostengines/RunwayGhostEngine.class"/>
           </fileset>
        </jar>
        <jar destfile="${dist}/lib/GhostEngineRunway.jar"
           basedir="${build}"
           excludes="*"
           includes="**/ghostengines/runway/** **/ghostengines/RunwayGhostEngine.class **/ghostengines/RequestResponsePair.class" />
        <jar destfile="${dist}/lib/GhostEngineRunway.jar"
           basedir="${build}"
           excludes="*"
           includes="**/ghostengines/runway/** **/ghostengines/RunwayGhostEngine.class" />
        <jar destfile="${dist}/lib/GhostEngineITC.jar"
           basedir="${build}"
           excludes="*"
           includes="**/itc/** **/ghostengines/ITCGhostEngine.class" />
        <!-- <echo>Obfuscate avoidance set to ${localenv.OBFUSCATE}</echo> -->
        <echo>Obfuscate avoidance set to ${OBFUSCATE_JAR}</echo>
      </target>
      <target name="obfuscate" depends="jar" description="obfuscate code" if="obfuscate" >
        <move file="${dist}/lib/sims.jar" tofile="${dist}/lib/sims_unobf.jar"/>
      <taskdef resource="proguard/ant/task.properties"
               classpath="builder/proguard.jar" />
       <proguard ignorewarnings="on" >
            -injars       ${dist}/lib/sims_unobf.jar
            -outjars      ${dist}/lib/sims.jar
            -libraryjars  ${java.home}/lib/rt.jar
            -printmapping progaurd_mapping.txt
            -keep public class com.elandtech.sims.Main {
                public static void main(java.lang.String[]);
            -dontshrink
            -dontoptimize
            -renamesourcefileattribute SourceFile
            -keepattributes InnerClasses,SourceFile,LineNumberTable,Deprecated,Signature,*Annotation*,EnclosingMethod
            <!-- Ghost Engine Classes.. -->
            -keep public class com.elandtech.sims.ghostengines.GhostEngine
            -keep public class com.elandtech.sims.ghostengines.GhostEngine  {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.SimsWithPaternMatchingGhostEngine
            -keep public class com.elandtech.sims.ghostengines.SimsWithPaternMatchingGhostEngine {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.SimsGhostEngine
            -keep public class com.elandtech.sims.ghostengines.SimsGhostEngine {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.RequestResponsePair
            -keep public class com.elandtech.sims.ghostengines.RequestResponsePair {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.ITCGhostEngine
            -keep public class com.elandtech.sims.ghostengines.ITCGhostEngine {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.RunwayGhostEngine
            -keep public class com.elandtech.sims.ghostengines.RunwayGhostEngine {
                public protected *;
            <!-- Logging interface.. -->
            -keep public class com.elandtech.sims.logging.LogManager
            -keep public class com.elandtech.sims.logging.LogManager {
                public protected *;
            -keep public class com.elandtech.sims.logging.LogMessage
            -keep public class com.elandtech.sims.logging.LogMessage {
                public protected *;
            -keep public class com.elandtech.sims.logging.LogGenerator
            -keep public class com.elandtech.sims.logging.LogGenerator {
                public protected *;
            -keep public class com.elandtech.sims.logging.Log4jLogger {
                public protected *;
            -keep public class com.elandtech.sims.logging.LogListener. {
                public protected *;
            -keep public class com.elandtech.sims.logging.FileLogger {
                public protected *;
            <!-- Remote interface.. -->
            -keep public class com.elandtech.sims.api.Handler
             -keep public class com.elandtech.sims.api.Handler {
                  public protected *;
            -keep public class com.elandtech.sims.api.RemoteClient
              -keep public class com.elandtech.sims.api.RemoteClient {
                   public protected *;
            <!-- Configuration classes.. -->
            -keep public class com.elandtech.sims.config.SimsSettings
            -keep public class com.elandtech.sims.config.ConnectionSettings
            -keep public class com.elandtech.sims.config.SimsSettings {
                public protected *;
            -keep public class com.elandtech.sims.config.ConnectionSettings
            -keep public class com.elandtech.sims.config.ConnectionSettings {
                public protected *;
            <!-- Utility classes.. -->
            -keep public class com.elandtech.eland.commonx.text.EString {
                public protected *;
        </proguard>
        <delete file="${dist}/lib/sims_unobf.jar"/>
      </target>
      <!-- Create a Customer distribution. -->
      <target name="CustomerDist" depends="jar, obfuscate, readversion" description="generate the distribution" >
       <copy file="scripts/startup.bat" tofile="${dist}/startup.bat"/>
        <mkdir dir="${dist}/docs"/>
        <copy todir="${dist}/docs">
          <fileset dir="docs" includes="**/*.pdf"/>
        </copy>
        <copy file="RunwaySimulatorConfig.xsd" tofile="${dist}/docs/RunwaySimulatorConfig.xsd"/>
        <copy todir="${dist}">
          <fileset dir="configdist"/>
        </copy>
        <zip zipfile="RunwayHostsSimCustDist${version}.zip">
          <fileset dir="${dist}"/>
        </zip>
      </target>
      <target name="clean" description="clean up" >
        <delete dir="${testbuild}"/>
        <delete dir="${junitreports}"/>
        <delete dir="${build}"/>
        <delete dir="build2"/>
        <delete dir="${dist}"/>
        <delete dir="${libdir}"/>
        <delete dir="distInternal"/>
        <delete dir="tmp"/>
        <delete>
           <fileset dir="." includes="sims-**.zip"/>
        </delete>
      </target>
      <taskdef name="genjar" classname="org.apache.tools.ant.taskdefs.optional.genjar.GenJar" classpath="builder/GenJar.jar"/>
      <path id="classpath">
         <fileset dir="${libdir}">
             <include name="**/*.jar"/>
         </fileset>
      </path>
        <path id="classpath.sims">
            <pathelement location="${build}"/>
            <fileset dir="${libdir}">
                <include name="**/*.jar"/>
            </fileset>
        </path>
        <path id="classpath.build">
           <pathelement location="${build}"/>
        </path>
      <target name="includeAllResources" >
              <unzip dest="build2">
                <patternset>
                    <include name="**/*.properties"/>
                    <exclude name="**/*.java"/>
                    <exclude name="**/*.class"/>
                    <include name="**/*.gif" />
                    <include name="**/*.jpg" />
                </patternset>
                <fileset dir="extra">
                    <include name="**/*.jar"/>
                    <include name="**/*.zip"/>
                </fileset>
            </unzip>
      </target>
      <target name="gen-obfuscate"
              depends="jar"
              description="obfuscate the complete jar" if="obfuscate">
       <taskdef resource="proguard/ant/task.properties"
               classpath="builder/proguard.jar" />
       <move file="distInternal/sims.jar" tofile="distInternal/sims_temp.jar"/>
       <proguard>
            -injars       distInternal/sims_temp.jar
            -outjars      distInternal/sims.jar
            -libraryjars  ${java.home}/lib/rt.jar
            -printmapping progaurd_mapping.txt
            -keep public class com.elandtech.sims.Main {
                public static void main(java.lang.String[]);
            -dontshrink
            -dontoptimize
            -renamesourcefileattribute SourceFile
            -keepattributes InnerClasses,SourceFile,LineNumberTable,Deprecated,Signature,*Annotation*,EnclosingMethod
            <!-- Ghost Engine Classes.. -->
            -keep public class com.elandtech.sims.ghostengines.GhostEngine
            -keep public class com.elandtech.sims.ghostengines.GhostEngine  {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.SimsWithPaternMatchingGhostEngine
            -keep public class com.elandtech.sims.ghostengines.SimsWithPaternMatchingGhostEngine {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.SimsGhostEngine
            -keep public class com.elandtech.sims.ghostengines.SimsGhostEngine {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.RequestResponsePair
            -keep public class com.elandtech.sims.ghostengines.RequestResponsePair {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.ITCGhostEngine
            -keep public class com.elandtech.sims.ghostengines.ITCGhostEngine {
                public protected *;
            -keep public class com.elandtech.sims.ghostengines.RunwayGhostEngine
            -keep public class com.elandtech.sims.ghostengines.RunwayGhostEngine {
                public protected *;
            <!-- Logging interface.. -->
            -keep public class com.elandtech.sims.logging.LogManager
            -keep public class com.elandtech.sims.logging.LogManager {
                public protected *;
            -keep public class com.elandtech.sims.logging.LogMessage
            -keep public class com.elandtech.sims.logging.LogMessage {
                public protected *;
            -keep public class com.elandtech.sims.logging.LogGenerator
            -keep public class com.elandtech.sims.logging.LogGenerator {
                public protected *;
            -keep public class com.elandtech.sims.logging.Log4jLogger {
                public protected *;
            -keep public class com.elandtech.sims.logging.LogListener. {
                public protected *;
            -keep public class com.elandtech.sims.logging.FileLogger {
                public protected *;
            <!-- Remote interface.. -->
            -keep public class com.elandtech.sims.api.Handler
            -keep public class com.elandtech.sims.api.RemoteClient
            <!-- Configuration classes.. -->
            -keep public class com.elandtech.sims.config.SimsSettings
            -keep public class com.elandtech.sims.config.ConnectionSettings
            -keep public class com.elandtech.sims.config.SimsSettings {
                public protected *;
            -keep public class com.elandtech.sims.config.ConnectionSettings
            -keep public class com.elandtech.sims.config.ConnectionSettings {
                public protected *;
            <!-- Utility classes.. -->
            -keep public class com.elandtech.eland.commonx.text.EString {
                public protected *;
       </proguard>
        <delete file="distInternal/sims_temp.jar"/>
      </target>
      <!-- Create a combined distribution where all the classes and resources are combined in to one file. -->
      <target name="InternalDist"
              depends="readversion,jar,includeAllResources"
              description="Generates all in one Jar file">
        <copy file="${dist}/lib/sims.jar" tofile="distInternal/sims.jar"/>
        <!-- first perform the obfuscate  on the core SIMS product -->
        <antcall target="gen-obfuscate"/>
        <!-- Create a sims.jar file containing all the files required to run the sims-->
        <genjar jarfile="distInternal/sims${version}.jar">
          <class name="com.elandtech.sims.Main"/>
          <class name="com.elandtech.sims.ghostengines.SimsGhostEngine"/>
          <class name="com.elandtech.sims.ghostengines.SimsWithPaternMatchingGhostEngine"/>
          <class name="com.elandtech.sims.ghostengines.RunwayGhostEngine"/>
          <class name="com.elandtech.sims.ghostengines.ITCGhostEngine"/>
          <library jar="${libdir}/castor-0.9.5.3-xml.jar"/>
          <library jar="${libdir}/log4j-1.2.8.jar"/>
          <library jar="distInternal/sims.jar"/>
          <library jar="${libdir}/xmlrpc-1.1.jar"/>
          <library jar="${libdir}/xml-apis-2.4.jar"/>
          <library jar="${libdir}/xercesImpl-2.4.jar"/>
          <resource>
             <fileset dir="${build}">
               <include name="**/*.properties" />
               <include name="**/*.gif" />
               <include name="**/*.jpg" />
             </fileset>
          </resource>
          <resource>
             <fileset dir="${build2}">
               <include name="**/*.properties" />
               <include name="**/*.gif" />
               <include name="**/*.jpg" />
             </fileset>
          </resource>
          <classpath>
              <pathelement location="distInternal/sims.jar"/>
            <pathelement location="build"/>
            <fileset dir="${libdir}">
                <include name="**/*.jar"/>
            </fileset>
          </classpath>
          <manifest template="${src}/META-INF/sims.mf"/>
        </genjar>
        <copyfile src="scripts/startup_dist2.bat" dest="distInternal/startup.bat"/>
        <mkdir dir="distInternal/docs"/>
        <copy todir="distInternal/docs">
          <fileset dir="docs" includes="**/*.pdf"/>
        </copy>
        <copy file="RunwaySimulatorConfig.xsd" tofile="distInternal/docs/RunwaySimulatorConfig.xsd"/>
        <replace file="distInternal/startup.bat" token="${SIMS_FILENAME}" value="sims_${version}.jar"/>
        <copy todir="distInternal">
          <fileset dir="configdist"/>
        </copy>
        <zip zipfile="RunwayHostsSimIntDist${version}.zip">
          <fileset dir="distInternal"/>
        </zip>
        <delete file="distInternal/sims.jar"/>
      </target>
      <!--  ************************************************************
                         Create a jar containing the
                         Ghost Runway Ghost Engine API Only
            ************************************************************ -->
      <target name="genGhostEngine"
              depends="readversion,compile,includeAllResources"
              description="Generates all in one Jar file">
          <!-- -->
        <genjar jarfile="ghostEngine.jar">
          <class name="com.elandtech.sims.ghostengines.sample.TestRunwayGhost"/>
          <!--
          <resource>
             <fileset dir="${build}">
               <include name="**/*.properties" />
               <include name="**/*.gif" />
               <include name="**/*.jpg" />
               <include name="**/*.dec" />
               <include name="**/*.ghost" />
               <include name="**/*.txt" />
             </fileset>
          </resource>
          <resource>
             <fileset dir="${build2}">
               <include name="**/*.properties" />
               <include name="**/*.gif" />
               <include name="**/*.jpg" />
               <include name="**/*.dec" />
               <include name="**/*.ghost" />
               <include name="**/*.txt" />
             </fileset>
          </resource>
          -->
          <classpath refid="classpath.sims" />
          <!--<manifest template="${src}/META-INF/sims.mf"/> -->
        </genjar>
      </target>
      <!-- utility task to get version information and put it in to enviornment variables ${version} and ${cvsversion}-->
      <taskdef name="getversion" classname="com.elandtech.anttasks.GetVersion" classpath="builder/elandAntTasks.jar"/>
      <target name="readversion" >
         <getversion file="${app.version.file}" />
         <echo>Reading version information from file = ${app.version.file}</echo>
         <echo>version = ${version}</echo>
         <echo>cvsversion = ${cvsversion}</echo>
      </target>
      <!--
          These targets are defined in versionbuild.xml
      -->
      <!-- Tag all files using the variable ${cvsversion}  read in from ${app.version.file} -->
       <target name="cvstag" depends="readversion">
         <ant antfile="versionbuild.xml" dir="." target="cvstag"/>
      </target>
      <!-- increment mini version number-->
      <target name="newmini" >
         <ant antfile="versionbuild.xml" dir="." target="newmini"/>
      </target>
      <!-- increment minor version number-->
      <target name="newminor"  >
         <ant antfile="versionbuild.xml" dir="." target="newminor"/>
      </target>
      <!-- increment Major version number-->
      <target name="newmajor" >
         <ant antfile="versionbuild.xml" dir="." target="newmajor"/>
      </target>
      <!-- Turn beta version on-->
      <target name="betaon" >
         <ant antfile="versionbuild.xml" dir="." target="betaon"/>
      </target>
      <!-- Turn beta version off-->
      <target name="betaoff" >
         <ant antfile="versionbuild.xml" dir="." target="betaoff"/>
      </target>
      <!--
          These targets are defined in junitbuild.xml
      -->
      <target name="testall" depends="init,compile" description="Calls testall in junitbuild.xml">
         <ant antfile="junitbuild.xml" dir="." target="testall"/>
      </target>
      <target name="testsubset" depends="init,compile" description="Calls testsubset in junitbuild.xml">
         <ant antfile="junitbuild.xml" dir="." target="testsubset"/>
      </target>
      <target name="coverage" depends="init,compile" description="Calls coverage in junitbuild.xml">
         <ant antfile="junitbuild.xml" dir="." target="testall-coverage"/>
      </target>
    </project>and I get th errors:
    BUILD FAILED
    C:\myProjects\sims\build.xml:487: The following error occurred while executing this line:
    C:\myProjects\sims\build.xml:383: Expecting class path separator ';' before 'Files\Java\jre1.5.0_09/lib/rt.jar' in argument number 1
    can anyone help with this please?

    I ran into this same problem when using ProGuard 4.1 for Java obfuscation. The problem is that there is a space in the path to your JDK/JRE, for example: c:\Program Files\Java\jdk1.6.0_03. Because there is a space before the word "Files", it isn't working. The solution to to wrap quotes around that particular command-line argument. In ANT, I needed to use single-quotes (because double-quotes were already in use for the XML attribute) such as:
    <java jar="proguard.jar" fork="true" timeout="30000">
    <arg value="-libraryjars"/>
    <arg value="'${java.home}/lib/rt.jar'"/> <!-- Notice both double and single quotes used on this line. -->
    ...rest of the arguments go here...
    </java>
    Alternatively, using ProGuard's custom ANT Task, it would look something like (notice the use of double-quotes around the rt.jar location):
    <proguard>
    -libraryjars "${java.home}/lib/rt.jar"
    ...rest of the arguments go here...
    </proguard>
    Anyways, I hope this helps you or anyone else who runs into the same problem. Both of these approaches have worked for me.

  • "Build.xml file not exist"

    Hey Guys,
    i am currently involving in a servelet project (RendreX). i want to install apachi ant as a prerequirement. i am using windows 2003 server. I already downloded latest ant version and apache tomcat4.0. Also i have set all the class path,ANT-HOME(C:\ANT) and other relevent paths. But when i run ant command in the command prompt(C:\ANT>ant)will generate error state that "build.xml" file can't be found. Have i done any wrong thing here? Can anybody give a way that i can easily install apache ant on winows.
    It would be greatly appriciated if u can send me some advice to over come this problem.
    Best Regards
    Mohan

    build.xml is the default build file assumed by ant. You have to provide a build file to control what you expect from ant to do.

  • "index.xml missing" • Do I laugh, cry, or scream?

    After a variety of hardware problems with my iBook (http://discussions.apple.com/thread.jspa?threadID=1523536&tstart=0), I have a new software-related problem.
    Some of my Pages files are acting up on me. When I try to open said files from Finder or from inside Pages I get the "index.xml missing" message (I'm using the iWork '08 demo version I downloaded today--I can't access the multiple licensed copy of iWork on the install disk from my IT guy until tomorrow).
    When I open the package contents of the problem files, sure enough--there's serious data missing. How could this have happened to some of my files by not all of them? (Hierarchy/where the files are located within my Documents folder doesn't make a difference. All the files were created by the most recent version of Pages too....)
    Am I totally screwed?!? Please tell me there's some way to salvage my files.

    Hello
    I met this kind of behavior when I tried to use from account B a document created in account A.
    As I am most often playing safety, I had a backup but I know than even if we repeat million times "computers are not perfect so, always keep backups", users will continue to miss this rule … until they loose some important data.
    I don't know which kind of code removes the Index.xml.gz files so I'm not sure that a file recovery tool would be able to revive them.
    You may try to use one of them but I can't guarantee the result.
    Yvan KOENIG (from FRANCE lundi 2 juin 2008 11:07:43)

  • Build.xml classpath ref to be used in another build XML file

    Hi,
    I have ant build.xml with a target as
    <target name="build_project">
              <ant antfile="C:/projects/antbuild/build.xml" inheritAll="true">
                   <target name="clean" />
              </ant>
         </target>
         in report1.xml.
         This build.xml inturn have the classpath defined in it with the JARS added to the classpath.
         In the report2.xml,
         Can I use the classpathref in build.xml which is defined in report2.xml? Where report2.xml is imported in report1.xml as
         <import file="report2.xml" />
         If I can do so I don't have to create duplicate class path ref again adding all the JARS in report2.xml?
         Please clarify.
    Thanks.

    I've used quite a bit of ANT in the past, but I don't really know what to answer to your question that is in any way helpful to you. I remember that ANT has some form of build file inheritance built in, I've played around with it in years ago to try and crank out somewhat standardized build files with reusable elements. What I can recall is that I had to read a book on advanced ANT usage to be able to work it out, the online manual wasn't nearly enough.

  • Build.xml file

    Hi
    i am building the project by using build.xml file while running build.xml file in console first line i am getting buildfile directory is xyz/abc/build.xml
    how to print this one dinamically
    please give me clear clarification

    how to print this one dinamicallyPlease elaborate your exact requirement?
    -RMishra

  • Build.xml does not exist!

    Hi ,
    I'm doing the converter program (EJB) from J2EE1.4 Tutorial. I installed J2EE1.4 already. I copied converter programs to different directory, not the same dir like tutorial. When I type-- c:\sun\appserver\bin> asant build.xml, it shows build.xml does not exist. I copied build.xml to the same dir of converter programs.
    (1) Do I need to install ANT ??
    (2) What else I need to do?
    Thanks
    Emily

    Yes you need ANT installed to use it, but it would seem you have it installed. Make sure you are running ANT in the same directory as the build.xml file. At least, that's the way I've always done/seen it.

  • Problem in creating a build.xml for weblogic portal application

    Team ,
    I am facing problem in creating the build.xml using weblogic.BuildXMLGEN tool .
    a) Below is the structure of my portal application
    SrcCode
    --- .metadata (eclipse plugins folder)
    --- B2BApp ( Ear Content)
    --- b2bPortal ( portal related file(controllers,jsp)
    --- b2bsrc     (java src)
    b) Now I executed below utility to generate the build.xml "
    java weblogic.BuildXMLGen -projectName B2BApp -username weblogic -file build.xml -password welcome1 F:\srcCode"
    c) Based on the above step , build.xml got generated .
    d) when I execute "ant compile" target from the command prompt , I see the below exception
    ant compile
    Buildfile: build.xml
    compile:
    +[wlcompile] [JAM] Warning: failed to resolve class AbstractJspBacking+
    +[wlcompile] [JAM] Error: unexpected exception thrown:+
    +[wlcompile] com.bea.util.jam.internal.javadoc.JavadocParsingException: Parsing failure in F:\b2bNew\b2bPortal\src\portlets\b2b\dmr\Picker\PickerController.java at line 58.+
    e) I suspect , the problem is bcoz of classpath issues , as I generated build.xml donot have the references to dependent lib's.As build.xml looks like below :
    +<target name="compile" description="Only compiles B2BApp application, no appc">+
    +<wlcompile srcdir="${src.dir}" destdir="${dest.dir}">+
    +<!-- These referenced libraries were not found -->+
    +<!-- <library file="p13n-core-web-lib" /> -->+
    +<!-- <library file="jersey-web-lib" /> -->+
    +.....+
    +....+
    Please help me to reslove these issues .
    PS: I able to deploy the application using 10.3.2 weblogic workshop ( i.e inbuilt eclipse )

    i JaySen ,
    thanks for your response. As mentioned we added all the necessary library within the -librarydir but still we see the same error :
    +[JAM] Error: unexpected exception thrown:+
    com.bea.util.jam.internal.javadoc.JavadocParsingException: Parsing failure in F:\b2bNew\b2bPortal\src\portlets\typeAhead\TypeAheadController.java at line 70.  Most likely, an annotation is declared whose type has not been imported.
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.getAnnotationTypeFor(JavadocTigerDelegateImpl_150.java:410)
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.extractAnnotations(JavadocTigerDelegateImpl_150.java:176)
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.extractAnnotations(JavadocTigerDelegateImpl_150.java:152)
    at com.bea.util.jam.internal.javadoc.JavadocClassBuilder.addAnnotations(JavadocClassBuilder.java:404)
    at com.bea.util.jam.internal.javadoc.JavadocClassBuilder.populate(JavadocClassBuilder.java:359)
    ===================
    a) this is a upgrade project [ upgrading from wlp 8.1.4 to 10.3.2 ]
    i.e we are using weblogic portal 10.3.2 version.
    b) Searched some sites/forums regarding the above error, and it says something related to "jwsc" ant task [ i.e while compiling a webservice(JWS) ], but we see this error while compiling a normal controller(jpf) class :(
    c) we are using "ant compile" target which internally calls wlcompile task , while executing wlcompile this error is thrown .
    Help Appreciated
    Thx,
    Sarat

  • Error while building xml document

    Hi Everyone,
    I have a problem while building xml document.
    I have developed my java files using IBM Eclipse 3.0 and i had no problem while executing the files.
    But while i am trying to execute the same code in jdk/bin, xml document is not working..
    No error encountered while compiling but while executing when i try to print the xml string it just gives the root element name like [root : null]
    Can anyone suggest some solution?

    To the values element add xmlns:xsi and xsi:noNamespaceSchemaLocation.
    <values xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    xsi:noNamespaceSchemaLocation="file:///c:/schema.xsd">schema.xsd is schema file.

  • Error in my build.xml file (help with spotting syntax error requested)

    Hi
    I have written an XML file called build.xml for one of my applications. My XML editor complains that there is an error at the last line of the XML file, but I simply find it unable to correct the errror.
    It says:
    Fatal error:Build.xml[76:3-9]: End-Tag without start-tag
    The XML file itself:
    <project basedir="." default="deploy" name="concepts">
    <property name="src.dir" value="src"></property>
    <property name="build.dir" value="${basedir}/build"></property>
    <property name="build.lib" value="${build.dir}/lib"></property>
    <property name="dist.dir" value="dist"></property>
    <property name="classes.dir" value="${build.dir}/classes"></property>
    <property name="build.etc" value="${src.dir}/etc"></property>
    <property name="build.resources" value="${src.dir}/resources"></property>
    <property name="lib.dir" value="lib"></property>
    <property name="web-inf.dir" value="WEB-INF"></property>
    <property name="war.name" value="concepts"></property>
    <property file="../common.properties"></property>
    <target name="init">
    <mkdir dir="${build.dir}"></mkdir>
    <mkdir dir="${classes.dir}"></mkdir>
    <mkdir dir="${dist.dir}"></mkdir>
    </target>
    <target name="deploy" depends="clover-yes, clover-no">
    <javac srcdir="${src.dir}" destdir="${classes.dir}" classpath="${libs}" debug="off" optimize="on" deprecation="on" compiler="${compiler}">
    <include name="org/apache/commons/fileupload/**/*.java" />
    <include name="com/portalbook/portlets/**/*.java" />
    <include name="com/portalbook/portlets/content/**/*.java" />
    </javac>
    <target depends="init" name="compile">
    <javac debug="true" deprecation="true" destdir="${classes.dir}" optimize="false">
    <src>
    <pathelement location="${src.dir}"></pathelement>
    </src>
    <classpath>
    <fileset dir="${lib.dir}">
    <include name="*.jar">
    </include>
    </fileset>
    </classpath>
    </javac>
    </target>
    <target depends="compile" name="war">
    <war destfile="${dist.dir}/${war.name}.war" webxml="WEB-INF/web.xml">
    <classes dir="${classes.dir}"></classes>
    <lib dir="${lib.dir}"></lib>
    <webinf dir="${web-inf.dir}"></webinf>
    </war>
    </target>
    <!-- create the portal-concepts-lib.jar -->
    <jar jarfile="${build.lib}/concepts-lib.jar">
    <fileset dir="${classes.dir}"></fileset>
    </jar>
    <jar jarfile="${build.lib}/concepts.war" manifest="${build.etc}/concepts-war.mf">
    <fileset dir="${build.resources}/concepts-war"></fileset>
    </jar>
    <!-- concepts.ear -->
    <copy todir="${build.resources}/concepts-ear">
    <fileset dir="${build.lib}" includes="concepts.war,concepts-lib.jar"></fileset>
    </copy>
    <jar jarfile="${build.lib}/concepts.ear">
    <fileset dir="${build.resources}/concepts-ear" includes="concepts.war,concepts-lib.jar">
    </fileset>
    </jar>
    <target depends="deploy" name="explode">
    <taskdef classname="org.jboss.nukes.common.ant.Explode" classpath="${libs}" name="explode"></taskdef>
    <explode file="${build.lib}/concepts.ear" name="concepts.ear" todir="${build.lib}/exploded"></explode>
    </target>
    <target depends="war" name="all"></target>
    <target name="clean">
    <delete dir="${build.dir}">
    </delete>
    <delete dir="${dist.dir}">
    </delete>
    </target>
    </project>
    I am a little inexperienced in XML files. So I am unable to spot the error.
    I would greatly appreciate it, if some kind soul were to help me out.
    thanks a lot

    The tag
    <target name="deploy" depends="clover-yes, clover-no">...is never closed.
    close that tag:
    <target name="deploy" depends="clover-yes, clover-no">
         <javac srcdir="${src.dir}" destdir="${classes.dir}" classpath="${libs}" debug="off" optimize="on" deprecation="on" compiler="${compiler}">
              <include name="org/apache/commons/fileupload/**/*.java" />
              <include name="com/portalbook/portlets/**/*.java" />
              <include name="com/portalbook/portlets/content/**/*.java" />
         </javac>
    </target>Second error is that the depends in there (clover-yes, clover-no) are not existing as targets in your xml.

Maybe you are looking for

  • External Hard Disk not showing up on Finder

    Hi My HP Pocket Media Drive (USB), when plugged into my MacBook, does not show up on the Finder, even though it shows up on System Profiler. It only shows up on Disk Utility in certain occasions (such as after shutting down and starting up again). I

  • Client Change options in SCC4 (SAP ECC 6.0)

    Hi, Our SAP Development system SCC4 settings are as mentioned below: 1.Changes and transports for client-specific objects : Automatic recording of changes 2.Cross-client object changes : Changes to repository and cross-client customizing allowed 3.Pr

  • UCCE Agent Whisper with CVP

    I am attempting to build out the Agent Whisper Feature in our Development lab, but I keep getting "IPIVR Whisper is disabled as the routing client CVP is not System PG" in Router Log Viewer. I followed the configuration guide for Agent Whisper, but I

  • Chart multiple series question

    I have one sql query to generate a flash line chart. It generates 8 series using syntax: SELECT link, label, series_1_value [, series_2_value [, ...]] FROM ... Is there any way to customize the line color of each series, and labels for each series? R

  • Combining two iDVD burned DVDs on a single DVD (regular or DL)

    Any insight appreciated: Does any one know if it is possible to combine two iDVD burned DVDs (burned with iDVD current in 2002) on a single DVD either single or double layer? 17" Flat Panel 1GHz G4 1 GB RAM 80GB Internal   Mac OS X (10.4.3)   iLife '