Java with Coldfusion

Hi
I am building a Web System which will create web report from the data from our databse My Compnay has deceided to use coldfusion and java for this project . I want to use real java on the web reporting system but like to build the website in Coldfusion .I need to know the following information about coldfusion
A> How to intergrade Coldfusion with Java ( J2EE)
B > Do I have to install Java on both Web server and on My workstation
C> Can I write program in Java SDK and connect it to the web interface that is been done with coldfusion
D > Can I USE JDBC to get data from our databse to create the reports
Your help is appreciated
Thank you

A> How to intergrade Coldfusion with Java ( J2EE)This I'll leave to someone that has something positive to say about Cold Fussion.
B > Do I have to install Java on both Web server and
on My workstation If you are to use a Java solution on any part of your Enterprise, then you have to have Java installed on the specific parts/tiers that will be a part of the Java solution.
C> Can I write program in Java SDK and connect it to
the web interface that is been done with coldfusion Depends on ehat you mean by "connect it to the web interface".
D > Can I USE JDBC to get data from our databse to
create the reports Generally speaking yes, but you will have to have a JDBC driver for your database.

Similar Messages

  • IFS with Coldfusion

    Hi,
    I'm a beginner with IFS and I have many problems.
    I need to connect to a IFS server with Coldfusion. Is this possible?
    I know that there is some java API we can use to connect to the server and I read that I need to copy the oracle/ifs/server/properties/IfsDefault.properties in the classpath of the Client application. Is that correct?
    My DBA tell me that this file doesn't exist on his server. Is this possible?

    I don't know about the coldfusion question, but as long as you can run Java code from your server, you should be able to do it. Now on to connection issue.
    If the version installed on the server is officially the Content Management SDK version and not the previous one called IFS, then the documentation you have for connecting to IFS is out of date. (I found this out recently as well since we just upgraded)
    You need to make sure that these jar files are in your classpath:
    cmsdk.jar
    mcsdk_client.jar
    Tell your admin that those files are in the home directory of CMS under the lib directory.
    Here is also some sample java code on how to connect to the repository. As you'll see we created a Connector class.
    import oracle.ifs.beans.*;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.Credential;
    import oracle.ifs.common.CleartextCredential;
    public class Connector
    public static LibrarySession getLibrarySession(String username, String password,
    String serviceName, String schemaPassword, String serviceConfigurationName
    , String domainName) throws Exception {
    try {
    LibraryService service = null;
    try {
    service = LibraryService.findService(serviceName);
    } catch (Exception ex) {
    //start the service because it probably wasn't found to be running
    //service = LibraryService.startService(serviceName, servicePassword);
    service = LibraryService.startService(serviceName
    , schemaPassword
    , serviceConfigurationName
    , domainName);
    CleartextCredential me = new CleartextCredential(username,password);
    ConnectOptions connect = new ConnectOptions();
    LibrarySession ifsSession = service.connect(me,connect);
    return ifsSession;
    } catch (Exception e) {
    throw e;
    To find out what to pass to this class. check the javadoc of the oracle content management. Look at the LibraryService class. In there is a good explanation of how to use the startService method.
    Hope this helps.

  • LCDS 3.1 installation with ColdFusion 8

    I have seen a bunch of examples with connecting LCDS 3.1 with ColdFusion 9. We are currently locked into CF8 only and I need to figure out how to properly connect the two. Can someone please point me to some instructions on how to properly configure LCDS 3.1 with ColdFusion 8?
    Thanks,
    John

    Hi, I couldn't get pointbase setup for petstore. It seems like you get farther than I do. Could you help me with this? When I run ant in db.setup, I get the following error:
    setup.pointbase:
    [java] utils.Schema will use these parameters:
    [java] url: jdbc:pointbase:server://localhost/demo
    [java] driver: com.pointbase.jdbc.jdbcUniversalDriver
    [java] dbserver: null
    [java] user: public
    [java] password: public
    [java] SQL file: createPointBaseUser.ddl
    [java] java.sql.SQLException: No suitable driver
    [java] at java.sql.DriverManager.getConnection(DriverManager.java:532)
    [java] at java.sql.DriverManager.getConnection(DriverManager.java:171)
    [java] at utils.Schema.main(Schema.java:112)
    [java] Could not make database connection
    BUILD FAILED
    C:\bea\user_projects\domains\petstore\db.setup\build.xml:9: Java returned: 1

  • Can' t connect Java with MySQL

    My goal is to connect Java with MySQL. I found many solutions on Internet, but I always get the same mistake:
    SQLException: No suitable driver
    SQLState: 08001
    VendorError: 0MySQL works fine alone or with php.Only thing left me to think is that the installed versions are not compatible for this mysql-connector-java-5.0.4
    I don't believe that could be a reason.
    Installed versions are:
    Apache Tomcat 5.5.20 Server
    Apache HTTP Server 2.2.4
    PHP 5.2.0
    MySQL 5.2
    jre 1.5.0_11
    jdk1.5.0_11
    Apache Tomacat JK2 connector Version: 1.2.20 File Name: mod_jk-apache-2.2.3.so
    mysql-connector-java-5.0.4
    I also set connector in class path: C:\mysql-connector-java-5.0.4;C:\mysql-connector-java-5.0.4\mysql-connector-java-5.0.4-bin.jar;C:\mysql-connector-java-5.0.4\src\com\mysql\jdbc
    For installation I used manulas from:
    http://apacheguide.org/jsp.php
    http://doc.51windows.net/mysql/?url=/MySQL/ch23s03.html
    Here is also a test code in java:
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
       public class Connect
           public static void main (String[] args)
               Connection conn = null;
               try {
        conn =
           DriverManager.getConnection("jdbc:mysql://localhost/first_test" +
                                       "user=monty&password=greatsqldb");
        // Do something with the Connection
    } catch (SQLException ex) {
        // handle any errors
        System.out.println("SQLException: " + ex.getMessage());
        System.out.println("SQLState: " + ex.getSQLState());
        System.out.println("VendorError: " + ex.getErrorCode());
       }i'm desperate, please help or tell me someone who'll know the answer.
    Thank You in advance

    hey buddy .. it seems yr code is wrong .. in getconnection () method u should also specify the port ,which u r not doing ...
    the default port for MySQL is 3306 ... see below i am giving you a sample code ... its working fine .. and dont forget to put the MySQL driver jar path in to classpath and also copy the jar into common/lib folder of your tomcat ....
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class MySQLConnectionTest {
         public static void main(String[] args) {
    new MySQLConnectionTest().connTest();
    public void connTest() {
              String tableName = "portfolio"; //change as per setting
              String hostName = "10.81.9.39"; // please change for the target database ip or hostname
              String dbPort = "3306"; //change if not using the default
              String dbName = "tradingsystem"; //change as per the given DB name
              String username = "root"; //change as per setting
              String password = "password"; //change as per setting
              System.out.println("before try");
              Double data=0.0;
         Double data1=0.0;
              try {
    Class.forName("org.gjt.mm.mysql.Driver");
                   System.out.println("before driver manager");
    Connection conn = DriverManager.getConnection("jdbc:mysql://"+hostName+":"+dbPort+"/"+dbName, username, password);
    String query1 = "select * from "+tableName+" where User_id='trader1' and Stock_Type='Equity'";
    System.out.println("quesry1="+query1);
    Statement stmt = conn.createStatement();
    ResultSet rs1 = stmt.executeQuery(query1);
    while(rs1.next())
         System.out.println("hiiiiii for rs1");
         System.out.println(rs1);
         Quantity=(Integer)rs1.getObject(5);
         MarketPrice=(Double) rs1.getObject(8);
         data=Quantity*MarketPrice;
         data1+=data;
         System.out.println("data1="+data1);
         i=0;
    rs1.close();
    stmt.close();
    conn.close();
    } catch (ClassNotFoundException e) {
    e.printStackTrace(System.err);
    } catch (SQLException e) {
    e.printStackTrace(System.err);
    i hope it will work for u...
    cheers,

  • Flex 3 App not working in with ColdFusion 9

    We have a Flex 3 application that uses flash remoting to connect to ColdFusion.   This app was working great with ColdFusion 8,  but will not work after installing ColdFusion 9.
    I am looking for any suggestions on what I might look for to fix this issue.

    Hey Tikis,
    There are a few factors that could be throwing this thing
    through a loop. I've had this exact same thing happen to me once
    before and the culprit for me was that my crossdomain.xml file
    wasn't 100% perfectly formed. Apparently Firefox didn't care enough
    and went on with it's life however IE decided it wasn't going to
    read it and I received that error, so that would be the first thing
    I would check.
    The next thing is what version of PHP are you running on the
    server, it seems to me that the newest release of 5.2.2 is throwing
    this error more often then ever before, something I might suggest
    is upgrading to AMFPHP 1.9. RemoteObjects natively send data in
    what's called the AMF3 format which is much speedier then it's
    predecessor of AMF0. Only AMFPHP 1.9 has the ability to receive /
    send the data back in AMF3 format, where as with the 1.2 version
    it's sending the call, converts it down to AMF0 sends the data (at
    a slower pace) and generates a result. The other advantage to being
    able to use AMF3 is having true type casted results such as if PHP
    returns a number you can check it by if(event.result == 0) where as
    AMF0 everything is converted into a string and then sent back to
    Flash / Flex. So aside from all of these advantages the last one is
    less code, you no longer need to use the RemotingConnection to
    convert everything down to AMF0. I would make a copy of amfphp on
    your linux of the 1.9 version and send the remote object at that
    first and see what happens, if you are still receiving the same
    error then the problem lies in something else.
    Hope this helps.

  • Does Adobe have some beef with ColdFusion developers?

    I think I will be keeping FB 4 after the trial expires. There are some very nice things about it and I especially like the new styling/skinning tools.
    I am not impressed with the new “data-centric” paradigm in FB 4. I see it as Adobe’s way to market FB 4 to hobbyists and other people who are not really serious about development, of whom there are many. Other than repeatedly pitching that you can do a bunch of things “without writing a single line of code”, there is not a lot of information out there about how the thing really works, and am hoping that situation improves as time passes. At this point, I am not planning to use those data-centric features, except perhaps for quick prototyping. Anybody who agrees can add to this thread: http://forums.adobe.com/thread/617704?tstart=30, in which I describe a few things I learned while playing with these features.
    I do my Flex back end work with ColdFusion and am also trying the new CF Builder. The $300 bucks it costs doesn’t affect us CFers because it comes with FB 4. From what I have seen so far, it does not do much more than the ColdFusion Extensions for Flex Builder, which were free.
    But there is one thing about which I am somewhat miffed: they took away two of the best things about the extensions:
    the ACtionScript to CFC wizard;
    the CFC to ActionScript wizard.
    Those make it very easy to generate a CFC from an AS value object and viceversa. I tried to install them in FB 4, but it won’t allow it, generating an error about a dependency or something.
    Those 2 items are great time - and error - savers. Without them, you have to do double the coding. I can’t figure out Adobe's reasoning for not making them available anymore; they are already there and all we need is a way to install them. Is Adobe so intent in pitching this “without writing a single line of code” that they are willing to take this great tool away from us?
    Am I the only one who would like to have these available?
    I would really appreciate it if someone can provide some logical reason for this and please, CORRECT ME IF I AM WRONG OR MISSING SOMETHING!
    Greetings to all,
    Carlos

    Following Ansury’s suggestion, I did some more digging (which I should
    have done from the beginning) and found 4 extensions to CF builder that
    are there for the taking. By installing two of them, I can now generate
    an AS class from a CFC and create a mapping between the two; but I
    cannot generate a CFC from an AS class. The FB 3 wizards did this both
    ways, but this is better than nothing.
    That's good news. The rest you'll probably find out about by doing further reading. I don't use CF, but I really doubt FB4 has less than before.
    2.    it looks like you have to
    call the service each time you want to bind the data to another control
    or to somehow use it more than one time. I could not figure out how to
    access the data that has come in from a service call and been bound to x
    control – and no one in these forums was willing or able to answer that
    when I asked the question in a previous post.
    Regarding 2, I'm assuming you're talking about PHP, No, you don't have to call the service each time you want to bind the data. You define the service, call it once to bring in the data, then bind to that data using .lastResult because the data is already in.
    Here's the process I follow when I need data. I set up the class which let's say has a getRecords() method that returns data. I then use the data/services wizard as usual to introspect the class and set up the return types.
    THEN in design mode, I just drag a useless datagrid (that I delete later) onto the screen. With the datagrid on the screen, I drag my method (getData() from the data/services view) to the datagrid. This sets up the service call and wires the dataProvider property of the datagrid. All I do after that is move around the code that's been generated to where I need it, before deleting the useless datagrid.
    This defined your service. It can stay where it is.
           xmlns:myservice="services.myservice.*"
            <myservice:MyService id="myService"
                                             fault="Alert.show('some event fault message')"
                                             showBusyCursor="true" />
            <s:CallResponder id="getRecordsResult" />
    This is the call to your service that actually brings the data in. I move it to the init() function.
    private function init():void{
        getRecordsResult.token = myService.getRecords();
    Then to use the data returned from getRecords(), you could either instruct the <s:CallResponder itself to wire its data when returns using result.
            <s:CallResponder id="getRecordsResult"
                                           result="{doFurtherDataProcessing()}" />
    or tap into the data from anywhere at anypoint using lastResult. In this case the list is asking for the data.
    <s:List dataProvider="getRecordsResult.lastResult" />
    The first way with result means that the source of the data passes it to destination structures. The second way with lastResult means that the destination structures call for the data. But still they call for the data from its inside location, from where it's already sitting inside the app, they don't have to bring it in again from the outside, because the data has already been brought into the app by CallResponder once and is sitting and waiting to be used whenever.
    Hope this helps you. For PHP, I recommend you watch the 2 videos by Tom Lane from Adobe on ADC. Must watch and very helpful. Rest will come from use. For CF, not sure, others may pitch in.

  • How to read azure storage data using JAVA with REST API

    Hi,
    We have a cloud service in our lab. We have enabled diagnostics
    in cloud services. So WADPerformanceCounterTable was created in storage account. Now , We want to read the WADPerformanceTable using
    JAVA with REST API. Is there any way to collect these details. please give me any
    sample code to connect azure storage using table service REST API.
    Thanks & Regards
    Rathidevi

    Hi,
    Please have a look at this article:
    https://convective.wordpress.com/2010/08/18/examples-of-the-windows-azure-storage-services-rest-api/, it demonstrate how to use table service Rest API, it also give us the code, hope this helps. Of course, the
    MSDN article could also help us coding.
    Best Regards,
    Jambor
    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.
    Click
    HERE to participate the survey.

  • How to use Java with PL/SQL commands to send an email with attachment

    Apologizes in advance if this is the wrong place to ask the question.
    I need to use Java with PL/SQL commands to send an email with attachment. My java application runs from the command line and does some magic to gather info from an Oracle 11g db. If the DB has sendmail configured, I'd like to send the results of the data gathering as an attachment to the email addresses. I'm not sure how to do this. I've been reading up on on PL/SQL can send email with UTL_SMTP - with attachments. I'm just not sure how to translate that into being triggered by my Java application. Any suggestions or pointers on what I should read would be appreciated.
    Background - I've been programming in Java for 10+ years, but this is my first time using databases. I also have been on these forums for a long time, but lost my profile when it was switched to Oracle.
    Thanks for all help.

    user13726880 wrote:
    The original requirements were put together and given to me, an Oracle newbie. They expected the Java app to use something intrinsic to Oracle and Unix sendmail. To solve my problem, I use a JDBC connection to run some SQL commands. I take that data, format it and send the results by email to the user. By default the requirement is to send it as an HTML attachment using Unix 'sendmail'. So I do that using Runtime exec. I have also added JavaMail functionality as an alternative to sendmail. It works great and as expected.Sounds like a reasonable solution.
    Note however that PL/SQL itself can send email. And PL/SQL can call unix sendmail too.
    However myself I would have done it in java with JavaMail.

  • How do I get flex remoting to work with Coldfusion 11

    Hi,
    Coldfusion 11 (Developer)
    Flex 3
    Existing Flash Application works with Coldfusion 8
    Flex Integration is turned on.
    Running latest update
    CentOS 6.1 with latest updates
    I have done the following:
    http://127.0.01/flashservices/gateway  ---> Page Not found
    http://127.0.01/flashservices/gateway/  ---> Page Not found
    http://forums.adobe.com/message/5621721#5621721
    Confusion Blog » Apache + Debian + Coldfusion 10 + flex2gateway = Error 404
    https://groups.google.com/forum/#!topic/railo/6j2i6gl8Ac4
    \config\wsconfig\1\uriworkermap.properties file to include:
    /flashservices/gateway/* = cfusion
    /flashservices/gateway = cfusion
    I have modified the mod_jk.conf like so:
    # Select the timestamp log format
    JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
    # Fix para Flex2gateway
    <IfModule jk_module>
        JkMount /*.cfm ajp13
        JkMount /*.cfc ajp13
        JkMount /*.do ajp13
        JkMount /*.jsp ajp13
        JkMount /*.cfchart ajp13
        JkMount /*.cfres ajp13
        JkMount /*.cfm/* ajp13
        JkMount /*.cfml/* ajp13
        JkMountCopy all
    </IfModule>
    AddHandler jakarta-servlet .cfm .cfml .cfc .cfr .cfswf
    Alias /CFIDE "/opt/coldfusion10/cfusion/wwwroot/CFIDE"
    I uncommented the "start flex 2" section in web.xml
    Nothing has worked.
    I have searched Google and Adobe.
    I was hoping that Adobe would have the "Flex Integration Check Box" working
    by now.  It only been around since ColdFusion 8 and basically does nothing.
    Adobe could post a tutorizl on how to get this working.
    Job Security for "Tech Support".
    Any ideas.
    Brian

    Do you have internet when wired to the router?
    What exactly is the problem? What error messages do you get?
    What are the current settings on the WRT?

  • JAVA WITH WINDOWS FORM?

    Dear all,
    I have a question about java with windows form.
    I have an exe or DLL stand alone program make by visual basic 6.
    Also I have a java software build up with swing.
    Can the exe or DLL program executed inside the Java software?
    It means I click the menu and select a function in the Java software.
    And then the exe or DLL will be executed and a windows form will be pop up.
    But I want to fake like a Java jpanel not a stand alone program run outside the Java software.
    Is it possible?
    Thanks you~~

    All here,
    You can do it ... we can hep!
    Once you choose the exe you want to run, execute it via Process ... about like so:
              String theWindowsProcess =
                                  "notepad.exe";         // OR
    //                            "runtc.bat";                // OR
    //                            "cmd /C start /min /Dc:\\temp runtc.bat";
              Process myProcess = Runtime.getRuntime().exec( theWindowsProcess);BTW ... this is a very common question.

  • How to integrate java into coldfusion MX7

    I am beginner and taking training in coldfusion since 2
    months.I want to know how to integrate java into coldfusion
    MX7.

    You might take a look at this doc -
    http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm
    HTH,
    Anne Sandstrom
    Senior Technical Writer
    ColdFusion
    Adobe Systems, Inc.

  • Date Problem in Java with MySql

    Hello
    I am using Java with Mysql.I want to enter date in some in my format(YYYY:MM:DD:HH:MM:SS), this thing i have convert using format class and format class return date in String and iwwnat to insert this value in MySQL Table,So i want to know how can i convert String value in Date for Mysql is their inbuild function for converting string into date in mysql.
    Regards
    Anupam S

    Use PreparedStatement and SimpleDateFormat classes
    http://onesearch.sun.com/search/onesearch/index.jsp?qt=%2BPreparedStatement+%2BSimpleDateFormat+&qp=siteforumid%3Ajava48&chooseCat=allJava&col=developer-forums&site=dev

  • ODBC Standard with Coldfusion 9

    Hello,
    I have a customer using Coldfusion 9. Our ODBC driver is not working with Coldfusion and I was wondering what version of ODBC standard is used with this product.
    Thank you.

    waltereo001 wrote:
    > Hi,
    >
    > I got the following problem when I try to acces a Oracle
    9 database. with
    > the an ODBC datasource.
    > With the JDBC, the same query is working fine.
    >
    > Someone has an idea of the problem ?
    >
    >
    ======================================================================
    >
    > Error Occurred While Processing Request
    > Error Executing Database Query.
    > [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Oracle][ODBC]Restricted data
    > type attribute violation.
    >
    > The error occurred in
    >
    D:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\itdm_portal\ITDM\pc_tdm_ToolPar
    > ams.cfm: line 88
    >
    > 86 : <cfelse>
    > 87 : AND (TDM_PARAM_CONFIG.FAMILY_ID IN
    > ('#replace(Variables.strLFIDList,",","','","ALL")#'))
    > 88 : </cfif>
    > 89 : ORDER BY CODE_ID_PK
    > 90 : </cfquery>
    If FAMILY_ID is a number you don't need the quotes. And you
    should use
    cfqueryparam:
    <cfelse>
    AND (TDM_PARAM_CONFIG.FAMILY_ID IN
    (<cfqueryparam cfsqltype="cf_sql_integer"
    value="#Variables.strLFIDList#" list="true">)
    </cfif>
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

  • An error occured when connecting java with Ms Access

    Hello Everybody
    I am a new developer in java and want to connect java with Microsoft Access
    i am using JCreator LE
    My code is to insert 3 records for 3 members and then save them in DB and retrieve the information
    Here is the code
    import java.sql.*;
    public class Project3 {
        public static void main(String[] args) {
             try {
                  System.out.println("Beginning Connection");
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String accessFileName = "Information";
                String connURL = "jdbc:odbc:;DRIVER=Microsoft Access Driver (*.mdb);DBQ="+accessFileName+".mdb;PWD=";
                Connection con = DriverManager.getConnection( connURL ,"","");
                Statement stmt = con.createStatement();
                System.out.println("Connection done successfully");
                stmt.execute("Create table Member(Name String,ID Integer)");
                stmt.execute("insert into Member values ('Joe','1234')");
                stmt.execute(" select * from Member");
                ResultSet rs=stmt.getResultSet();
                if (rs != null)
                     while (rs.next()){
                          System.out.println("Name: "+rs.getString("Name")+ "ID: " + rs.getString("ID"));
                stmt.close();
                con.close();
                catch (Exception e) {
                System.out.println("An error Occurred in Connecting with the DB " );
    }and the error is
    Beginning Connection
    Connection done successfully
    An error Occurred in Connecting with the DB
    it didn't insert information in the DB

    Well, thank u i have traced the error and fx it
    but
    how to modify the code and keep the user entering 3 values and search for the entered values??
    Here is the correct code
    import java.sql.*;
    public class Project3 {
        public static void main(String[] args) {
             try {
                  System.out.println("Beginning Connection");
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String accessFileName = "jdbc:odbc:Project";
                String connURL = "jdbc:odbc:;DRIVER=Microsoft Access Driver (*.mdb);DBQ="+accessFileName+".mdb;PWD=";
                Connection con = DriverManager.getConnection( accessFileName);
                Statement stmt = con.createStatement();
                System.out.println("Connection done successfully");
                stmt.execute("Create table Member(Name String,ID Integer)");
                stmt.execute("insert into Member values ('Joe','1234')");
                stmt.execute(" select * from Member");
                ResultSet rs=stmt.getResultSet();
                if (rs != null)
                     while (rs.next()){
                          System.out.println("Name: "+rs.getString("Name")+ "ID: " + rs.getString("ID"));
                stmt.close();
                con.close();
                catch (Exception err) {err.printStackTrace();}
    }

  • What contents we can include under JAVA with SAP NetWeaver 7.0?

    hi friends,
    i want to know about JAVA with SAP NetWeaver 7.0.
    whether it covers only java programming or java-WebDynpro,portal and many more?
    can somebody give details on this?
    i have worked on java-WebDynpro,portal.is that enough to get certification on JAVA with SAP NetWeaver 7.0-Associate  C_JAVA_70?
    please provide me details.
    thanks
    Nutan.

    Hi Rajesh,
    I cleared this certification last year. Go through the syllabus mentioned. In our time there were 13 different sections e.g NWDI, EJBs, WD etc which had multiple choice qs and u need to click on the radio button for that.
    How to prepare.
    Go through the topics and course books mentioned in the syllabus well. U should be clear with all the basics especially EJBs and NWDI, lot many qs asked from these. WedDynpro qs are basically easy.if u dnt have books chk sdn and help site fot the topics.Qs chk your understanding of the content. They come from syllabus but are not direct and multiple choice make it difficult to answer.
    How to answer the questions.
    Chk every option in case of mutiple choice. Mark only those options which u are full confident and den if more than 50% confident bcoz we heard there were -ve markings although not sure how they calculated marks.
    Is any sample test program is there?
    There are no sample test program for this.
    All D Best for the certification.
    Regards
    Priyanka

Maybe you are looking for