Standards Recommendations for build applications

Hello, I'd like to know if there is some "Standards & Guidelines" document to build applications using HTMLDB. I know there are How-tos, etc, is there any document that explain or describes techniques or standards to build better applications?
Thanks!
Daniela

I found some interesting stuff here, besides the user's guide.
http://www.oracle.com/technology/products/database/htmldb/pdf/B14377_01.pdf
You can find the tutorials and how-tos here:
http://www.oracle.com/technology/products/database/htmldb/index.html
Bye,
Flavio

Similar Messages

  • When will this happen? beta of Flash Professional CS5 with support for building applications for iPh

    When will this happen? beta of Flash Professional CS5 with support for building applications for iPhone by the end of 2009

    Sadly.... NEVER

  • Book Recommendation for Building Swing Applications

    I'm looking for recommendations on books for building swing applications from the ground up.
    I'm not a strong GUI developer. 95% of my experience has been strictly on back end development in many other languages. What little GUI experience I have has been with C++ (years ago) and most recently with HTML.
    I know what I want to develop, and even have the GUI design for my application drawn out. I just need a good book that can walk me through developing the interface in Java.
    I already have several books on Java. But, I find them somewhat limiting because they don't help me build the app from the ground up.
    Yes, I've tried the online book on the Sun site, "The Jfc Swing Tutorial: Guide to Constructing Gui's".
    Please offer some recommendations and reasons on why you like the book.
    Thanks.

    A few comments to that ....
    the first thing is understanding the LayoutManagers, that are available.
    I will give you a short guideline where they are usefull:
    FlowLayout - usefull for JLabel-JTextField combinations or several JButtons
    BorderLayout - usefull for the structure of basic containers
    CardLayout - usefull for every area of the screen, where you want to appear different panels
    GridLayout - usefull for a group of same-sized components laid out in a grid
    GridBagLayout - usefull for a group of components, that have different sizes, very flexible
    JTabbedPane - a special container, that is similar to CardLayout but with visible tabs to switch panels
    Normally you can say "I want that group at the bottom of the frame, that other group at its left side, that toolbar at its top" - if you can say so - that shouts for BorderLayout. If you can say "in this area I want to use several panels" that means CardLayout or a JTabbedPane.
    You see, if you have an idea, what the LayoutManagers do, you know exactly which area needs what Layout - so you have a guideline, which LayoutManager to use in that panel.
    To make an example:
    You want 3 buttons centered at the bottom of a frame - this 3 buttoms should be of that size, that is needed by the button texts. So, what to do:
    1. create a JPanel with FlowLayout
    2. create the buttons and add it to that JPanel
    3. create another JPanel with BorderLayout
    4. add that first JPanel to the second JPanel at BorderLayout.CENTER
    5. add this Panel to the ContentPane of the frame at BorderLayout.SOUTH
    that is a simple panel in panel construct - placing 3 buttons centered at the bottom of the frame. You have to play with that different LayoutManagers a little bit - the way you stick one panel in another changes the look of the GUI - if you know, how it changes (by playing with the examples of the tutorial), you will have that "from the ground"-experience, you are looking for - believe me.
    greetings Marsian

  • Book recommendation for database applications

    I'm a LabView newbie.  My primary work will be file and data manipulation using the database connectivity toolset.  Are there any books available to help with database applications?
    Thanks

    Hello Paul,
    I cannot offer much recommendation on books about development of database
    applications from the database end (though user ratings through places like
    Amazon have usually treated me right).   If you are interested in
    learning more about how the Database Toolkit for LabVIEW can be used, the Database Connectivity Toolkit
    Manual is a great (and comprehensive) resource.
    Hope this helps!
    Travis M
    LabVIEW R&D
    National Instruments

  • Recommended browser for ADF applications

    Hi,
    We would like to know what is the recommended browser for ADF applications.
    Thanks

    Moving beyond the certified set of browsers (and contrary to dvohra21's post there are certified browsers and versions per JDev/ADF release), if you're looking to define for your employees a standard MOE with a set browser, and you want the "best" browser, then amongst the ADF certified browsers also look for the one with the fastest stats for processing JavaScript in particular (and just being fast in general).
    From Oracle's perspective this is always changing, sometimes Firefox is the fastest, sometimes Chrome, then IE, we just look to support as many browsers as possible.
    However at various times there is always a browser that is considered fastest in terms of processing DOM & JavaScript, and that browser should give your users a healthy boost in speed with ADF apps in general.  We don't keep those statistics, you'll need to research them for yourself.  Here's something I found by Googling "browser benchmarks", though it's a little out of date: The BIG browser benchmark (January 2013 edition) | ZDNet
    Note of course that the browser cannot solve the problem of network latency or slow servers, just what happens on the PC.
    So the end recommendation, do pick a certified browser & version, but do some research into which browser is currently considered the fastest too.
    If this isn't for staff MOEs, rather customers, then really your goal is to support as many browsers as possible to not exclude a customer base.
    CM.

  • Recommended Deployment Strategies for Building FlexStack

    I have found the "Recommended deployment strategies for building flexstack"
    These are the important items to consider when deploying FlexStack:
    • It is recommended that the stack master not contain uplinks if it is possible to distribute the uplinks across other stack member
    • When using only two uplinks in a stack of four members, put the uplinks on members that are not directly connected with FlexStack links. Directly connected members are those connected together with FlexStack connections. This is only relevant on FlexStack groups that contain four members.
    – This recommendation is purely for stack bandwidth efficiency. Placing the FlexStack uplinks on directly connected members is less efficient on stack bandwidth. In a four-member stack, with members connected 1-2, 2-3, 3-4, 4-1, put the uplinks on members 2 and 4 or 1 and 3.
    So For a Stack of 4 WS-C2960S If we use two links to create an etherchannel "Recommended deployment strategies for building flexstack" is to use an interface on Switch 2 and another on  Switch 4 for the etherchannel to Core Switch.
    If we want to create an etherchannel of four links, is the recommanded deployment strategies also to use two interfaces on Switch 2 and two interfaces on Switch 4?

    Which activities are taking a long time? The ejbc/appc step? or the boot of the
    server and deployment of all the beans? Makes a difference, because splitting
    up a large number of beans in to multiple JAR files might help with the time it
    takes to create each JAR file but wouldn't help with deployment time.
    I've seen applications with 300+ entity beans, and while it is a little painful
    to run ejbc/appc and deploy the resulting ejb file, it wasn't bad enough to invalidate
    the approach or require multiple files. How long are steps taking now? How many
    beans, and what hardware are you using for the various steps in the process?
    -Greg
    http://www.amazon.com/exec/obidos/ASIN/047128128X/
    "monica" <[email protected]> wrote:
    >
    I am working in a medium project that have in average 200 CMP entity
    beans. Actually,
    we have a mapping between each data base table with a CMP. Every time
    that we
    develop a new functionality the jar grows up and in fact, the deploying
    time grows
    up. This is a big problem if we think that only we had develop the 5%
    of all project
    and it spent much time making building of the jar. I would like to know
    if exist
    an extrategy to control the growth of the jar, for example do not map
    every table
    to an entity to make modules, and make build in independent form, one
    module for
    one group of functionality. The problem is that in this project exist
    a group
    of entities that are common for every functionality, Country, City, User,
    etc..
    This is the only strategy in which we could think but we do not have
    a clear judgement
    to decide which tables must to be mapped, only the ones that are not
    catalogs?.
    If you can guide me about the better form to organize my project or show
    me a
    knowledge base with similars problems I would thank you , very much.
    Thanks in advance,
    Monica A.

  • Best way for building an application main frame

    I'm about to program a desktop application.
    The main frame will have menus, toolbar, status bar etc.
    There will be a lot of interaction between the menus, toolbar buttons and other custom gui components (such as an editor).
    My question is which is the best way for building it.
    Cramming all the code in one class file is out of the question.
    I thought about making my own custom JFrame and add API functions like for it so different GUI elements can be accessed.
    Each component which will be manipulated will be in its own class file with the constructor accepting a reference to my custom JFrame object which it is contained in.
    Any suggestions on the matter would be of great help since I've never done extensive Swing programming before.
    P.S.
    The application makes extensive use of RMI.
    What considerations should I take into account (except using SwingUtilities.invokeLater()) ?

    Hi,
    I have replied on this subject somewhere else today but what I do is have one simple entry point where I just instanciate a JFrame.
    On that frame I have a main JPanel. On that panel I add new objects like JPanels, tabs etc.
    I keep each new panel in a separate source as it is easier when the application grows, and it will. That also means that several programers can work with the same application without interfearing each other.
    I hope you understand what I mean the the thing is to split up the code into several sources.
    It may not suit everyone but I found this approach to be the best for me.
    Klint

  • Why is it recommended to have a separate PeopleSoft ID for starting Application Server in PeopleSoft

    HI,
    Why is it recommended to have a separate PeopleSoft ID for starting Application Server in PeopleSoft

    Hello:
    You can put the JS function into the HTML Header section of the Page defintion.
    <script>
    function doDelete(id) {
    $x('P14_DEL_ID').value=id;
    doSubmit('DELETE');
    </script>Define a new page process whose process point is 'On Submit: After Computations and Validations'. For the Process Source specify
    Delete from <table> where key_column=:p14_del_id;Under Conditional Processing select 'Request=Expression 1'. For Expression 1 specify 'DELETE'
    Hope this helps.
    Varad

  • Previous computer crashed without my Adobe CS3 Design Standard for Macintosh application being uninstalled, I'm having issues with the CS3 on my new Macintosh laptop. Please help!

    Since the previous computer crashed without my Adobe CS3 Design Standard for Macintosh applications being uninstalled, I'm having issues with the CS3 on my new Macintosh laptop. Please help, I've tried using the online "contact us" with no success, unable to get in contact with a tech support agent that can assist me.

    CS3 is too old to run on a new Macintosh laptop, sorry. You'll have to purchase CS6 or a Creative Cloud subscription.

  • Recommendations for FM Build

    Hi All,
    What are the recommendations for creating custom function modules? e.g. no more changing parameters, attribute maintenance etc.
    this is for optimization and standardization purposes.
    thanks.
    Tyken

    Hmmm... I'm an IT Director. I have a plaque on the wall in my office that says, "Users Lie! Some times they don't even mean to. Verify everything they tell you."
    In that spirit, I'll say that I thought I had 14v electrical system in my Jeep. I seem to remeber being told that. It has large battery, about 1.5 times the size of a standard car battery. My vehicle is 2004 Jeep Grande Cherokee limited. I'll try and verify my facts.

  • Recommendations for Website Building app/software?

    Hi
    I have a MACBook Pro and would like to build my own website (not as a professional).  I am a newbie at web development and I am looking for an EASY to use (meaning WYSIWYG) software app that will let me build and update my site.
    Does anyone have a recommendation for me?

    you could try this one
    http://blocsapp.com
    i really like it, pretty simple
    it is like half pro half amateur in my opinion.

  • Windows 2012 server security checklist for corporate company standard/recommended check-list

    Hello All,
    Good Day.
    I am looking for Windows 2012 server security checklist (standard hardening
    settings), would you kindly assist me by providing Wintel 2012 standard/recommended check-list ASAP?
    Thanks in advance.

    Hi,
    The Microsoft Security Compliance Manager 3.0 tool is designed to provide you with an end-to-end solution to help you plan, deploy, and monitor security baselines for computers running Windows Server 2012 in your environment.
    For more detailed information, please refer to the articles below:
    Windows Server 2012 Security Baseline
    http://technet.microsoft.com/en-us/library/jj898542.aspx
    Security Hardening Tips and Recommendations
    http://social.technet.microsoft.com/wiki/contents/articles/18931.security-hardening-tips-and-recommendations.aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Documentation for Blueprint Application Builder

    Hi All
    Can anyone send me the documentation for blueprint application builder and CRM designer. That would be of great help.
    [email protected]
    thanks and regards
    Paul.

    Have a look at the weblog
    /people/vijaya.kumar/blog/2005/06/10/people-centric-user-interface-pcui--getting-started
    Hope this is what you are looking for.
    regards
    johnson zavier

  • Build Automation for ADF Application using Jenkins CI

    Hi
    I am trying to implement automated builds( creating .ear file) and deployments for ADF Applications using Jenkins. I am using Ant Build Scritps using OJDEPLOY on Jenkins.
    but the build scripts does not create .ear file at the path mention in the outputfile parameter.
    Please help. Thanks,
    Below is my build script and ojdeploy status log.
    <?xml version="1.0" encoding="windows-1252" ?>
    <!--Ant buildfile generated by Oracle JDeveloper-->
    <!--Generated Jul 10, 2013 12:26:00 PM-->
    <project name="OrganisationApproval" default="all" basedir=".">
      <property file="build.properties"/>
      <path id="library.SOA.Designtime"/>
      <path id="library.SOA.Runtime"/>
      <path id="library.BPEL.Runtime"/>
      <path id="library.Mediator.Runtime"/>
      <path id="library.MDS.Runtime">
        <pathelement location="{oracle.middleware}/oracle_common/modules/oracle.mds_11.1.1/mdsrt.jar"/>
      </path>
      <path id="library.BC4J.Service.Runtime">
        <pathelement location="{oracle.middleware}/oracle_common/modules/oracle.adf.model_11.1.1/adfbcsvc.jar"/>
        <pathelement location="{oracle.middleware}/oracle_common/modules/oracle.adf.model_11.1.1/adfbcsvc-share.jar"/>
        <pathelement location="{oracle.middleware}/oracle_common/modules/commonj.sdo_2.1.0.jar"/>
        <pathelement location="{oracle.middleware}/modules/org.eclipse.persistence_1.1.0.0_2-1.jar"/>
        <pathelement location="{oracle.middleware}/oracle_common/modules/oracle.webservices_11.1.1/wsclient.jar"/>
        <pathelement location="{oracle.middleware}/oracle_common/modules/oracle.web-common_11.1.1.jar"/>
      </path>
      <path id="library.TopLink">
        <pathelement location="{oracle.middleware}/modules/com.oracle.toplink_1.0.0.0_11-1-1-5-0.jar"/>
        <pathelement location="{oracle.middleware}/modules/org.eclipse.persistence_1.1.0.0_2-1.jar"/>
        <pathelement location="{oracle.middleware}/modules/com.bea.core.antlr.runtime_2.7.7.jar"/>
        <pathelement location="{oracle.middleware}/modules/javax.persistence_1.0.0.0_2-0-0.jar"/>
      </path>
      <path id="library.Oracle.Rules"/>
      <path id="classpath">
        <path refid="library.SOA.Designtime"/>
        <path refid="library.SOA.Runtime"/>
        <path refid="library.BPEL.Runtime"/>
        <path refid="library.Mediator.Runtime"/>
        <path refid="library.MDS.Runtime"/>
        <path refid="library.BC4J.Service.Runtime"/>
        <path refid="library.TopLink"/>
        <path refid="library.Oracle.Rules"/>
      </path>
      <target name="init">
        <tstamp/>
        <mkdir dir="${output.dir}"/>
      </target>
      <target name="all" description="Build the project"
              depends="deploy,compile,copy"/>
      <target name="clean" description="Clean the project">
        <delete includeemptydirs="true" quiet="true">
          <fileset dir="${output.dir}" includes="**/*"/>
        </delete>
      </target>
      <target name="deploy" description="Deploy JDeveloper profiles"
              depends="init,compile">
        <taskdef name="ojdeploy"
                 classname="oracle.jdeveloper.deploy.ant.OJDeployAntTask"
                 uri="oraclelib:OJDeployAntTask"
                 classpath="${oracle.jdeveloper.ant.library}"/>
        <ora:ojdeploy xmlns:ora="oraclelib:OJDeployAntTask"
                      executable="${oracle.jdeveloper.ojdeploy.path}"
                      ora:buildscript="${oracle.jdeveloper.deploy.dir}/ojdeploy-build.xml"
                      ora:statuslog="${oracle.jdeveloper.deploy.dir}/ojdeploy-statuslog.xml">
          <ora:deploy>
            <ora:parameter name="workspace"
                           value="${oracle.jdeveloper.workspace.path}"/>
            <ora:parameter name="project"
                           value="${oracle.jdeveloper.project.name}"/>
            <ora:parameter name="profile"
                           value="${oracle.jdeveloper.deploy.profile.name}"/>
            <ora:parameter name="nocompile" value="true"/>
            <ora:parameter name="outputfile"
                           value="${oracle.jdeveloper.deploy.outputfile}"/>
          </ora:deploy>
        </ora:ojdeploy>
      </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="UTF-8" source="1.6"
               target="1.6">
          <src path="/u02/jenkins/Portal/OrganisationApprovalApp/Dev/SCA-INF/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="**/*.exm"/>
          <include name="**/*.xml"/>
        </patternset>
        <copy todir="${output.dir}">
          <fileset dir="/u02/jenkins/Portal/OrganisationApprovalApp/Dev/SCA-INF/src">
            <patternset refid="copy.patterns"/>
          </fileset>
          <fileset dir="/u02/jenkins/Portal/OrganisationApprovalApp/Dev/SCA-INF/src">
            <patternset refid="copy.patterns"/>
          </fileset>
        </copy>
      </target>
    </project>
    =====================================================================================
    <?xml version="1.0"?>
    <ojdeploy-log>
      <exception msg="null">
      <![CDATA[
      java.lang.NullPointerException
      at oracle.jdevimpl.deploy.DeployScriptEngine.createExpandedDeployTasks(DeployScriptEngine.java:180)
      at oracle.jdevimpl.deploy.DeployScriptEngine.access$000(DeployScriptEngine.java:54)
      at oracle.jdevimpl.deploy.DeployScriptEngine$TaskIterator.hasNext(DeployScriptEngine.java:533)
      at oracle.jdevimpl.deploy.DeployRunner.runCommand(DeployRunner.java:58)
      at oracle.ideimpl.Main.start(Main.java:192)
      at oracle.ideimpl.Main.main(Main.java:146)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at oracle.ide.boot.PCLMain.callMain(PCLMain.java:62)
      at oracle.ide.boot.PCLMain.main(PCLMain.java:54)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at oracle.classloader.util.MainClass.invoke(MainClass.java:128)
      at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain(IdeLauncher.java:189)
      at oracle.ide.boot.IdeLauncher.launchImpl(IdeLauncher.java:89)
      at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:65)
      at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:54)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at oracle.ide.boot.Launcher.invokeMain(Launcher.java:713)
      at oracle.ide.boot.Launcher.launchImpl(Launcher.java:115)
      at oracle.ide.boot.Launcher.launch(Launcher.java:68)
      at oracle.ide.boot.Launcher.main(Launcher.java:57)
      ]]>
      </exception>
      <summary>
        <start-time>2013-07-10 14:47:29 SAST</start-time>
        <end-time>2013-07-10 14:47:29 SAST</end-time>
        <total-tasks>0</total-tasks>
        <failures>0</failures>
        <status exitcode="1">FAILED</status>
      </summary>
    </ojdeploy-log>

    Have you tried to call ojdeploy directly instead of using the ojdeploy task?
    I remember that the ant task has had some bugs. You can use the exec task and execute ojdeploy directly. Then you don't even need to include the path elements as you use the jdev project which includes all the information.
    ojdeploy.executable=path_to_your_jdev_installation/jdev/bin/ojdeploy.exe
        <target name="ojdeploy" description="execute ojdeploy">
                <exec executable="${ojdeploy.executable}" dir="."
                    output="${log.filename}" failonerror="true">
                    <arg value="-buildfile"/>
                    <arg value="${build.filename}"/>
                </exec>
        </target>
    Timo

  • Problems installing Xcode for building iPhone applications

    Just got a mac mini today for building iphone applications. I'm new to macs.
    Downloaded the iPhone SDK. Installed it. But I saw there are a lot of
    packages. Do I need to install them all? I've installed the iPhone ones.
    When I launch Xcode I get the 'Welcome to Xcode 3.1', which just looks like
    a lot of tutorials. How do I run the Xcode application to build iPhone apps?
    Cheers,
    John.

    you just install XCode and it will install ALL packages, the packages that you see are to be installed one by one for expert users or users that want to have a the newest packages.
    Remember: Install the iPhone SDK 2.2
    you just go to menu and click File > New Project > iPhone and choose the type of project for the iPhone that you want to use, WebApp, UIApp, etc ...
    because you are new to the MAC world and probably never used Objective-C in your live, it is good to start somewhere first, buy a good book of the subject, start with the language (Objective-C) them learn about the framework (Cocoa Touch) and then read all about XCode.
    In the meanwhile you can check several websites to start knowing what you going to be able to do one day, here are some examples:
    - Writing your first iPhone application (payed movies, first for free)
    - iPhone Developer Central
    - Apps Amuck
    - iPhone SDK Articles
    remember that you will need to apply to the iPhone Developer Program in order to submit your SDK Apps to the Apple AppStore.
    Updated: You can find several movies on YouTube on how to start building apps to the iPhone, but the most seams to do a bad job cause they are screen casting the entire desktop rather the area that we need, so text will be unreadable on such dimensions.

Maybe you are looking for