Java developer guide

Hi,
in Documentation Library of Oracle DataBase Express Edizion (XE) there is a documentation "java developer guide part number b25320.01". There are other of the such "java developer guide b25320.01" for begining with Jdeveloper?
Sorry for my bad English...

Try our tutorials page:
http://www.oracle.com/technology/obe/obe1013jdev/index.htm
And the books on the ADF learning center:
http://www.oracle.com/technology/products/adf/learnadf.html

Similar Messages

  • Oracle Database Express Edition 2 Day Plus Java Developer Guide??

    I posted in the JDeveloper forum, as well as sending email via your feedback link found on the tutorial but I am a little disappointed by this:
    The Oracle® Database Express Edition 2 Day Plus Java Developer Guide has some errors in it.
    in Windows, I simply chose, start
    -> programs -> Oracle Database Express Edition -> Go To Database Home Page -> click documentation from the link -> and run the Oracle® Database Express Edition 2 Day Plus Java Developer Guide tutorial.
    the problem is there are mistake(s) in the tutorial, for example: section 4-19 is this:
    "The complete code for the method should now be as follows:
    public boolean authenticateUser(String userid, String password,
    HttpSession session) throws SQLException { "
    it needs to be this:
    public boolean authenticateUser(String jdbcURL, String userid, String password,
    HttpSession session) throws SQLException {
    Also:
    there is no mention that :
    the port and SID must also be passed in the
    ds.setURL(jdbcUrl) found in the authenticateUser() method, or an exception is thrown. This differs from value of the jdbcUrl string found in the getDBConnection() , which makes it hard to figure out
    The tutorial is great even if it doesn't work out of the box, but I am disappointed that errata or completed code for this project is not available, especially when you explicitely point to it via the steps mentioned above.
    Thanks,
    Patrick

    The tutorial seems to be using the old JDeveloper 10.1.2.
    If you are aiming to learn JDeveloper then just use the tutorials linked from the JDeveloper home page.
    http://www.oracle.com/technology/obe/obe1013jdev/index.htm

  • Newly released BOEXI31 Java Developer Guide available

    I've been slogging along with the OLD BOEXI3x Java Developer Guide documentation which incorrectly references various security and principal classes.
    However, I've just noticed this morning that a NEWER version of the DG is available at:
    http://help.sap.com/businessobject/product_guides/boexir31/en/boesdk_java_dg_12_en.zip
    which DOES reference the correct packages in the examples and scenarios.
    ...in case anyone shared my confusion.

    Thanks for posting!
    If you find any further doc bugs, please post in the forums, and I'll be able to forward the info.
    Sincerely,
    Ted Ueda

  • Endeca portlet/ component java developement guide

    i am new to endeca. i like to develope the endeca component or portlet, but i dont know how the component are working please any one gaive me the link for quick start to built my own component. what i need exactly is , whaen a user click url , how the page generate ,what are the classe the request pass through , simply i need lifecycle or architecture of component in endeca.

    There is a component SDK for Studio, which is covered in the Studio Administration and Customization Guide.
    Developing Custom Components

  • Error in Oracle 2 Day Plus Java Developer Guide for XE

    After creating the connection successfully I tried to follow the document. Section 2-4 includes some sample code (Example 2-1) to determine the JDBC Driver Version. After a straight copy/paste and compile the following error was printed in the log:
    "C:\Program Files\jDeveloper10g13\jdk\bin\javaw.exe" -ojvm -classpath "C:\Program Files\jDeveloper10g13\jdev\mywork\HRApp\View\classes;C:\Program Files\jDeveloper10g13\j2ee\home\lib\ojsp.jar;C:\Program Files\jDeveloper10g13\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\Program Files\jDeveloper10g13\j2ee\home\oc4j.jar;C:\Program Files\jDeveloper10g13\j2ee\home\lib\oc4j-internal.jar;C:\Program Files\jDeveloper10g13\j2ee\home\lib\servlet.jar;C:\Program Files\jDeveloper10g13\jdev\lib\ojc.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\ojdbc14dms.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\orai18n.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\ocrs12.jar;C:\Program Files\jDeveloper10g13\diagnostics\lib\ojdl.jar;C:\Program Files\jDeveloper10g13\lib\dms.jar" hr.JDBCVersion
    Exception in thread main
    java.sql.SQLException: Io exception: Invalid connection string format, a valid format is: "host:port:sid"
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:287)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:328)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:434)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:571)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:218)
         at hr.JDBCVersion.main(JDBCVersion.java:19)
    Process exited with exit code 1.
    Since I installed Oracle XE with all the standard defaults, I changed the line
    String jdbcUrl = "jdbc:oracle:thin:@localhost:1521/XE";
    to
    String jdbcUrl = "jdbc:oracle:thin:@localhost";
    which now produces the following error log:
    "C:\Program Files\jDeveloper10g13\jdk\bin\javaw.exe" -ojvm -classpath "C:\Program Files\jDeveloper10g13\jdev\mywork\HRApp\View\classes;C:\Program Files\jDeveloper10g13\j2ee\home\lib\ojsp.jar;C:\Program Files\jDeveloper10g13\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\Program Files\jDeveloper10g13\j2ee\home\oc4j.jar;C:\Program Files\jDeveloper10g13\j2ee\home\lib\oc4j-internal.jar;C:\Program Files\jDeveloper10g13\j2ee\home\lib\servlet.jar;C:\Program Files\jDeveloper10g13\jdev\lib\ojc.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\ojdbc14dms.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\orai18n.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\ocrs12.jar;C:\Program Files\jDeveloper10g13\diagnostics\lib\ojdl.jar;C:\Program Files\jDeveloper10g13\lib\dms.jar" hr.JDBCVersion
    Exception in thread main
    java.sql.SQLException: Io exception: SO Exception was generated
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:287)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:328)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:434)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:571)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:218)
         at hr.JDBCVersion.main(JDBCVersion.java:19)
    Process exited with exit code 1.
    How am I supposed to learn anything if the code examples are flawed? Please help me... this is driving me nuts.

    Can you provide the URL to the problematic instructions?
    The JDBC URL should probably be: jdbc:oracle:thin:@localhost:1521:XE
    And one more thing - your JDeveloper is installed in a directory that has a space in its name (Program Files) - this may cause problems so reinstall it in a new directory without a space in the path.

  • Where I can download the bundle of "Java Plug-in 1.4 Developer Guide"

    I want to download all the doc of "Java Plug-in 1.4 Developer Guide" on
    http://java.sun.com/j2se/1.4/docs/guide/plugin/developer_guide/contents.html

    You can download the whole JDK documentation or here: ftp://ftp.java.sun.com/docs/j2se1.4/developer_guide.pdf

  • An error on Java Web Start 1.4.2 Developer Guide

    I tried to deploy my application using Java Web Start. I used the script in the section "Creating the Web Page That Launches the Application" of the Java Web Start 1.4.2 Developer Guide (http://java.sun.com/j2se/1.4.2/docs/guide/jws/developersguide/contents.html). Nevertheless, it does not detect my JWS 1.4.2 installation. After I search thru the registry on my Windows 2000, I found that the COM object ID is not correct. The orginal VBScript to detect the installation of JWS 1.4.2:
    If Not(IsObject(CreateObject("JavaWebStart.isInstalled.3"))) Then
    javaws142Installed = 0
    Else
    javaws142Installed = 1
    End If
    should be:
    If Not(IsObject(CreateObject("JavaWebStart.isInstalled.1.4.2.0"))) Then
    javaws142Installed = 0
    Else
    javaws142Installed = 1
    End If
    Could JWS tech support or documentation team change this error on the website soon so other developers will not run into the same problem again?
    Thanks,
    A.A.

    Please submit a bug.
    I believe this is the only way to guarantee Sun will track this.

  • What url should be given to java developer to call wsdl deployed by XI?

    Hi gurus,
    I generate a web service by using integration directory, and in the wsdl file there is a parameter "location", which I think can be used by java developer to call the web service. However, they think the form of url should be http://.....?wsdl.
    So my question is: where can I get this form of url? Any help will be appreciated.

    Hi ,
    while generating the wsdl you should give an url in below format
    "http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel".
    Then u can download the wsdl file and give to ur java developer. this file will be ending with.wsdl and file will contain the endpoint url, where the actual service is.
    Again if this is not working and if they really want to download, then u should create UUDI registry in ur server and u shoul publish ur service in that registry. from ther developer can directly download the webservice.
    how to configure and publish, u can search in SDN with  below topic's
    "WebAS : A step by step guide for Configuring UDDI registry on Local Server"
    "XI : How To publish WSDL generated from XI to UDDI"
    Regards
    Pradeep P N

  • READ THIS FIRST: Check out the Developer Guide, other forums and Wikis

    The Portal Content Development forum is one of the most-active forums on SDN, and many, many experts read it and can answer your questions.
    Before posting, please check out the following sources of information:<ul><li><b><a href=http://help.sap.com/saphelp_nw04/helpdata/en/19/4554426dd13555e10000000a1550b0/frameset.htm target="_blank">Portal Developer Guide</a> (2004) </b>and<b> <a href=http://help.sap.com/saphelp_nw2004s/helpdata/en/19/4554426dd13555e10000000a1550b0/frameset.htm target="_blank">Running an Enterprise Portal (developer guide)</a> (2004s):</b> This is THE source for information on portal APIs. All of the public APIs are documented here. </li>
    <li><b><a href=https://wiki.sdn.sap.com:/wiki/display/EP>Portal Wiki</a>:</b> See below.</li>
    <li><b>This Forum:</b> Someone probably has already asked your question. Before adding another post, check if you can find a similar post that has sufficient information to help you.   </li></ul>
    <h3>Other forums</h3>
    <li>Employee self service questions: https://forums.sdn.sap.com/forum.jspa?forumID=267</li>
    <li>Visual Composer questions: https://forums.sdn.sap.com/forum.jspa?forumID=58</li>
    <li>Web Dynpro for Java questions: https://forums.sdn.sap.com/forum.jspa?forumID=52</li>
    <h3>More on Wikis</h3>The recently announced Wiki functions of SDN will, over time, be a great start for getting information about portal development and implementation...
    The main wiki portal page is <a href="https://wiki.sdn.sap.com:/wiki/display/HOME/Portal">here</a>.
    Please read this before asking a question in the forum - believe me, there are not many new questions being asked!
    There is quite a bit of repetition in forum questions, and maybe if people are directed to the wiki page as a first step, it may make it easier to watch this forum.
    The Wiki concept is all about sharing within a community, so feel free to modify the content - more accurately 'our' content - and maybe start some other pages, such as one about modifying logon pages - a fairly consistent topic in this forum
    Edited by: Michael Nicholls on Feb 18, 2009 9:48 AM
    Edited by: Michael Nicholls on Feb 18, 2009 9:49 AM

    Dude thank-you for your wonder detailed knowldge, I have descovered that lets say xp 1700 in a ultra 2 can only handle at the most 143fsb mult at 12.
    Given the settings" irq's are a major",part of directing traffic and power? example:
    Sound blaster Live , uses two irq's most common at"Auto" is, irq 10, or 5, and Sound blaster 16 emulation usually takes irq 5,. I have found that the sound card in slot3 works great , but to do this I had to change the Bio's and assign slot 3 irq 7 . and make sure printer port has share irq enabled
    Problems that accure with bad traffic are like this. Start a dedicated server. minimize than start your game?":censored:  no sound what could be wrong"? Shoot another problem Connection problem?. The computer nerd is getting trouble over the ordeal. ANSWER! IRQ can fix the problem, Study the irq and make changes as you go. "what would it be like with no stop signs,,,that is the same as a irq. with the same knowldge this topic brings IRQ need to be clearly understood.
    I can honestly say my system is error free and running like a dream.
    xp 2500 barton 333
    creative sound 5.1gamers.
    512 mb kingston ram 400 mhz
    boadband either onboard.
    MSI 5700 128 mb ddr
    Setting are:
    163 fsb
    mult of 11
    ddr 333
    video memory clock down to 450mhz
    3d clock to 390mhz
    The delta is a smooth running board also I want to mention to the person with crackling sounds, change the irq like I did, that fix the problem and the power is totaly too good to be true.

  • Error Deploying Sample Portal from Development Guide

    I am going through creating a New Portal from WebLogic Portal 7 Development
    Guide and I am running into the following problem.
    After completing Step 2: Create the New Portal, when I try to Hot Deploy the
    application, I get the following error.
    Hot deploy failed with the following message:
    Unable to add module: NewPortalWebApp to application descriptor for:
    portalApp.
    The log has the following information..
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    portlets\Portlet1.portlet to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\tools.wf to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\webflow-extensions.wfx to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\user_account.wf to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\portal.wf to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\security.wf to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\NewPortal.portal to sync list.
    Attempting sync...
    Sync complete.
    Searching for portalApp application descriptor...
    Found it.
    Error - please check log for details.

    That's great, Mike, you're welcome. I'm glad it's working for you. Thanks for letting me know.
    -Scott
    Mike Friesen wrote:
    I'm sorry you were right.. I tried it and everything works... thanks..
    Mike
    "Scott Ellis" <[email protected]> wrote in message
    news:[email protected]...
    Hi Mike,
    I hear what you are saying and I believe you. But the error you describedis the known issue related to Internet access
    (down to the exact line numbers in the stack trace). Is it possible yourconnection was down last time you attempted
    hot-deploy?
    If you are sure your Internet connection is up, I would recommend tryinghot-deploy again. If it still does not work,
    something very strange is going on. At that point I would recommendtrying the workaround anyway or escalating the issue
    to BEA Support.
    Now my curiosity is piqued so I hope you'll let me know either way.
    Best Regards,
    Scott Ellis
    BEA Systems
    Mike Friesen wrote:
    yes..
    "Scott Ellis" <[email protected]> wrote in message
    news:[email protected]...
    Can you please try something for me? Paste the following URL into abrowser:
    http://java.sun.com/dtd/application_1_3.dtd
    Does it come up?
    Thanks,
    Scott
    Mike Friesen wrote:
    Actually, my computer does have internet access, so I don't think that
    is
    the problem.
    Mike
    "Scott Ellis" <[email protected]> wrote in message
    news:[email protected]...
    Hi Mike,
    I would bet that you are working on a machine that doesn't have
    Internet
    access, correct?
    The problem is that the EBCC is trying and failing to access the J2EEapplication descriptor
    dtd from Sun's website.
    If you can't get Internet access, here is the workaround:
    - save the attached file to your harddrive (just save it to c:\)
    - edit the application.xml file for your project as follows:
    - first copy the entire DOCTYPE declaration and save it somewhere
    in
    a
    separate text file (in case want to revert back to it later)
    - edit the DOCTYPE declaration so that it looks like this:
    <!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EEApplication 1.3//EN' 'file:///application_1_3.dtd'>
    ( notice that the java.sun.com web address is replaced with the URI
    to
    the file on your harddrive)
    - save your changes and hotdeploy will work with or without Internetaccess
    Thanks,
    Scott Ellis
    BEA Systems
    Mike Friesen wrote:
    I am going through creating a New Portal from WebLogic Portal 7
    Development
    Guide and I am running into the following problem.
    After completing Step 2: Create the New Portal, when I try to Hot
    Deploy
    the
    application, I get the following error.
    Hot deploy failed with the following message:
    Unable to add module: NewPortalWebApp to application descriptor for:
    portalApp.
    The log has the following information..
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    portlets\Portlet1.portlet to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\tools.wf to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\webflow-extensions.wfx to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\user_account.wf to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\portal.wf to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\security.wf to sync list.
    Adding file:
    C:\bea\user_projects\myNewdomain\beaApps\portalApp-project\application-sync\
    webapps\PortalWebApp\NewPortal.portal to sync list.
    Attempting sync...
    Sync complete.
    Searching for portalApp application descriptor...
    Found it.
    Error - please check log for details.
    <!--
    Copyright (c) 2000 Sun Microsystems, Inc.,
    901 San Antonio Road,
    Palo Alto, California 94303, U.S.A.
    All rights reserved.
    Sun Microsystems, Inc. has intellectual property rights relating to
    technology embodied in the product that is described in this document.
    In particular, and without limitation, these intellectual property
    rights may include one or more of the U.S. patents listed at
    http://www.sun.com/patents and one or more additional patents or
    pending patent applications in the U.S. and in other countries.
    This document and the product to which it pertains are distributed
    under licenses restricting their use, copying, distribution, and
    decompilation. This document may be reproduced and distributed but
    may
    not be changed without prior written authorization of Sun and its
    licensors, if any.
    Third-party software, including font technology, is copyrighted and
    licensed from Sun suppliers.
    Sun, Sun Microsystems, the Sun logo, Java, JavaServer Pages, Java
    Naming and Directory Interface, JDBC, JDK, JavaMail and and
    Enterprise JavaBeans are trademarks or registered trademarks of Sun
    Microsystems, Inc. in the U.S. and other countries.
    Federal Acquisitions: Commercial Software - Government Users Subjectto
    Standard License Terms and Conditions.
    DOCUMENTATION IS PROVIDED "AS IS" AND ALL EXPRESS OR IMPLIED
    CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED
    WARRANTY OF MERCHANTABILITY, FITNESS FOR FOR A PARTICULAR PURPOSE OR
    NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH
    DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.
    Copyright (c) 2000 Sun Microsystems, Inc.,
    901 San Antonio Road,
    Palo Alto, California 94303, E'tats-Unis.
    Tous droits re'serve's.
    Sun Microsystems, Inc. a les droits de proprie'te' intellectuels
    relatants a` la technologie incorpore'e dans le produit qui est
    de'crit
    dans ce document. En particulier, et sans la limitation, ces droits de
    proprie'te' intellectuels peuvent inclure un ou plus des brevets
    ame'ricains e'nume're's a` http://www.sun.com/patents et un ou les
    brevets plus supple'mentaires ou les applications de brevet en attente
    dans les E'tats-Unis et dans les autres pays.
    Ce produit ou document est prote'ge' par un copyright et distribue'
    avec des licences qui en restreignent l'utilisation, la copie, la
    distribution, et la de'compilation. Ce documention associe n peut
    e^tre reproduite et distribuer, par quelque moyen que ce soit, sans
    l'autorisation pre'alable et e'crite de Sun et de ses bailleurs de
    licence, le cas e'che'ant.
    Le logiciel de'tenu par des tiers, et qui comprend la technologie
    relative aux polices de caracte`res, est prote'ge' par un copyright et
    licencie' par des fournisseurs de Sun.
    Sun, Sun Microsystems, le logo Sun, Java, JavaServer Pages, Java
    Naming and Directory Interface, JDBC, JDK, JavaMail et and
    Enterprise JavaBeans sont des marques de fabrique ou des marques
    de'pose'es de Sun Microsystems, Inc. aux E'tats-Unis et dans d'autres
    pays.
    LA DOCUMENTATION EST FOURNIE "EN L'E'TAT" ET TOUTES AUTRES CONDITIONS,
    DECLARATIONS ET GARANTIES EXPRESSES OU TACITES SONT FORMELLEMENT
    EXCLUES, DANS LA MESURE AUTORISEE PAR LA LOI APPLICABLE, Y COMPRIS
    NOTAMMENT TOUTE GARANTIE IMPLICITE RELATIVE A LA QUALITE MARCHANDE, A
    L'APTITUDE A UNE UTILISATION PARTICULIERE OU A L'ABSENCE DE
    CONTREFAC,ON.
    -->
    <!--
    This is the XML DTD for the J2EE 1.3 application deployment
    descriptor. All J2EE 1.3 application deployment descriptors
    must include a DOCTYPE of the following form:
    <!DOCTYPE application PUBLIC
    "-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN"
    "http://java.sun.com/dtd/application_1_3.dtd">
    -->
    <!--
    The following conventions apply to all J2EE deployment descriptor
    elements unless indicated otherwise.
    - In elements that contain PCDATA, leading and trailing whitespace
    in the data may be ignored.
    - In elements whose value is an "enumerated type", the value is
    case sensitive.
    - In elements that specify a pathname to a file within the same
    JAR file, relative filenames (i.e., those not starting with "/")
    are considered relative to the root of the JAR file's namespace.
    Absolute filenames (i.e., those starting with "/") also specify
    names in the root of the JAR file's namespace. In general, relative
    names are preferred. The exception is .war files where absolute
    names are preferred for consistency with the servlet API.
    -->
    <!--
    The application element is the root element of a J2EE application
    deployment descriptor.
    -->
    <!ELEMENT application (icon?, display-name, description?, module+,
    security-role*)>
    <!--
    The alt-dd element specifies an optional URI to the post-assembly
    version of the deployment descriptor file for a particular J2EEmodule.
    The URI must specify the full pathname of the deployment descriptor
    file relative to the application's root directory. If alt-dd is not
    specified, the deployer must read the deployment descriptor from the
    default location and file name required by the respective component
    specification.
    Used in: module
    -->
    <!ELEMENT alt-dd (#PCDATA)>
    <!--
    The connector element specifies the URI of a resource adapter archive
    file, relative to the top level of the application package.
    Used in: module
    -->
    <!ELEMENT connector (#PCDATA)>
    <!--
    The context-root element specifies the context root of a web
    application.
    Used in: web
    -->
    <!ELEMENT context-root (#PCDATA)>
    <!--
    The description element is used to provide text describing the parent
    element. The description element should include any information that
    the application ear file producer wants to provide to the consumer of
    the application ear file (i.e., to the Deployer). Typically, the tools
    used by the application ear file consumer will display the description
    when processing the parent element that contains the description.
    Used in: application, security-role
    -->
    <!ELEMENT description (#PCDATA)>
    <!--
    The display-name element contains a short name that is intended to be
    displayed by tools. The display name need not be unique.
    Used in: application
    Example:
    <display-name>Employee Self Service</display-name>
    -->
    <!ELEMENT display-name (#PCDATA)>
    <!--
    The ejb element specifies the URI of an ejb-jar, relative to the top
    level of the application package.
    Used in: module
    -->
    <!ELEMENT ejb (#PCDATA)>
    <!--
    The icon element contains small-icon and large-icon elements that
    specify the file names for small and a large GIF or JPEG icon images
    used to represent the parent element in a GUI tool.
    Used in: application
    -->
    <!ELEMENT icon (small-icon?, large-icon?)>
    <!--
    The java element specifies the URI of a java application clientmodule,
    relative to the top level of the application package.
    Used in: module
    -->
    <!ELEMENT java (#PCDATA)>
    <!--
    The large-icon element contains the name of a file
    containing a large (32 x 32) icon image. The file
    name is a relative path within the application's
    ear file.
    The image may be either in the JPEG or GIF format.
    The icon can be used by tools.
    Used in: icon
    Example:
    <large-icon>employee-service-icon32x32.jpg</large-icon>
    -->
    <!ELEMENT large-icon (#PCDATA)>
    <!--
    The module element represents a single J2EE module and contains a
    connector, ejb, java, or web element, which indicates the module type
    and contains a path to the module file, and an optional alt-ddelement,
    which specifies an optional URI to the post-assembly version of the
    deployment descriptor.
    The application deployment descriptor must have one module element for
    each J2EE module in the application package.
    Used in: application
    -->
    <!ELEMENT module ((connector | ejb | java | web), alt-dd?)>
    <!--
    The role-name element contains the name of a security role.
    The name must conform to the lexical rules for an NMTOKEN.
    Used in: security-role
    -->
    <!ELEMENT role-name (#PCDATA)>
    <!--
    The security-role element contains the definition of a security
    role. The definition consists of an optional description of the
    security role, and the security role name.
    Used in: application
    Example:
    <security-role>
    <description>
    This role includes all employees who are authorized
    to access the employee service application.
    </description>
    <role-name>employee</role-name>
    </security-role>
    -->
    <!ELEMENT security-role (description?, role-name)>
    <!--
    The small-icon element contains the name of a file
    containing a small (16 x 16) icon image. The file
    name is a relative path within the application's
    ear file.
    The image may be either in the JPEG or GIF format.
    The icon can be used by tools.
    Used in: icon
    Example:
    <small-icon>employee-service-icon16x16.jpg</small-icon>
    -->
    <!ELEMENT small-icon (#PCDATA)>
    <!--
    The web element contains the web-uri and context-root of a web
    application module.
    Used in: module
    -->
    <!ELEMENT web (web-uri, context-root)>
    <!--
    The web-uri element specifies the URI of a web application file,
    relative to the top level of the application package.
    Used in: web
    -->
    <!ELEMENT web-uri (#PCDATA)>
    <!--
    The ID mechanism is to allow tools that produce additional deployment
    information (i.e., information beyond the standard deployment
    descriptor information) to store the non-standard information in a
    separate file, and easily refer from these tool-specific files to the
    information in the standard deployment descriptor.
    Tools are not allowed to add the non-standard information into the
    standard deployment descriptor.
    -->
    <!ATTLIST alt-dd id ID #IMPLIED>
    <!ATTLIST application id ID #IMPLIED>
    <!ATTLIST connector id ID #IMPLIED>
    <!ATTLIST context-root id ID #IMPLIED>
    <!ATTLIST description id ID #IMPLIED>
    <!ATTLIST display-name id ID #IMPLIED>
    <!ATTLIST ejb id ID #IMPLIED>
    <!ATTLIST icon id ID #IMPLIED>
    <!ATTLIST java id ID #IMPLIED>
    <!ATTLIST large-icon id ID #IMPLIED>
    <!ATTLIST module id ID #IMPLIED>
    <!ATTLIST role-name id ID #IMPLIED>
    <!ATTLIST security-role id ID #IMPLIED>
    <!ATTLIST small-icon id ID #IMPLIED>
    <!ATTLIST web id ID #IMPLIED>
    <!ATTLIST web-uri id ID #IMPLIED>

  • SAP ISA Java development

    Hi ,
    I m new to SAP ISA java development. I m experienced in Java and Java  wedynpro development. I m even experienced on struts frame work.
    I would like to setup development environment for ISA . I have read SAP E-Commerce 5.0 Examples and Tutorials, what i don't understand is how to get sample b2b application and where i can the application?
    Please let me know or provide me with some application of ISA where i can learn basics.
    Regards,
    Ravi.

    You can get the SAP CRM java application from SAP CRM  installation media,
    or download from SAP service marketplace.
    I think you can find the info in the Development and Extension Guide
    The components
    x SAP-SHRWEB.sca
    x SAP-SHRAPP.sca
    x  SAP-CRMWEB.sca and
    x SAP-CRMAPP.sca
    are designed to be modified and extended in the NWDI. They contain the web files for the E-Commerce
    Applications, the IPC Web Applications and the Workforce Management Applications.
    For E-Commerce for mySAP ERP
    x SAP-SHRWEB.sca
    x SAP-SHRAPP.sca
    are designed to be modified.
    If you plan to extend database tables you can modify the component
    x SAP-CRMDIC.sca,
    in the NWDI as well.
    The components
    x sap.com~STRUTS.sca
    x sap.com~SAP-IPCMSA.sca
    x sap.com~SAP-CRMJAV.sca
    x sap.com~SAP-SHRJAV.sca
    x TEALEAF.sca
    are designed not to be extended or modified in the NWDI. They are required for compiling and building the
    applications.
    After you delpoy  the SCAs to AS Java, and configure it with XCM, you can login the web shop.

  • Oracle Java Developer Document

    Hi,Where can i find document files about Java Developer and related tools as pdf files such as User's Guide and so on, in this site or another sites..thanks

    Hi,
    You will find a user's guide for Oracle9i JDeveloper here
    There are also some more documents in PDF format available here
    Hope this helps.
    Sujatha.

  • Looking for SAP CRM Internet Sales (ISA) Java Extension Guides

    HI, SDN Fellow.
    I am looking for some SAP CRM Internet Sales (ISA) Java Extension Guide and ISA Java API Documentation (for CRM 5.0).
    Also, I need some customed development documentation on ISA Java application (for CRM 5.0).
    Can anyone point me to some online resources or send the documentations to the following email address: [email protected]?
    Thanks for help.
    Kent

    Hi Kent,
    You can download the SAP E-Commerce 5.0 - Development and Extension Guide
    and SAP E-Commerce 5.0 - Examples and Tutorials (Dev./Ext.)  from SAP Market place.
    The quick link is service.sap.com/crm-inst -> CRM core and Standalone Components.
    Regards,
    Prashil

  • How to start ODM Java developing?

    My prospects are wondering how to ODM Java developing fastly.
    Do we have some tutorial or sample that can help them?
    Regards,
    [email protected]

    We have following documentations for ODM Java API in the Database Documentation Library:
    Data Mining Application Developer's Guide: Refer to Chapter 6 and 7 that introduces the ODM Java API usage.
    Data Mining Java API Reference (Javadoc): Provides detailed documentation of the Oracle extensions for JDM API
    Following link provides list of documents available for Oracle Data Mining in the Dabase Documentation Library
    http://www.oracle.com/pls/db102/portal.portal_db?selected=6
    Standard JDM API Javadoc is hosted in OTN: http://www.oracle.com/technology/products/bi/odm/JSR-73/overview-summary.html
    To quick start using the Java API, point them to sample programs that we ship with the product. These sample programs are located at $ORACLE_HOME/rdbms/demo directory. Look for dm*.java for these demo programs. For convenience these demo programs are available to download from OTN: http://www.oracle.com/technology/products/bi/odm/samples/odm_sample_code_0805.zip
    If the customer is using JDeveloper, we have an extension that simplifies the setup required to start using the Java API. For more details refer to: http://www.oracle.com/technology/products/bi/odm/odm_jdev_extension.html
    Regards
    Sunil

  • ADF for developer guide sample 5-7 gives JBO-33001: error

    We are trying to take information from view object using code .
    j Dev 10.1.3.
    We are trying to make ADF for developer guide sample 5-7 work.
    first we create a JSF/ADFBC project.
    After than we create entity, view and application modeule object for emp table.
    Then in model project
    we create a class TestClient. Than past sample 5-7 code.
    it gives fallowing error.
    oracle.jbo.ConfigException: JBO-33001: configuration file in classpath /test/common/bc4j.xcfg can not be found.
    we add project content java content bc4j.xcfg files path.
    But it doesn't solve our problem.
    anything we tried not solve problem too.
    We are at the beginneing of a project and we stuck.
    Thanks for your help.
    All error trace
    C:\jdev103\jdk\bin\javaw.exe -ojvm -classpath
    Exception in thread main
    oracle.jbo.ConfigException: JBO-33001: Classpath içinde konfigürasyon dosyası /test/common/bc4j.xcfg bulunamıyor
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:367)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:284)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:539)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1494)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1472)
         at iski.view.TestClient.main(TestClient.java:14)
    Process exited with exit code 1.

    we tried faloowing theread.
    Steve, "Simple JSF Popup List of Values Page " does not work..
    But it doesn't solve our problem to..
    (Jdev 10.13 SU5)

Maybe you are looking for

  • Can my apple TV access an external harddrive

    I want to transfer all my music and movies to free up space on my Mac and Macbook or do I just wait for cloud?

  • REQUEST for ARMv6 or lower support !!!

    As there are many people using older version of andriod phone and the new Samsung Galaxy Y is being huge in countries like India, it's time to have Adobe AIR support running on it. I did by own research on friends around me who using Andriod phone an

  • Any 1 know how to set up e mail on da n97

    been trying for days gone through the wizard and it will not work at all can any 1 help me

  • How to select objects marked in the layer panel?

    Hello, this may be simple and trivial, but somehow I fail to express it nicely so that the search engines would find the answer for me... so here is my question. Imagine that you have several objects marked in the layers panel. (by "marked" I mean, I

  • Get files from PowerMac G3 to External Drive

    My uncle has an old G3 with a lot of photos and most of a book he has written. We need to get that information off the old G3 and onto an external drive. The G3 is running 8.5 and has two firewire ports, but when I connect my external LaCie Rugged dr