Book on Enterprise Business Application Development

Dear Sir,
I am looking for a good book on "Dveloping Enterprise Business Application using J2EE" . The book must present a complete life cycle of business application development including Analysis/Logical Design/Physical Design/Component Coding etc . Incase book covers a sample business application to explain the complete software application development life cycle then it can be very much usefull .
Kindly suggest me some good titles to suit the requirement.
Rgds
B Mittal

Don't cross-post:
http://forum.java.sun.com/thread.jsp?forum=54&thread=533586&start=15&range=15&hilite=false&q=
http://forum.java.sun.com/thread.jsp?thread=368825&forum=54&message=1559748
http://forum.java.sun.com/thread.jsp?thread=388131&forum=31&message=1672870
http://forum.java.sun.com/thread.jsp?thread=409039&forum=31&message=1795254

Similar Messages

  • J2EE Business Application Development Guide

    Dear Sir,
    I am looking for a suitable book which can explain complete approach and methodology for developing an Enterprise "Business Application (preferably either from Manufacturing or Banking sector)" using J2EE . The book should explain complete Business Application development life-cycle right from study,analysis,object oriented design and software coding .
    Kindly suggest me suitable book title for the same.
    Rgds
    B V Mittal

    Don't cross-post:
    http://forum.java.sun.com/thread.jsp?forum=54&thread=533586&start=15&range=15&hilite=false&q=
    http://forum.java.sun.com/thread.jsp?thread=368825&forum=54&message=1559748
    http://forum.java.sun.com/thread.jsp?thread=388131&forum=31&message=1672870
    http://forum.java.sun.com/thread.jsp?thread=409039&forum=31&message=1795254

  • Book on "Enterprise Application Development" .

    I am looking for a Java book on "Enterprise Application Development" . The book must detail using a sample business application complete software development life cycle i.e Analysis , Design, Development and Implementation . Kindly suggest me some good suitable titles .
    Rgds
    B V Mittal

    Don't cross-post:
    http://forum.java.sun.com/thread.jsp?forum=54&thread=533586&start=15&range=15&hilite=false&q=
    http://forum.java.sun.com/thread.jsp?thread=368825&forum=54&message=1559748
    http://forum.java.sun.com/thread.jsp?thread=388131&forum=31&message=1672870
    http://forum.java.sun.com/thread.jsp?thread=409039&forum=31&message=1795254

  • Regarding Oracle ADF Enterprise Application Development - Made Simple book

    Hi guys,
    I am trying to do Sten Vesterli's Oracle ADF Enterprise Application Development - Made Simple
    book. But I am stuck setting up OTPC. When I am trying to run "tpcinstaller.jar" and give my database connection information I am given a TPC-90019 error.
    The log file says it is a "ORA-01882: timezone region not found" error.
    My timezone is 'Asia/Calcutta'.
    This is what tpcinstaller log file contains,
    -------------------------------------------------------------------------------------log_file
    oracle.alminternal.version.Version: file:/C:/install/tpcinstaller.jar!/META-INF/version.xml
    11.1.1.4.37.59.23
    Launched from jar:file:/C:/install/tpcinstaller.jar!/oracle/alminternal/installer/Installer.class
    Found installer jar file /C:/install/tpcinstaller.jar
    Installer jar file name: /C:/install/tpcinstaller.jar
    Created temporary directory: tpctemp
    Execute command[tpctemp]: [D:\Oracle\Middleware\jdk160_21\bin\jar.exe, -xf, /C:/install/tpcinstaller.jar, lib]
    Extracting files ...
    Launching installer wizard, it may take a minute or so, please wait ...
    Execute command[tpctemp\lib]: [D:\Oracle\Middleware\jdk160_21\bin\java.exe, -classpath, annotations.jar;commons-io-1.2.jar;dms.jar;forms-1.0.6.jar;ideimpl.jar;idert.jar;javatools-nodeps.jar;javatools.jar;javax-ide.jar;javax.persistence_1.0.0.0_2-0-0.jar;jewt4.jar;oicons.jar;ojdbc6dms.jar;ojdl.jar;ojmisc.jar;oracle.ide.jar;oracle.ide.webbrowser.jar;oracle.ide.webupdate.jar;org.eclipse.persistence_1.0.0.0_2-1.jar;share.jar;TimingFramework.jar;uic.jar;xercesImpl.jar;xmlparserv2.jar;/C:/install/tpcinstaller.jar, oracle.alminternal.installer.Installer, -W]
    Temporary directory: connector created
    C:\install\tpctemp\lib\otpc created
    Jan 5, 2013 11:38:33 PM oracle.alminternal.installer.ideimpl.webbrowser.ProxyAddin loadProxyNative
    WARNING: Unable to default HTTP proxy: Native support is not available.
    :::settingsInitialized = false
    jdbc.url = jdbc:oracle:thin:@localhost:1521:xe
    jdbc.user = BOOK
    jdbc.password = BOOK
    SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-01882: timezone region not found
    -------------------------------------------------------------------------------------log_file
    Regards !
    Sameera
    Edited by: samme4life on Jan 5, 2013 9:10 PM

    I have the same problem, when I delete row and after that I use refresh button in internet explorer. What I do is I drag and drop button "removeEntity" and edit it in backing beans adding new bindigs that commit changes and referesh page. Code:
    public String commandButton2_action1() {
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding =
    bindings.getOperationBinding("removeEntity");
    Object result = operationBinding.execute();
    if (!operationBinding.getErrors().isEmpty()) {
    return null;
    OperationBinding commit1 = bindings.getOperationBinding("Commit");
    commit1.execute();
    OperationBinding requery = bindings.getOperationBinding("findAllRezerwacja1");
    requery.execute();
    return null;
    In page definition I added "Commit" action and code with methodAction is:
    <methodAction id="removeEntity" InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" MethodName="removeEntity"
    RequiresUpdateModel="true" Action="999">
    <NamedData NDName="entity"
    NDValue="${bindings.findAllRezerwacja2.currentRow.dataProvider}"
    NDType="java.lang.Object"/>
    </methodAction>
    <action id="Commit" IterBinding="findAllRezerwacja1Iter"
    InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" RequiresUpdateModel="true"
    Action="2"/>
    Can sb tell is there is normal that when I delete row in table, and after it I refresh manually by IE page is normal that I get error messages. I this is the same situation using Back in IE. Deleting row that is commited to database works fine, but the problem is with manually refreshing page?
    Next question is about using Delete action from node instead of removeEntity, what is the difference? As you can see, I use removeEntitity method. Choosing Delete action instead doesnt works. Why? Rest of the code is the same but instead of dropping method removeEntity I drop Delete action
    Sorry for my English, its not my native.
    Thank in advance

  • Business Objects Enterprise SDK application.

    Hi All,
    I am planning to develop a custom web application using BOE 3.1 java SDK's.
    I would like to create only application level users, these users would be mapped with a single BO user account to create enterprise session.
    That means, My application "A" will have say 10 users (i.e. 10 userid and passwords). All these users will their different sets of userid's and passwords (custom application users), they can login into the application using application level credentials,  however to login into the enterprise the application will internally use only one BO user credential (i.e. only one named user acount info.)
    eg:
    user1-login -> application>logins using BO userX userid and password>BO Enterprise session created
    user2-login -> application>logins using BO userX userid and password>BO Enterprise session created
    user3-login -> application>logins using BO userX userid and password>BO Enterprise session created
    and so on.
    The idea is to purchase only one named user licence and create many application level users to login into BOE; but using the same BO user account.
    Is this approach legal in-terms of licensing?
    Would appreciate any help on this.
    Regards,
    Jon

    Hello Adam,
    Thank you very much.
    Please see the following post:
    Business Objects Enterprise 3.1 Licensing
    Tim says:
    names means you can have five users created, any amount logged on concurently (i.e the administrator could have 10 sessions, usera 20 etc no limit) But you can only create 5 different users names
    that means 1 Named user eg: 'A'  can login into the enterprise using his credentials and create any amount of enterprise sessions concurrently for self right??
    Each named user is for a specific user and not to be shared. If you were using concurrent user licensing, than this would be ok to use one enterprise user account.
    5 Concurrent linceses means one user account created in enterprise but, account info can be shared with 5 users, so they can login using same credentials and create five different enterprise sessions?? right?
    so, I can purchase one- 5 concurrent user license and share it with 5 users? OR purchase 5 named user licences and share it with 5 users?
    Either ways my understanding is number of users=number or linceses available (named or concurrent). please correct me if I am wrong.
    Now, which one is cost effective named user lincenses or concurrent?
    Awaiting your response.
    Regards,
    Jon

  • Hands on Lab JD Edwards Enterprise One Business Service Development

    Hi,
    I completed the "Oracle Open World 2008 - Hands on Lab JD Edwards Enterprise One Business Service Development" PDF at [http://www.oracle.com/technology/tech/fmw4apps/jde/pdf/openworld08_businessservicedevelopment.pdf].
    I ran the business service at the end of the lab to get the following error:
    Internal Server Error (Caught exception while handing request: oracle.e1.bssvfoundation.exception.E1AuthorizationException: User is not authorized to invoke this published business service)
    How can this be resolved?
    We are on 8.12 and 8.97.1.2 tools
    Cheers,
    Steve.

    Hi,
    I am having problems at step 5 in your last post.
    " 5) Check your Published BSSv is set to published or not in OMW. If not go to security workbench and select the option publish BSSV from Form Exit and Add Custom Published Business service created, make it Executable."
    - The business function is not published. I try to in Security workbench (P00950) and publish BSSV row exit not to find my newly created business service object (JP55HOL). I can see all the standard ones but not mine. I open the P00950 application to know what the underlying tables are in the Business Views the grids source the data from, to find that JP55HOL exists in the Object Librarian table F9860 but not in the Business Service Published Methods P98630. For the business function to be published, the record needs to exist in this table. How could this record not be written and how can it be corrected through the Application?
    - I don't understand what "or not in OMW" means?
    Please understand that I have followed the hands on lab with no other BSS setup on 8.12/8.97
    Thanks,
    Steve

  • JavaFx Script for Development of Enterprise Desktop Applications?

    Hi,
    we are currentlich developing a rather complex business application using Swing. Now the JavaFx stuff seems to get up to speed and we are thinking about changing to build the Gui based on JavaFX.
    The enterprise frontend would be a more or less full-screen application, with many masks to enter data into. The backend is a glassfish bean architecture based on WebServices.
    Is it now the time to go that way? I dont see any usable design applications to integrate many Swing components - and JavaFx Components seems not existing to support all that listbox, treeviews, keyboard focusing stuff I need here...
    I am not very happy about coding all the dialoges per hand as it seems to be the way now...
    What do you guys suggest? Skip it for now? Or go the hard way as an early adoptor to find all the bugs and problems we somehow managed to get working already in Swing?
    Regards

    Hi,
    I've been trying to write a new desktop application using JavaFX and its pretty tough going with what's available in the API at the moment. The 1.0 release is obviously focused more on RIA, which is perfectly understandable considering the market space they are trying to enter and the fact that if you want to write a desktop application you can always use Swing. I think right now it would be suicide to recommend to your employers that you switch to JavaFX.
    The main problem is that JavaFX does not currently have all the standard components you would expect to be able to choose from in order to capture and display data. However, there is always the option of taking whatever Swing component you want to use (e.g. JTree) and wrapping it in the JavaFX SwingComponent class. There are some good examples of how to do that on this wiki page: [http://jfx.wikia.com/wiki/SwingComponents] . But my feeling is, if you're going to build your application out of Swing components wrapped in JavaFX classes then you might as well just write the application in Swing.
    I think that right now its too early for JavaFX enterprise desktops but I do believe that one day they will supersede Swing. JavaFX has so much potential. It will eventually be able to do everything Swing can do and then so much more. And I think Sun will have to start focusing on the desktop market quite soon. They are competing with Flex in the RIA space but Flex has good support for data tables etc and I see a lot of projects going with Flex when they might have otherwise gone with Swing.
    Cheers,
    Kevin

  • Which books to refer for OCP Application Developer track.

    Hi All,
    I am appearing for Oracle certification in Application Developer stream
    with following papers 1z0-051 -> 1z0-144 -> 1z0-146.
    I would like to know the list of reference books, study notes etc.
    Also any related websites would be a great help.
    Regards,
    Aalok

    Hi,
    The Oracle pages provide sample questions and recommended practice tests, see...
    1z0-051: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_051
    1z0-144: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_144
    1z0-146: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_146
    Recommended 051 book: http://www.amazon.co.uk/Oracle-Database-Fundamentals-Exam-Guide/dp/0071597867/ref=sr_1_1?ie=UTF8&s=books&qid=1259592786&sr=1-1
    http://blogs.oracle.com/certification/2009/05/the_route_you_choose.html
    Mike

  • Which books to refer for OCP Application Developer.

    Hi All,
    I am appearing for Oracle certification in Application Developer stream
    with following papers 1z0-051 -> 1z0-144 -> 1z0-146.
    I would like to know the list of reference books, study notes etc.
    Also any related websites would be a great help.
    Regards,
    Aalok

    Aalok.Shelar wrote:
    Hi All,
    I am appearing for Oracle certification in Application Developer stream
    with following papers 1z0-051 -> 1z0-144 -> 1z0-146.
    I would like to know the list of reference books, study notes etc.
    Also any related websites would be a great help.
    Please post your question in the appropriate forum and for certification related issues/queries, this is the one,
    Oracle Certification Program
    HTH
    Aman....

  • Enterprise Java-Based Application Development

    This company appears to be doing some rather interesting things for Java based enterprise application development. Looks like you can build apps much faster than any traditional method I have seen...can build work flows too.
    http://www.veloxtp.com

    Not sure if this helps.... ( It only will help if you are some how using Javascript to talk to the applet. )
    Macintosh computers do not support "LiveConnect" in any of their browsers. So if you are using Javascript to interact directly with the applet, i.e., to modify properties on the applet itself, then you're out of luck.
    http:\\www.unix.org.ua/orelly/web/jscript/ch19_01.html

  • Book for learning application development

    I need a good book for learning application development for ios.
    If you have a website, it will be good.
    If I can buy through the site, it's even better.

    Use the resources you pay for with a dev account in the iOS Dev Center(s).
    iOS Human Interface Guidelines
    iOS Starting Point
    Start Developing iOS Apps Today
    App Development Overview
    App Store Review Guidelines for iOS Apps
    Your First iOS App
    iTunes Connect Developer Guide
    iTunes Connect Guide
    Learning Objective-C: A Primer
    Also: iTunes U

  • Oracle Application Developer Certification books?

    Hello, Everyone,
    I am preparing Oracle Application Developer Certification test now. Could anyone give me a hint where I can get a good book and other materials (such as sample questions) to help me to prepare the test? Many thanks.
    null

    Note there is more than one Oracle certification track for developers.
    These are documented at: http://www.oracle.com/education/certification/index.html?ocptracks.html
    If you're interested in the Java track (since you posted your question in the JDeveloper forum), then select that one from the above site. Each track provides a downloadable "candidate guide" which details the recommended study sources, books, or courses.
    null

  • Enterprise Application Development Using Oracle NoSQL Database

    Hi,
    I am following the below link given by Re Lai, to develop the Kvitter application using NoSQL database. But there is no link to sample code in the given below blog.
    Application Development Using Oracle NoSQL Database
    Please help me with the link for the Kvitter Application Code.
    Thank you.
    Regards
    Anvesh Raju

    Hi Anvesh
    Here is the direct link to source code of the above sample program. The link is also posted under Demo/Sample Programs section.
    HTH
    Anuj

  • Business Application Guru Max Dolgicer Speaks at Business Technology Summit

    Max Dolgicer has more than 25 years of management and technical experience in development and support of Business applications, software products and systems internals. An internationally recognized expert, Max is Technical Director and principal at International System Group, (ISG) Inc a leading consulting firm that specializes in design, development and integration of large-scale distributed applications using leading edge Middleware technologies. Max is coming to Business Technology Sumit 2010 (www.btsummit.com) to speak about all things SOA, on 12 November at the NIHANS Convention Center in Bangalore. At the summit, Max covers the following sessions:
    * Managing the SOA Evolution: once a company has completed initial SOA projects, the number of deployed services increases such that the key question no longer is how to build services, but rather how to efficiently govern the development and operation of services on an enterprise scale. The focus of SOA shifts to reusability, securing how a growing number of clients access the services, and assuring that Service Level Agreements (SLAs) are met, to name just a few issues. At this point companies run the danger that a "free for all" environment proliferates, and the benefits of SOA cannot be realized. The key is to introduce SOA governance before services spin out of control. Managing the evolution of SOA into the cloud with the correct governance is the next challenge. This keynote will address: typical categories of SOA projects, how SOA Maturity Models and governance relate, and how SOA governance needs to be extended when we move applications into the cloud
    * A ROI Calculator for SOA: let the Numbers Do the Talking: there are many pro and very few con arguments from an engineering perspective that make us believe that SOA is a superior approach for most application development and integration projects. However, nowadays we typically won't get away with brilliant technical arguments to justify the transition to SOA. In most cases we will have to convince the CFO that there is a positive bottom line result. This presentation outlines a ROI model for application development based on service reusability in a SOA. It describes how the cost effect of reuse can be calculated during the development and the maintenance cycle of a portfolio of service oriented business applications. The model is based on metrics that have been widely accepted throughout the IT industry. The model will then be illustrated by a project where multiple business applications have been developed within a SOA that employs a foundation of reusable services. This presentation will show an overview of a project that is used as an example, a popular ROI model that is the basis for the ROI calculation, and the application of the model to determine concrete monetary savings.
    * Defining a SOA Roadmap Based on SOA Maturity Model: once a company has completed initial SOA projects, the number of deployed services increases and the key question no longer is how to build services, but rather how to efficiently manage the development and operation of services on an enterprise scale. What is needed is a concise roadmap that guides the evolution of SOA such that IT can deliver the right value at the right time to the business. This roadmap has to address multiple dimensions of IT: architecture, development processes, applications, information, etc. This presentation will outline a model against which the degree of service oriented maturity of an organization can be assessed, and a process (i.e. the roadmap) for assessing the current and desired degree of service maturity of an organization and for developing a plan for how to get to the target state. This presentation will show: what SOA Maturity Models exist today?, walkthrough of the levels and key elements of each level, developing a custom SOA Roadmap and project example for mapping a Maturity Model to a Roadmap.
    * Service Oriented Integration (SOI): doing Integration the Right Way: IT managers have been under increasing pressure to migrate a portfolio of independent “stovepipe” applications to an integrated set of business services that can be aligned with changing business requirements and support new business processes faster and with reduced cost. Today, corporations have to choose from a number of integration products (e.g. Enterprise Service Buses) that have quite different capabilities, never mind different architectures and standards. This seminar starts with a comparison of SOA and event based architectures and then outlines the key issues and guidelines that architects should consider when defining an integration architecture based on services. The key point of the seminar is a case study that illustrates how SOA concepts have been applied in a real project. It explains the key architectural and design decisions that produced an integration architecture and a set of services that were reused beyond one particular project. This presentation will show: drivers for Service Oriented Integration (SOI), comparing SOA to Event-Driven Architecture (EDA), how to evolve from Enterprise Application Integration (EAI) to SOA/EDA to SOI, and applying SOI in a project example.
    Max is a contributing editor for Application Development Trends magazine and recognized instructor and presents extensively at major industry conferences including Gartner's Web Service and Application Integration conferences, Sys-Con's Web Services, XMLOne, XMLDevCon, JavaDevCon, e-Business Integration, Java Expo, Component Development, GIGA's Middleware Choices, and Comdex.
    Follow the summit on Twitter, here: http://twitter.com/btsummit and LinkedIn: http://events.linkedin.com/Business-Technology-Summit-2010/pub/331907
    Saltmarch Media
    E: [email protected]
    Ph: +91 80 4005 1000

    Max Dolgicer has more than 25 years of management and technical experience in development and support of Business applications, software products and systems internals. An internationally recognized expert, Max is Technical Director and principal at International System Group, (ISG) Inc a leading consulting firm that specializes in design, development and integration of large-scale distributed applications using leading edge Middleware technologies. Max is coming to Business Technology Sumit 2010 (www.btsummit.com) to speak about all things SOA, on 12 November at the NIHANS Convention Center in Bangalore. At the summit, Max covers the following sessions:
    * Managing the SOA Evolution: once a company has completed initial SOA projects, the number of deployed services increases such that the key question no longer is how to build services, but rather how to efficiently govern the development and operation of services on an enterprise scale. The focus of SOA shifts to reusability, securing how a growing number of clients access the services, and assuring that Service Level Agreements (SLAs) are met, to name just a few issues. At this point companies run the danger that a "free for all" environment proliferates, and the benefits of SOA cannot be realized. The key is to introduce SOA governance before services spin out of control. Managing the evolution of SOA into the cloud with the correct governance is the next challenge. This keynote will address: typical categories of SOA projects, how SOA Maturity Models and governance relate, and how SOA governance needs to be extended when we move applications into the cloud
    * A ROI Calculator for SOA: let the Numbers Do the Talking: there are many pro and very few con arguments from an engineering perspective that make us believe that SOA is a superior approach for most application development and integration projects. However, nowadays we typically won't get away with brilliant technical arguments to justify the transition to SOA. In most cases we will have to convince the CFO that there is a positive bottom line result. This presentation outlines a ROI model for application development based on service reusability in a SOA. It describes how the cost effect of reuse can be calculated during the development and the maintenance cycle of a portfolio of service oriented business applications. The model is based on metrics that have been widely accepted throughout the IT industry. The model will then be illustrated by a project where multiple business applications have been developed within a SOA that employs a foundation of reusable services. This presentation will show an overview of a project that is used as an example, a popular ROI model that is the basis for the ROI calculation, and the application of the model to determine concrete monetary savings.
    * Defining a SOA Roadmap Based on SOA Maturity Model: once a company has completed initial SOA projects, the number of deployed services increases and the key question no longer is how to build services, but rather how to efficiently manage the development and operation of services on an enterprise scale. What is needed is a concise roadmap that guides the evolution of SOA such that IT can deliver the right value at the right time to the business. This roadmap has to address multiple dimensions of IT: architecture, development processes, applications, information, etc. This presentation will outline a model against which the degree of service oriented maturity of an organization can be assessed, and a process (i.e. the roadmap) for assessing the current and desired degree of service maturity of an organization and for developing a plan for how to get to the target state. This presentation will show: what SOA Maturity Models exist today?, walkthrough of the levels and key elements of each level, developing a custom SOA Roadmap and project example for mapping a Maturity Model to a Roadmap.
    * Service Oriented Integration (SOI): doing Integration the Right Way: IT managers have been under increasing pressure to migrate a portfolio of independent “stovepipe” applications to an integrated set of business services that can be aligned with changing business requirements and support new business processes faster and with reduced cost. Today, corporations have to choose from a number of integration products (e.g. Enterprise Service Buses) that have quite different capabilities, never mind different architectures and standards. This seminar starts with a comparison of SOA and event based architectures and then outlines the key issues and guidelines that architects should consider when defining an integration architecture based on services. The key point of the seminar is a case study that illustrates how SOA concepts have been applied in a real project. It explains the key architectural and design decisions that produced an integration architecture and a set of services that were reused beyond one particular project. This presentation will show: drivers for Service Oriented Integration (SOI), comparing SOA to Event-Driven Architecture (EDA), how to evolve from Enterprise Application Integration (EAI) to SOA/EDA to SOI, and applying SOI in a project example.
    Max is a contributing editor for Application Development Trends magazine and recognized instructor and presents extensively at major industry conferences including Gartner's Web Service and Application Integration conferences, Sys-Con's Web Services, XMLOne, XMLDevCon, JavaDevCon, e-Business Integration, Java Expo, Component Development, GIGA's Middleware Choices, and Comdex.
    Follow the summit on Twitter, here: http://twitter.com/btsummit and LinkedIn: http://events.linkedin.com/Business-Technology-Summit-2010/pub/331907
    Saltmarch Media
    E: [email protected]
    Ph: +91 80 4005 1000

  • Sun Certified Business Component Developer (SCBCD)

    The Sun Certified Business Component Developer (SCBCD) certification targets information regarding Java components related to distributed applications, specifically Enterprise Java Beans (EJBs). To achieve this certification, the candidate must pass a computer-based test available world-wide at Prometric test centers.
    SCBCD 1.4 exam covers Java2 Enterprise Edition (J2EE) version 1.3 code, including EJB version 2.0.
    As of 2008, the SCBCD covers the Java2 Enterprise Edition (J2EE) version 5 code, corresponding to EJB version 3.0.
    The pre-requisite for this certification is that the candidate should be a Sun Certified Programmer for Java 2 Platform (any edition).
    SCBCD for J2EE version 1.3 is now no longer offered (starting February 2008). However, the upgrade exam from SCBCD for J2EE version 1.3 to J2EE version 5 is still available.
    310-090:Sun Certified Business Component Developer for J2EE1.3
    It comes from blog.killtest.com

    Team,
    #1: I understand that this is Sun's Training / learning / Certification forum, which I believe is a good place to ask such a question. I believe the answer would be beneficial to a few more people than me.
    #2
    I do understand the true nature of the examine. Application Design, Patterns, UML - an Architects view of a project. But the test requirements also states a few item that differ in EJB 3.0 over EJB 1.1, 2.0, 2.1 - for instance::
    Section 4: Enterprise JavaBeans Technology
    * List the required classes/interfaces that must be provided for an EJB technology.
    * Distinguish Session and Entity beans.
    * Recognize appropriate uses for Entity, Stateful Session, and Stateless Session beans.
    * State benefits and costs of Container Managed Persistence.
    * State the transactional behavior in a given scenario for an enterprise bean method with a specified transactional deployment descriptor.
    * Identify costs and benefits of using an intermediate data-access object between an entity bean and the data resource.
    Section 5: Enterprise JavaBeans Container Model
    * Explain how the EJB container does lifecycle management and has the capability to increase scalability.
    I have recently passed the Sun Certified Business Component Developer (SCBCD), and work in an EJB 3.0 environment. I wish to the certification to reflect the current technology.
    If there is someone more appropriate to ask or place to ask, please direct me to the resource. Thank you.
    Tony McClay

Maybe you are looking for

  • Error 2380 when starting burn please help

    This error has been driving me nuts for 4 months now. Is anyone else having the same problem. Here is what the CD dianogtic says: Microsoft Windows Server 2003 family, Professional Service Pack 1 (Build 3790) System manufacturer System Product Name i

  • Testing BC i ADF - problem

    Hi. I'm trying to use example from "Oracle JDev 10g Handbook". I'm using OracleXE. I have testing schema (named "GM"). That schema contains 3 tables. I have created Connection - connection is named "XE_GM" and it is working fine (connectiong, showing

  • Production Order Settlement to GL by Labor ,Material,Ovhd,etc

    Our client would like to settle Cost Collectors and Discrete Orders, make to stock, to the GL by Cost Element Category.   The goal is to definitely have the variance account by cost element category. They may also want to have the Delivery to Stock C

  • 2 1/2 hour backups

    Anybody else having 2 1/2 hour backups - and longer? I'm syncing 7 songs over to my iphone right now, and it's 10am, and I started at 8:03 - and it's still backing up. I'm tired of there 2 - 3 hour backups. And what's the point of backing up? I mean

  • Custom fields not updaing from BADI implmentaion MB_BAPI_GOODSMVT_CREATE

    Dear All, I am using BAPI_GOODSMVT_CREATE for creating GRN.For some custom fields in append structure of MSEG( Material document ), i have implemented BADI MB_BAPI_GOODSMVT_CREATE. PAssing custom fields in Extension of BAPI... But still values are no