I need some simple examples to start with for Oracle ESB

Hi All,
Please share some simple examples to startwith for Oracle ESB.
I need to understand, what are the files are created, once created an ESB project.
What is the use of the files how to edit them with out using JDeveloper.
Iam trying to create a simple example.
I would like to create a file which has only "HELLO" in that file, simple text file inside a folder "INPUT" in my c:\ drive.
I wanted to create a ESB service which picks up the file and add a string to it like "HELLO" + "ESB" and drop this file into "OUTPUT" folder in c:\ drive.
How do i do that. I tried to do it when i deploy the integration server connection is gettting hit badly. I dont see that connection any more and i dont see that connection in my JDeveloper.
I dont want to start with existing code.
Please help
Regards,
Vijay.B
Message was edited by:
Vijay.B
Message was edited by:
Vijay.B

Hi,
If you want to do it from scratch you can basically do the following:
Make sure you have created an application server and integration server connection in JDeveloper.
1) Create a new JDeveloper project of type ESB project.
2) Possibly add a ESB System/Group (open the esb file and click "Create System/Group") to group ESB projects.
3) Create an XML schema describing your input XML file. Probably one element of type xsd:string.
4) Create an example XML file which is well-formed and valid according to the XSD from step 3.
5) Create a new File adapter (inbound/read). A routing service is automatically created.
6) Create a new File adapter (outbound/write).
7) Create a routing rule in the routing service in which you invoke the write method of the outbound file adapter. Possibly add a transformation using the XSL mapper.
8) Deploy the ESB project to the server.
9) Drop your XML file (from step 4) in the directory in which the inbound file adapter is polling.
10) If it is ok, the file should be picked up, transformed and dropped in the outbound directory. A new ESB instance should be visible in the ESB console.
See what files are generated on the filesystem in each of the above steps.
Regards, Ronald

Similar Messages

  • Need some info about getting started with the GE70 2PC Apache

    Hi guys!
    I'm about to getting the new GE70 2PC Apache gaming notebook from MSI and since I'm really putting alot of money in this I really wanna handle it gently :p So I got some questions about this, since It'll be the first time I'd but a gaming notebook.
    1) 1st of all, what do I do when I've first started the laptop? Do I place in the CD and install all the newest drivers from that CD? Afterwards install an anti virus and then I should be good to go?
    2) I heard the Haswell i7 processors from Intel produce a hell of a lot heat. When I turn on turbo fan and turbo boost and I reach temperatures of around 90°C, would it harm the hardware of my laptop? Could any damage take place? Or would my processor/graphic card have a shorter life expectancy?
    3) The graphic card would be the GTX 850m. Now I'm wondering, is on this particular laptop -> (MSI-ge70-2pc-019be-apache-azerty), is the graphic card the DDR3 version or the GDDR5 version? Because I heard even the GTX 765m can outperform the 850m DDR3. But I also heard that the GDDR5 version of this graphic card is noticeably better than the 765M graphic card.
    4)Is it wise to keep the processor going on turbo boost (3,4 Ghz) forever?
    5) Will I have internet problems? I heard alot of people having internet problems with the killer lan drivers lately..
    6) What laptop do you think I should pick in overall? The 2PC Apache version or the GE70 2OE version (the one without SSD) ?
    8) My Brother has the GE70 2OE which has the 765m graphics card, but he only has around 60 fps when he's playing League Of Legends, and LoL isn't the most demanding game right.. The FPS sometimes even drops to 40 (even when he's ALONE with no one around him). It feels like his FPS is capped at 60? Because most of the time it's just 60. But when I look at the settings I saw the FPS is uncapped.. I believe with this graphics card he must atleast achieve a constant 70-80 fps on this game right? Might something be wrong in the settings of the graphics card?
    7) Is there anything I should know before I start gaming on this laptop? (something I should do to have best performance or something..?)
    Grtz

    Well...
    1. When you get the laptop, use MSI Burn Recovery and make the backup disks (I prefer DVD's myself...). This way if something happens, you can reinstall all the software like you just bought it.
    2. Haswell does produce quite a bit of heat. As long as you don't get much higher than 90C you should be ok. If you're getting into the high 90's or even 100C range, you probably need to replace the heatsink compound. MSI has had a number of issues with that aspect on notebooks. It is easily done though.
    3. The only way to really answer that question is probably to contact MSI about it.  >>How to contact MSI.<<
    4. Turbo boost isn't really user controlled. I wouldn't worry about it.
    5. You might have issues. I'm honestly  not too sure. I know most people haven't had issues recently, but that's all relative. The drivers seem to be working rather well right now to be honest.
    6. Depends what you want and what is available. Maybe the GE70 20E + buy an SSD will be cheaper than just buying the Apache version. I don't really know, but you could always look into it.
    8. The 765M is a decent card....but remember, it's NOT the same as a 760 on a desktop. It's roughly equivalent to a 750 in the desktop world. That's not a bad card by any means, but you aren't going to be able to get 60+ FPS at 1920x1080 in many games. LOL is rather demanding as a game though to be perfectly honest. (throwing my personal opinion in on this, I always buy the highest end item I can in this case, because you won't be able to get any better really in the end until the next laptop comes out).
    7. I would setup all your games in the NVidia control panel to use the NVidia high performance graphics processor. That way there is no confusion and it will use the right video card.
    You don't really need to update drivers UNLESS you're having an issue (like BSoD's or game freezes or something similar).
    The MSI customer service in the EU really seems to be hit or miss. Some people seem to get good service, some people get really crappy service. I'm honestly not sure what the problem is over there. =/

  • I need some working examples with pl/sql records and pl/sql tables.

    i am new to pl/sql tables and pl/sql records. i need some working examples on pl/sql records and pl/sql tables from basics to hoghlevel.how to use then procedures and functions and packages.

    i am new to pl/sql tables and pl/sql records. i need some working examples on pl/sql records and pl/sql tables from basics to hoghlevelThere is no such thing as PL/SQL "+tables+". This is a misnomer and creates the perception that a PL/SQL "table" is somewhat like a SQL table. Nothing can be further from the truth. The correct term is "+collection+" or "+associative array+". Compared to SQL tables, these are very primitive structures, very rigid structures, cannot scale, and can be quite expensive memory wise.
    That is not to say do not use an associative array or collection. These are very useful tools.. but only when applied correctly. Like using a collection for a bulk fetch to transfer more rows between the PL and SQL engines and thus decrease context switching.
    Unfortunately, quite often we see the row-by-row and slow-by-slow approach - where the developer uses SQL as an I/O only layer, pulls rows into expensive PL engine memory into record structures and arrays, and then process the rows there.
    So before looking at working example (even the wrong approach's code will compile and run and work in practice), make sure that you know the fundamentals of correctly using the PL engine and correctly using the SQL engine. And these fundamentals can be summed up into a very basic rule:
    Maximize SQL. Minimize PL/SQL+
    Get this rule right, and you will have a sound foundation for writing performant and scalable Oracle applications.

  • What do I need to know to get started with Windows 10?

    QuestionWhat do I need to know to get started with Windows 10?
    AnswerWindows 10 likely looks familiar in some ways to past Windows users whether they're most familiar with Windows 8, Windows 7, or earlier versions of Windows.
    To read about what's new with Windows 10, check the sections below. To learn about Windows 10 and see it in action, you can watch this video:
    Desktop and Start menu
    When you start your Windows 10 computer, you'll see the desktop. Like in Windows 7 and earlier versions of Windows, you'll see the Start button in the lower-left, which opens  the Start menu.
    The new Start menu combines aspects of Windows 7's Start menu with Windows 8's Start screen. On the left are important links, including Settings, as well as applications you use often. On the right are Modern UI app tiles. The Start menu also contains a button for power as well as a button to expand the Start menu to a full screen view.
    Cortana
    Next to the Start button is the Cortana search field. Cortana is a personal assistant that can help you find answers, solve issues, and search for files. You can click in the box to typer to her, click the microphone to speak to her, or press the Cortana button on select Toshiba laptops to speak to her.
    You can learn more about Cortana here:
    How do I use Cortana in Windows 10?
    Action Center
    The Action Center can be used to view notifications and access settings quickly.  Hold the Windows key and press the 'A' key to open the Action Center.
    Notifications are shown at the top, and toggles for various settings are located at the bottom.
    On touchscreen devices, you can swipe in from the right to open the Action Center. The toggles on the bottom are sized so that you can press them with your thumb easily.

    Install 7. Don't bother with applying drivers and such, just reboot again from DVD and install again, it will see the existing system and this time activation will be possible.
    Vista is mess, takes longer etc. Hope you have SP1 version of 7. And for Vista, only SP2+ are even supported now, by MS.

  • Need some clarification on Replacement Path with Variable

    Hello Experts,
    Need some clarification on Replacement Path with Variable.
    We have 2 options with replacement path for characteristic variables i.e.
    1) Replace with query
    2) Replace with variable.
    Now, when we use  "Replace with variable" we give the variable name. Then we get a list for "Replace with" as follows:
    1) Key
    2) External Characteristic Value Key
    3)Label
    4)Attribute value.
    I need detailed explanation for the above mentioned 4 options with scenarios.
    Thanks in advance.
    Regards
    Lavanya

    Hi Lavanya,
    Please go through the below link.
    http://help.sap.com/saphelp_nw70/helpdata/EN/a4/1be541f321c717e10000000a155106/frameset.htm
    Hope this gives you complete and detailed explaination.
    Regards,
    Reddy

  • I need some help adding music to my slideshow in iPhoto.  When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

  • In Linux, my firefox uses the /etc/firefox profile for all users, now I need ONE user only to start with their own profile, I'm struggling to achieve this, please help!

    In Linux, my firefox uses the /etc/firefox profile for all users, now I need ONE user only to start with their own profile, I'm struggling to achieve this, please help!

    .Jake. wrote:
    I forgot to say that the hard drive has not been used yet...
    So you have no backup of your data at all?
    Pete

  • Need some intermediate and advance level website for SQL

    Hi Gurus
    I want to improve my SQL skills, is there any website through which I can improve that skills.
    Need some intermediate and advance level website for SQL.
    appreciate your suggestion. Thanks
    Regards
    Shu

    if you have a lot of time you can follow some of the larger threads on AskTom. I think Mr. Kyte can do almost anything with SQL. And there are also some recurrent contributors as Stew Ashton provinding very interesting solutions.
    Another option is to take a look at the answers in this forums: some participiants as Frank Kulash or Solomon Yakobson (to name just two of them) come up with astonishing pieces of SQL frequently.

  • Unable to start cacheconnect for Oracle

    I installed TimesTen on my machine (Windows XP) using default properties. When I try and start cacheconnect for oracle using ttCacheStart() I get a 10024 exception stating that OCI.DLL couldn't be loaded. I checked my path settings and everything seems to be in order. Can anyone shed some light on this?

    Hi Naveen,
    That's strange. Are you saying that you need to go into Services and change the "Log On As" setting for "TimesTen Data Manager 6.0" from "Local System" to the name of the Windows user who installed TimesTen, before you can start the Cache Agent?
    Were both the Oracle Client and TimesTen installed by the same Windows XP user? Does this user belong to the local Administrator Group?
    Simon

  • [SOLVED] I need a simple way to start/stop a virtualbox vm

    Hi,
      I need a very simple way to start a headless virtualbox vm on login, and cleanly save its state on system shutdown/reboot. I can't use solutions like vboxtool because my home directory is encrypted and only available after I login.
      I have written a simple script to do what I need:
    #!/bin/bash
    if VBoxManage startvm --type headless archdev > /dev/null 2>&1; then
    trap "VBoxManage controlvm archdev savestate > /dev/null 2>&1; exit" SIGINT SIGTERM
    while true;
    do
    sleep 10h
    done
    fi
      When I run this script in a interactive shell, all works as expected: It will successfully start the vm(archdev), and when I send SIGINT (using CTRL+C)  it will cleanly save the vm state. The problem I'm facing is that when I start this script as a background process(sufix it with a '&') it will successfully start, but it will fail to cleanly save state on shutdown, since it seems to  ignore signals send using 'kill' command(unless it is a SIGKILL). I highly appreciate an solution to this problem, by either explaining to me what is happening, or by providing an alternate one(as long it doesn't involve starting the vm with the system).
      Thanks in advance.
    Last edited by thiago (2011-09-04 14:54:44)

    cybertorture wrote:
    vboxmanage startvm --type headless VMNAME
    put this to start at login
    su -c 'vboxmanage controlvm VMNAME savestate' USERNAME
    put this to /etc/rc.local.shutdown
    Worked like a charm, thanks.

  • [Off topic] Need some hints where to start

    Hi,
    I've been out of C++ for around 9 years. (Doing java since then)
    For an upcoming project I have to get back into it.
    I've already done quite much execise with STL, boost and ICU.
    Now I'm looking for a solution for the following problem:
    I need some kind of RessourceManager, which is able to suspend
    some threads and dump their memory to disk. It must maintain
    dependencies between ressources and should be as transparanet
    as possible to the rest of the source code. It should have some config
    options like amount of memory to use, etc.
    I think a starting point would be an Allocator which is connected to
    a ResourceManager.
    Is there any standard way, which I haven't found, to do this?
    Greetings,
    Markus
    P.S.: Can someone point me which is the right mailing
    list for this kind of questions?

    A good resource for general C++ programming questions like yours is newsgroup
    comp.lang.c++.moderated

  • I need an simple example on java-Oracle8i entreprise

    Hi,
    Could anyone give me an simple example of a Java method which will be loaded into Oracle.
    Let say, the method will read the email address based on employee_ID from a table called Employee. Thank you very much for all your help.
    Hellenie
    PS: I would like to see java code and to see how it could call a table without having to deal with connection object ,statement,etc...
    null

    This is the example from the Oracle's 8.1.6 Documentation - Java Stored pocedures Developer's guide -
    step 1 :
    import java.sql.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class RowCounter {
    public static int rowCount (String tabName) throws SQLException {
    Connection conn = new OracleDriver().defaultConnection();
    // here is the connection made
    String sql = "SELECT COUNT(*) FROM " + tabName;
    int rows = 0;
    try {
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery(sql);
    // same old createStatement, executeQuery ...
    while (rset.next()) {rows = rset.getInt(1);}
    rset.close();
    stmt.close();
    } catch (SQLException e) {System.err.println(e.getMessage());}
    return rows;
    Step 2:
    use loadjava command line utility and
    specify the class name, username/password to
    load the code into the database.
    step 3:
    On sql prompt, the class and method name are
    mapped to stored procedure
    CREATE FUNCTION row_count (tab_name VARCHAR2) RETURN NUMBER
    AS LANGUAGE JAVA
    NAME 'RowCounter.rowCount(java.lang.String) return int';
    You can invoke the procedure using CALL method from SQL prompt.
    Cheers,
    Adithya
    null

  • Need some advice on exception seen with

    Exploring �sun.jdbc.odbc.JdbcOdbcDriver� bridge to determine if would fit a special task. Implementation will be on a Nonstop Tandem OSS environment. The URL and UserID and Password function to access a stored procedure from an SQLapp to the Tandem works. I tried de-compiling code to see if I could identify the missing method, tried hunting down any reference to the allocEnv method, but either I�ve spent too much time looking at the same problem or it is something very simple and just need some direction.
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String Tan01URL = "jdbc:odbc://tan01:port ";
    java.util.Properties prop = new java.util.Properties();
    prop.put("username", "UserID");
    prop.put("password", "Password");     
    String stmt = "{call get_actions (?, ?, ?, ?, ?, ?, ?)}";
       // Connect to the database
    Connection conn = DriverManager.getConnection(Tan01URL, prop);
         Throws this exception each time.
    Exception in thread "main" java.lang.UnsatisfiedLinkError: allocEnv
            at sun.jdbc.odbc.JdbcOdbc.allocEnv(Native Method)
            at sun.jdbc.odbc.JdbcOdbc.SQLAllocEnv(JdbcOdbc.java:142)
            at sun.jdbc.odbc.JdbcOdbcDriver.initialize(JdbcOdbcDriver.java:451)
            at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:153)
            at java.sql.DriverManager.getConnection(DriverManager.java:512)
            at java.sql.DriverManager.getConnection(DriverManager.java:140)
            at blendOdbc.main(blendOdbc.java:48)Ideas?
    Thanks

    The JDBC/ODBC bridge is not the best and most actively maintained piece of software in the world. Try not to use it if you have alternatives.
    In Windows JDK there is JdbcOdbc.dll which contains allocEnv() and the rest of the JDBC/ODBC glue written in C. You are running the Java program on Tandem or is that the server? Does its JDK have JdbcOdbc.so or however dynamically loadable libraries are named there?

  • I need  a simple example of shopping cart(newbie)

    Has any one come across a simple example of shopping cart and the process
    behind it i.e. from jsp to ejb. So far I have looked at the buybeans example
    and it still is not clear the approach that was used.
    I would be greatful for any assistance thank you
    Kenneth A-Adjei

    Take a look at:
    http://java.sun.com/docs/books/tutorial/servlets/overview/example.html
    "Ken Adjei" <[email protected]> wrote in message
    news:3960a901$[email protected]..
    Has any one come across a simple example of shopping cart and the process
    behind it i.e. from jsp to ejb. So far I have looked at the buybeansexample
    and it still is not clear the approach that was used.
    I would be greatful for any assistance thank you
    Kenneth A-Adjei

  • Need infn abt how to start with webdynpro in netweaver?

    hi
    i am fresher i need infn abt how to start up withg webdynpro
    pls send me links where i get all studu materials
    thank u

    Hi,
    There are lot of learning Tutorials are available in sdn itself.
    I suggest these links,
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/webcontent/uuid/8921447c-0501-0010-07b4-83bd39ffc7be">Getting Started</a>
    <a href="https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro">Webdynpro Java</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d">Webdynpro Sample Applications and Tutorials</a>
    Regards,
    Ramganesan K.

Maybe you are looking for

  • Fast refresh of materialized view

    Hi All, This is my first posting on this forum, so I hope I don't step on anyone's toes as I wade into a problem that I am experiencing. I have a number of either join-only or single table aggregate materialized views that I have experienced problems

  • Pop-up Blocker with adobe on BT-Yahoo under IE9

    I have installed BT-yahoo software with IE9 on Windows 7. Since the upgrade I am no longer statements or bills from bank or Electricity company when I request them. Their sites suggest adding the site address to pop-up blocker settings. This does not

  • How can i select other column values('-' separated) in group by function

    CREATE TABLE EMP (      EMPNO NUMBER(4) NOT NULL,      ENAME VARCHAR2(10),      JOB VARCHAR2(9),      SAL NUMBER(7) INSERT INTO EMP(EMPNO, ENAME, JOB, SAL) VALUES (7369, 'SMITH', 'CLERK', 800); INSERT INTO EMP(EMPNO, ENAME, JOB, SAL) VALUES (7499, 'S

  • Accidentally purchased the Adobe PDF Pack

    Hi! I accidently purchased the Adobe PDF Pack on 6th june 2014. I just wanted to use it it for one month. I didn't realise that it's monthly charging sunscription. Of course i need to cancel my sunscription as soon as it is possible. I don't want or

  • Airtunes with Airport Express - web with netgear DG834G?

    i have a netgear DG834G router which i use to connect to the web (and if you're reading this is it is working . I want my Airport Express to play airtunes, whilst i browse the web. I cannot even get airport Express to join the netgear network (in fac