Sample ANT-generated project

Anyone know where I can download source for a simple project that uses ANT/XDoclet and is built, verified and deployed to the Sun Java System Application Server Platform Edition 8? Ideally, such a project would house CMP beans and an application client. I've been messing around with this off an on for ages but am constantly stymied by cryptic error messages and a glacial deployment process. For the record, I'll list ANT script that I'm using and the resultant problems. Perhaps someone will immediately recognize a rookie mistake. I'd be just as happy, though, if someone could simply direct me to a functional example that I can copy and tweak. I'd love to focus on actually learning J2EE rather than struggling with configuration issues.
Working
* Java Application Verification Kit for the Enterprise StaticArchiveTest/SourceScan
* Delpoying the application and viewing JSP/HTML pages
* Creating and finding CMP beans from JSP
* Deplying application client via deploytool
Crashing and Burning
* Verifying EAR
Error Name : Exception : java.io.IOException: Verify Error: Module specified in application.xml not found in ear file:
Error Description : java.io.IOException: Verify Error: Module specified in application.xml not found in ear file:
at com.sun.enterprise.tools.verifier.Verifier.updateClasspath(Verifier.java:3023)
* Verifying JAR
Test Name : tests.ejb.runtime.ASEntBeanCmpResource
Test Assertion : Enterprise beans cmp-resource test. cmp-resource element contains the database to be used for storing CMP beans in an ejb-jar
Test Description : For [ C:-eclipse-workspace-test-jars-test_ear-test.jar#test.jar#Building ]
FAILED [AS-EJB cmp-resource] : jndi-name cannot be an empty string
* Deploying an application client via "asadmin deploy"
CLI171 Command deploy failed : Deployment Error -- Error while running ejbc -- F
atal Error from EJB Compiler -- com.hollis.residentiator.interfaces.BuildingMgrS
essionHome
WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.stream.err|_ThreadID=12;|java.lang.ClassNotFoundException
at com.sun.enterprise.loader.EJBClassLoader.findClass(EJBClassLoader.java:505)
* Running an application client with 'appclient'
C:\eclipse\workspace\testclient\jars>appclient -client testClient.jar
#### Error: Unable to load module. File -client does not exist.
Client Container Error:
Failed to load the archive specified
C:\eclipse\workspace\testclient\jars>appclient testClient.jar
Please specify uri for the the client jar using -uri
Usage: appclient <client-archive> [-uri <uri>] [client-arg1 client-arg2 ..]
ANT file
<project name="Test project" default="deploy" basedir=".">
     <property file="build.properties"/>
     <property environment="env"/>
     <path id="xdocletlib">
          <fileset dir="${xdoclet.dir}/lib"><include name="**/*.jar"/></fileset>
          <pathelement location="${env.ANT_HOME}/lib/ant.jar"/>
          <pathelement location="${env.J2EE_HOME}/lib/j2ee.jar"/>
     </path>
     <target name="setup">
          <copy todir="${env.J2EE_HOME}/lib/system">
               <!-- log4j file -->
               <fileset dir="${log4j.dir}/dist/lib" includes="*.jar"/>
          </copy>
     </target>
     <target name="xdoclet">
          <mkdir dir="${xdoclet.output}"/>
          <!-- clear out original xdoclet files -->
          <delete includeemptydirs="true">
               <fileset dir="${xdoclet.output}" includes="**/*"/>
          </delete>
          <mkdir dir="${xdoclet.output}/java"/>
          <taskdef
           name="ejbdoclet"
           classname="xdoclet.modules.ejb.EjbDocletTask"
           classpathref="xdocletlib"
          />
          <ejbdoclet destDir="${xdoclet.output}/java" excludedTags="@version,@author,@todo">
               <fileset dir="${entity.ejb.src.dir}"><include name="**/*Ejb.java"/></fileset>
               <fileset dir="${session.ejb.src.dir}"><include name="**/*Ejb.java"/></fileset>
               <packageSubstitution packages="ejb" substituteWith="interfaces"/>
               <remoteinterface/>
               <homeinterface/>
               <localinterface/>
               <localhomeinterface/>
               <entitypk/>
               <entitycmp/>
               <session/>
               <utilobject>
                    <packageSubstitution packages="ejb" substituteWith="util"/>
               </utilobject>
               <valueobject>
                    <packageSubstitution packages="ejb" substituteWith="model"/>
               </valueobject>
               <deploymentdescriptor
                destdir="${xdoclet.output}/META-INF"
                validateXml="true"
               />
               <sunone destdir="${xdoclet.output}/META-INF"/>
          </ejbdoclet>
     </target>
     <target name="compile" depends="xdoclet">
          <mkdir dir="${build.dir}"/>
          <javac destdir="${build.dir}">
               <classpath>
                    <fileset dir="${log4j.dir}/dist/lib"><include name="*.jar"/></fileset>
                    <pathelement location="${env.J2EE_HOME}/lib/j2ee.jar"/>
               </classpath>
               <src path="${entity.ejb.src.dir}"/>
               <src path="${session.ejb.src.dir}"/>
               <src path="${xdoclet.output}/java"/>
          </javac>
     </target>
     <target name="webdoclet">
          <taskdef
           name="webdoclet"
           classname="xdoclet.modules.web.WebDocletTask"
           classpathref="xdocletlib"
          />
          <webdoclet destdir="${xdoclet.output}/${web.dir}/META-INF" excludedtags="@version,@author">
               <deploymentdescriptor
                schema="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
                displayname="Test App"
                description="A quick and dirty test"
               >
                    <welcomefile file="index.html"/>
                    <welcomefile file="index.jsp"/>
               </deploymentdescriptor>
               <fileset dir="${entity.ejb.src.dir}"/>
               <fileset dir="${session.ejb.src.dir}"/>
          </webdoclet>
     </target>
     <target name="build" depends="compile,webdoclet">
          <mkdir dir="${jars.dir}"/>
          <jar destfile="${jars.dir}/test.jar">
               <fileset dir="${build.dir}"/>
               <fileset dir="${xdoclet.output}" includes="META-INF/*ejb-jar.xml"/>
          </jar>
          <war
           basedir="${web.dir}"
           destfile="${jars.dir}/test.war"
           webxml="${xdoclet.output}/${web.dir}/META-INF/web.xml"
          >
               <classes dir="${build.dir}">
                    <include name="**/*Local.class"/>
                    <include name="**/*LocalHome.class"/>
               </classes>
          </war>
          <!-- Build ear -->
          <ear destfile="${jars.dir}/test.ear" appxml="META-INF/application.xml">
               <fileset dir="${jars.dir}" includes="*.jar,*.war"/>
               <fileset dir="${basedir}" includes="META-INF/sun-application.xml"/>
               <!-- client -->
               <fileset dir="${basedir}/../testclient/${jars.dir}" includes="*.jar"/>
          </ear>
     </target>
     <target name="test">
          <exec executable="${env.J2EE_HOME}\bin\verifier.bat">
               <arg value="${jars.dir}/test.ear"/>
          </exec>
          <property
           name="cpath"
           value="${avk.home}/appserver/lib/sun-appserv-ant.jar:${avk.home}/lib/javke-ant.jar"
          />
          <taskdef
           name="ArchiveTest"
           classname="org.apache.tools.ant.taskdefs.optional.sun.verification.StaticArchiveTest"
           classpath="${cpath}"
          />
          <ArchiveTest appName="${jars.dir}/test_ear/test.jar"/>
          <taskdef name="SourceScan"
           classname="org.apache.tools.ant.taskdefs.optional.sun.verification.SourceScan"
           classpath="${cpath}"
          />
          <SourceScan srcDir="${basedir}/entity_ejb_src" srcServer="sunone"/>
          <SourceScan srcDir="${basedir}/session_ejb_src" srcServer="sunone"/>
     </target>
     <target name="deploy" depends="build">
          <copy todir="${env.J2EE_HOME}/domains/domain1/autodeploy" file="${jars.dir}/test.ear"/>
          <ant target="start_server"/>
     </target>
     <target name="undeploy" depends="stop_server">
          <delete file="/**/*">
               <fileset dir="${env.J2EE_HOME}/domains/domain1/autodeploy" includes="**/*"/>
          </delete>
     </target>
     <target name="start_server">
          <exec dir="${env.J2EE_HOME}\bin" executable="${env.J2EE_HOME}\bin\asadmin.bat">
               <arg value="start-domain"/>
               <arg value="domain1"/>
          </exec>
     </target>
     <target name="stop_server">
          <exec dir="${env.J2EE_HOME}\bin" executable="${env.J2EE_HOME}\bin\asadmin.bat">
               <arg value="stop-domain"/>
               <arg value="domain1"/>
          </exec>
     </target>
</project>

There are quite a few sample apps and blueprint apps that Sun provides. Have you looked at any ofThanks for the response. I looked over the Sun examples and can get them to work. I'm just not interested in manually writing so much code. Every bean seems to require a zillion files and configuration settings. XDoclet was supposed to help me avoid all the typing. I'd also like to steer clear of the deploytool; being able to do a complete build in one step is very important to me. I suppose I could compare and contrast with the functional examples but it's such slow going...

Similar Messages

  • Looking for sample ANT files for building workshop webservice app outside the IDE

    Hi,
    I am currently planning to use Workshop for implementing a webservice application.
    I am looking for any sample ANT files that would enable me to build and deploy
    both the webservice EAR and the client JAR outside the IDE.
    Thanks,
    Bao Nguyen

    Hi Raj,
    Yup, I did see that sample file. However, it only demontrate how to build an
    EAR file. I am also looking for samples of how to generate the client JAR (using
    proxy to gain access to the webservice) and also how to deploy the web service
    EAR file to the server.
    I tried to use the ANT tag "clientgen" referencing the generated EAR file. It
    complainted of the missing WAR file. I checked the content of the EAR file and
    found no WAR file generated.
    I am also looking for a better way of accessing the webservice more generically
    instead of going through the proxy which is quite coupled to a specific app server.
    Please provide examples.
    Regards,
    Bao Nguyen
    "Raj Alagumalai" <[email protected]> wrote:
    Hello Bao,
    Please refer to my post "Ant script for building EAR "dated August 21
    2003.
    I have attached a sample which does this.
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=article&group=weblogic.developer.interest.workshop&item=1285&utag=
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Bao Nguyen" <[email protected]> wrote in message
    news:3f61477e$[email protected]..
    Hi,
    I am currently planning to use Workshop for implementing a webserviceapplication.
    I am looking for any sample ANT files that would enable me to buildand
    deploy
    both the webservice EAR and the client JAR outside the IDE.
    Thanks,
    Bao Nguyen

  • Error while generating stub using ant generate-stubs

    I am getting error while running ant "generate-stubs" for generating stub.The details of errors as below:
    [exec] error: modeler error: expected root element "definitions" (in namesp
    ace "http://schemas.xmlsoap.org/wsdl/"), found element "html" (in namespace "nul
    l")
    Any help????

    Perhaps there is an error while you specified the namespaces. Chk them and try............Hope that helps...............ABHI

  • The TOC in my generated project is not navigating to the correct subfolders

    The TOC in my generated project (Multiscreen HTML5/Andriod (Desktop) layout) is not opening to the correct sub folders.
    For example, when selecting a Level 1 folder (say the one highlighted in orange), it will jump to a Level 3 list of topics in a completely different level 1 structure (say the list highlighted in green)
    Level 1
           Level 2
                  Level 3
                  Level 3
                  Level 3
           Level 2
                  Level 3
                  Level 3
                  Level 3
    Level 1
           Level 2
                  Level 3
                  Level 3
                  Level 3
           Level 2
                  Level 3
                  Level 3
                  Level 3
    I have looked at the TOC report, everything is fine there, the TOC in roboHelp looks fine as far as I can see.
    I have noooo idea how to fix this!

    Check what is happening in webhelp. Same problem there?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Automatic timetable generator project

    hi all ,
    i've been assigned a project -
    to create a site for our college that automates the process of generating timetable..using jsp.
    i've formulated the list of constraints..
    i'm not clear as to what inputs i should get from the user .. n how to use those inputs in my program..
    i do not know where to start..
    pl help ..
    thanks.

    Do you need to visualize a pre-defined timetable in a JSP or calculate a complete timetable given some constraints?
    The former is rather easy, the later is very, very hard (NP-hard, even).
    For displaying, I'd like to point you towards the [JEE tutorials|http://java.sun.com/javaee/reference/tutorials/].
    For calculating a timetable, it's probably one of the "if you have to ask, it's too hard for you"-things.

  • How BPM studio developed(generated) project be deployed onto WebCenter?

    Do as the tutorial of BPM studio, it tells to click run and there is already a test portal that can run and test the Process, I really don't know where the studio put the packaged files on the test portal environment and how it works.
    My question is in our requirement purpose, we will use the the feature that oracle tells BPM can be integrated with WebCenter, so how to deploy the BPM studio developed project on WebCenter? What configuration I need to do?
    Thanks ...

    If you want to run your process inside the portal (webcenter, alui), then you have to install your standalone BPM server with the workspace extension (WE). WE does the Webcenter/ALUI integration: portlets and sso. After your BPM WE configuration you can just import portlet and webservice settings with a pte file generated by the config wizard. You can use Process Community out of the box or setup your own communities.
    Please read carefully the documentation especially paragraph "Integrating Oracle BPM with AquaLogic Interaction":
    http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/config_guide/index.html
    Hope this helps.

  • Request for Sample SAP Archive Project Plan

    Dear SAP Practitioner
    My firm is in the mist of planning for SAP Data archiving project. We are looking for sample SAP Data Archiving Project plan and other related documentations. We sincerely hope that you can share for the knowledge of our firm and the rest of the community.
    Regards
    Leonard
    Message was edited by: Leonard Tan

    Hi Kenny,
    Whenever you create a custom (Z) idoc type and want to trigger idocs for it you would need to use the MASTER_IDOC_DISTRIBUTE function module for the same.
    Hence to get some sample programs just do a <i>where used</i> on this function module.
    Hope this helps. Also please refer to the link below:
    <a href="http://">help.sap.com/saphelp_erp2004/helpdata/en/78/21783151ce11d189570000e829fbbd/frameset.htm</a>
    to understand more about not only creating the outbound program using this function module but also about the related SPRO and other configuration.
    Regards,
    Aditya

  • Any sample ActionScript mobile project for iOS

    Hi,
    I am looking for some sample example of ActionScript mobile project for iOS to get started. I am very excited with new flash builder 4.5 tool but looking for some example so that I can quickly try it.
    -Greg

    Hi Greg,
    http://va.lent.in/blog/2011/03/25/air2-6-app-for-ios/ should get you started. Once you familiar with the basics, you can check out the new features. Following links should help:
    http://www.adobe.com/devnet/air/articles/ios_features_in_air26.html
    http://tv.adobe.com/watch/adc-presents/developing-for-ios-with-air-for-mobile-26/
    http://www.adobe.com/devnet/devices/ios.html
    Thanks,
    Sanika

  • Ant, JDev, Project Layouts

    I am trying to develop an IDE-neutral build process for use within our development team. I have worked with Maven, and like many of its features, but have decided that sticking with Ant is best for the time being. At the very least, I am confident that efforts invested in learning Ant will be time well spent.
    In the course of working with both JDeveloper and Eclipse, I am finding that each like to impose their own project structure, neither of which suit my preferences. Could anyone, who has struggled with these issues, kindly share some insight regarding how they have dealt with them? I would also appreciate advice from anyone who has adopted the practice of continuous integration, particularly regarding pitfalls they may have encountered along the way.
    Thanks,
    Eric Adamson
    Lansing, Michigan

    Hi Shay,
    Thanks for your follow-up. I'm trying to set up two parallel directory trees to separate unit tests from application code, like this:
      MyProject
        build
          main
          test
        dist
        lib
        src
          main
          testIn this case, src/main will have build/main for its output folder, and similarly, src/test will have build/test for its output folder. Using Customize Settings under Project Properties, I'm able to create the two source folders, I cannot figure out how to create more than one output folder.
    Eric

  • SAP SD Sample scenario / mock project

    Hello,
    Can anyone send me some sample scenarios  or mock projects for practice. I'd really appreciate if someone can post some links here or send me via mail. My email address can be found in my profile.
    Thank you!
    Amitava

    Hi,
    [SAP Best Practices Baseline packages - Based on SAP ECC 6.00|http://help.sap.com/bp_blv1600/V5600/BL_US/html/index.htm]
    Now click on technical information and then on content library.Now on the right side pane you will find all scenarios related to different ,odules will be displayed.You will have configurations,scenario's and master data related documents.
    Assign Points if  useful.
    Thanks and Regards,
    Naveen Dasari.

  • TransactionConflictException during ant osb project export

    Hey,
    I am getting more and more failed ant exports of osb projects.
    Searching on com.bea.wli.config.transaction.TransactionConflictException doesnt give any hits whatsoever, i suspect however something is going wrong with the eclipse workspace or something.
    It is running on a dedicated machine so workspace being locked or something. Even fetching deleting the workspace and pulling anew from the SVN doesn't resolve this.
    Synchronizing "OSB-[xxxx]_configuration"...
    [java] <Apr 26, 2013 10:53:39 AM CEST> <Warning> <ConfigFwk> <BEA-000000> <Setting transaction '13' as rollback only. Rollback reason:
    [java] com.bea.wli.config.transaction.TransactionConflictException: Transaction ALSB Resource Synchronization conflicts with ALSB Resource Synchronization for transactional resource lazy value cache and will be rolledback
    [java]      at com.bea.wli.config.transaction.TransactionManager.testConflict(TransactionManager.java:1361)
    [java]      at com.bea.wli.config.transaction.TransactionManager.enlistAsRead(TransactionManager.java:981)
    [java]      at com.bea.wli.config.transaction.CopyOnWriteTransactionalOwner.getState(CopyOnWriteTransactionalOwner.java:65)
    [java]      at com.bea.wli.config.transaction.TransactionalMap.containsKey(TransactionalMap.java:72)
    [java]      at com.bea.wli.config.component.impl.LazyValueCache.containsKey(LazyValueCache.java:105)
    [java]      at com.bea.wli.config.component.impl.ComponentTypeImpl.exists(ComponentTypeImpl.java:738)
    [java]      at com.bea.wli.config.impl.ConfigContextImpl.exists(ConfigContextImpl.java:917)
    [java]      at com.bea.wli.config.component.impl.ComponentTypeImpl.validateForCreate(ComponentTypeImpl.java:428)
    [java]      at com.bea.wli.config.component.impl.ComponentTypeImpl.createBare(ComponentTypeImpl.java:877)
    [java]      at com.bea.wli.config.component.impl.ComponentTypeImpl.create(ComponentTypeImpl.java:860)
    [java]      at com.bea.wli.config.task.impl.CreateResourceTask._execute(CreateResourceTask.java:97)
    [java]      at com.bea.wli.config.task.impl.SessionedTask.doExecute(SessionedTask.java:228)
    [java]      at com.bea.wli.config.task.impl.SessionedTask.doExecute(SessionedTask.java:191)
    [java]      at com.bea.wli.config.task.impl.CreateResourceTask.createResource(CreateResourceTask.java:82)
    [java]      at com.bea.alsb.core.internal.config.synchronize.tasks.UpdateResourceTask.execute0(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.tasks.AbstractSynchronizerTask._execute(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.tasks.ExecutionTask._execute(Unknown Source)
    [java]      at com.bea.wli.config.task.impl.SessionedTask$1.execute(SessionedTask.java:233)
    [java]      at com.bea.wli.config.transaction.TransactionalTask._doExecute(TransactionalTask.java:217)
    [java]      at com.bea.wli.config.transaction.TransactionalTask._doExecuteWithRetry(TransactionalTask.java:162)
    [java]      at com.bea.wli.config.transaction.TransactionalTask.doExecute(TransactionalTask.java:142)
    [java]      at com.bea.wli.config.task.impl.SessionedTask.doExecute(SessionedTask.java:236)
    [java]      at com.bea.wli.config.task.impl.SessionedTask.doExecute(SessionedTask.java:191)
    [java]      at com.bea.alsb.core.internal.config.synchronize.AbstractSynchronizer.executeEx(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.AbstractSynchronizer.execute(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.DeltaSynchronizer.run(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.DeltaSynchronizer.run(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.SynchronizerService.run0(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.SynchronizerService.access$2(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.SynchronizerService$1.run(Unknown Source)
    [java]      at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1975)
    [java]      at com.bea.alsb.core.internal.config.synchronize.SynchronizerService.runInWorkspace(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.SynchronizerService.run(Unknown Source)
    [java]      at com.bea.alsb.core.internal.config.synchronize.SynchronizerService$Synchronizer.resourceChanged(Unknown Source)
    [java]      at org.eclipse.core.internal.events.NotificationManager$2.run(NotificationManager.java:291)
    [java]      at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    [java]      at org.eclipse.core.internal.events.NotificationManager.notify(NotificationManager.java:285)
    [java]      at org.eclipse.core.internal.events.NotificationManager.broadcastChanges(NotificationManager.java:149)
    [java]      at org.eclipse.core.internal.resources.Workspace.broadcastBuildEvent(Workspace.java:311)
    [java]      at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:140)
    [java]      at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:242)
    [java]      at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
    Ant export process:
         <target name="export" depends="export.generic">
              <antcall target="deleteOldJar" />
              <antcall target="deleteMetadata" />
              <echo message="config.project: ${config.project} configJar: ${basedir}/${config.jar} config.subprojects ${config.subprojects}"/>
              <java dir="${eclipse.home}" jar="${eclipse.home}/plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar" fork="true" failonerror="false" maxmemory="768m">
                        <arg line="-data ${workspace.dir}" />
                        <arg line="-application com.bea.alsb.core.ConfigExport" />
                        <arg line="-configProject ${config.project}" />
                        <arg line="-configJar ${basedir}/${config.jar}" />
                        <arg line="-configSubProjects ${config.subprojects}"/>
                        <sysproperty key="com.bea.plateng.common.util.logging.useJDKlogger" value="true" />
                        <sysproperty key="weblogic.home" value="${weblogic.home}"/>
              <sysproperty key="osb.home" value="${osb.home}"/>
              <sysproperty key="osgi.bundlefile.limit" value="2000"/>
              <sysproperty key="harvester.home" value="${osb.home}/harvester"/>
              <sysproperty key="osgi.nl" value="en_US"/>
              <sysproperty key="sun.lang.ClassLoader.allowArraySyntax" value="true"/>
                   </java>
              <tstamp/>
              <copy failonerror="false" file="${metadata.dir}/.log" tofile="${log}/metadata${DSTAMP}${TSTAMP}.log"/>
              <antcall target="deleteMetadata" />
              <delete file="${workspace.dir}/${config.project}/.settings/com.bea.alsb.core.prefs"/>
         </target>
    Any help is much appreciated!

    Oracle provides prebuilt code for OSB migration
    you may refer to following
    http://biemond.blogspot.in/2010/07/osb-11g-ant-deployment-scripts.html
    http://docs.oracle.com/cd/E21764_01/doc.1111/e15022/app_config.htm#i1012336
    http://docs.oracle.com/cd/E21764_01/doc.1111/e15022/bestprac.htm#sthref44

  • Problem with generated projects

    I install Andmore plugin . I tested install "Andmore" (first checkbox) , "Andmore Core SDK" and both.
    Is problem: when I generate new Android Application Project and choose Tabbed Activity, I have import android.support.v4.app.* and android.support.v7.app.*.
    This follows android.support.v7.appcompat in gen folder, android-support-v4.jar and android-support-v7-appcompat.jar in "Android Private Libraries" folder and appcompat_v7.jar in "Android Dependencies" folder.
    This (?) causes "Conversion to Dalvik format failed with error 1" error.

    Nothing to do with Java ME SDK, which is the subject of this forum.
    Moving to CLDC and MIDP
    db

  • Samples of Keynote Projects

    Because of the great advice given in all the messages below, I suggest to add a permanent entry on top of the list where people could post the URLs of the projects they have made. I find looking at actual projects a great inspiration.

    That is correct.  Samples do not sync.  Also, samples are lost in, say, a restore operation.  The assumption is you can re-download samples (if they're still available).
    Purchases, on the other hand, do sync.

  • Can I use RH 8 to generate projects for RH 7?

    I am from Brazil and responsible for making the localized technical documentation in Brazilian Portuguese for a multinational company's products and software. Previosuly restricted to manuals, now we are going to translate the help systems as well. These consist of .CHM files with a very simple, conventional and straightforward structure of text, links and a few inline pictures, with 100-200 pages each.
    The company coordinates all its internationally localized versions from its U.S. base of operations, where they use RoboHelp 7 and have no plans to upgrade to version 8 any soon. They want us to use RH 7 as well, but since the Brazilian subsidiary will be a new user, we will not be able to obtain RH 7, as only RH 8 is now available. Yet the projects we generate here will have to be opened, reviewed and compiled in RH 7.
    The question is: will we be able to save or export our projects made in RH 8 in old format, so that they can be opened and further worked in RH 7? Or will we need to find an alternative? Also, even if an export is possible, should any compatibility problems be expected, as such conversions are not always perfect?
    Let me stress that this is NOT a project migration question, as the U.S. branch does not intend to upgrade to RH 8 in the foreseeable future. Here in Brazil we will have to generate RH 7 projects at any rate, the question being if we will be able to do it using RH 8.
    Thank you very much for your help (no pun intended!).

    Hi Jeff
    Just as an FYI, there has never been any Save As in RoboHelp that allows saving to an older format. In the past there have been unsupported workarounds, but version 8 changes the playing field a lot.
    One thing that Goytabr might want to try would be to click Tools > Options > General tab and enable the option for converting RoboHelp edited topics to HTML.
    Next, ensure a Microsoft HTML Help (CHM) file is generated.
    My thought here is that by enabling that option the coding of the topics may be changed to better allow working in an older version. And by generating a CHM file, its associated HHP file will be created and updated. The project might then be more easily edited in an older version by opening the HHP. But there will likely be other issues to think about as well.
    (Donning my Captian Obvious outfit here) Of course the simplest solution would be for all parties involved to use the same version of RoboHelp.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 moments from now - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcererStone Blog
    RoboHelp eBooks

  • Sample RFID based Project using SAP XI

    Hello everybody,
    Can anybody send me a RFID based project that can be implemented using XI?
    I searched in sdn and Google, but didn't come across any.
    Appreciate your help.
    Thank you,
    Deepak.

    Hi,
    Please don't mind but I am not getting what exactly you are looking for.
    Because the above posted links have covered all the configuration as well as installation things with XI step-by-step.
    Are you looking for the basic flow of RFID or do you have any scenario where this RFID is to be implement.
    RFID is generally used as for indentification purpose, normally used with your login cards, or bar-code system at shops etc.
    Let me know if you are looking for any specific scenario to be implemented. Because if you are comparing it with  other scenarios then do you have sender and receiver systems ready with you.
    for e.g. if you are dealing with bar codes, then you have to connect the bar-code application with XI and then to receiver system such as database or may be SAP.
    On the basis of request from that application XI will provide the data to bar code application (such as item code, item price, quantity etc) from data base or SAP or anyother application.
    I hope now you might be clear with it
    thanks
    Swarup
    Thanks
    Swarup

Maybe you are looking for

  • How to get videos from iphone 5 onto disc

    I have videos that I would like to put onto a disc and share with my family out of state, but I am not sure how to go about doing so. Any suggestions? I do not have a Mac. Is it possible to get the videos emailed to myself, save to my computer, and u

  • Unlock Purchase Requisitions

    Hi, Does anyone know how to unlock a purchase requistion after it has been partially converted? I have a situation where MRP has created a purch req, but the business have split the PO (to cover different business areas). However, in the stock requir

  • Does anyone "Trap" javascript errors and prevent the submission of a request?

    I am wondering if anyone has implemented a way to capture when a JS error is triggered and prevent the submission of a request. Websphere 6.1 Oracle 10g Linux 4 RequestCenter 2008.3 sp7 I am wondering if anyone has implemented a way to capture when a

  • Bootcamp is different on two identical Mac Pro 2013 towers, Windows 7 vs 8

    OK, so we bought two identical Mac Pro 2013 towers, took them out of the box and updated the system, and checked to see if could use Bootcamp.  Hopefully to install Windows 7, but, failing that, Windows 8.  We got two different results: One of the ma

  • Compatible with Snow Leopard?

    Is my 2.16 17" MacBook Pro Core Duo going to be compatible with Snow Leopard? Or is it time to think of a new machine?