Using AIA to jump start application integration platform for custom apps

Has anyone used AIA Foundation Packs as the core application integration framework for integrating custom developed applications?
My company has Oracle / PSft ERP applications, but I'm wondering if there is value in exploring the Oracle AIA Foundation Packs to help standardize / implement application and data integration solutions between our custom applications. Most of our application architecture portfolio are custom apps on legacy Oracle Forms platform and Oracle ADF; Oracle Java rich client (EJB / Swing) applications.
R

Hi R,
There are many AIA customers doing exactly the same. The value of standardizing the complete integration portfolio is very apparent and AIA Foundation pack provides you complete set of tools to achieve it.
Regards
Rohit

Similar Messages

  • How do you solve error "You can't use this version of the application Install Mac OS X.app with this version of Mac OS X" when trying to go back to leopard from lion?

    How do you solve error "You can't use this version of the application Install Mac OS X.app with this version of Mac OS X" when trying to go back to leopard from lion?
    Local Mac shop said to hold down "c" after inserting disk to get "disk utility" to come up in order to wipe hard drive.  I can't seem to get it to do this.

    This W7 was purchased for using Fusion, as others did - per reviews from amazon.  The technician today called their contact at VMWare - Fusion not officially for use with Lion - even though I read at the VMWare support site that others have made it work.  Apparently my setup doesn't work. 
    Do you know how to do the proceedure for bringing up the disk utility when starting the disk?
    BTW, some of the windows applications I want to continue using are Incredimail, Calendarscope, Stamps.com and a few others I have used over many years.  What do you use for email and calendar?
    Wow, sounds like another reason to not use MS Windows.
    Regarding your Disk Utility question, please elablorate I'm not sure what you're trying to do. Disk Utilty is just that...a utility, it's something most users never have to use especially on a new computer. Let me know what you're trying to do there before I give you some instructions.
    As for as your Windows apps I would recommend using Mail and iCal, both come as part of OS X and are very robust tools. Don't discount the software built right into OS X it's very robust and powerful not all like the bloatware most Windows boxes ship with. Stamps.com well I'd look for another alternative. It's clear they don't support OS X which makes me a little suspicious that they're so behind the times. 
    Also if you have not been exposed to these links before I'd strongly recommend bookmarking them and using them. They're extermely useful!
    Switch 101
    Mac 101
    Find Out How Video tutorials

  • I have an apple id for my ipod touch at home. My company is planning to issuing Ipads. Should I use the same apple id on the ipad for those apps I purchase and would like to purchase and use on my work ipad?

    I have an apple id for my ipod touch at home. My company is planning to issuing Ipads. Should I use the same apple id on the ipad for those apps I purchase and would like to use on my work ipad?

    Yes, otherwise you will have to pay for those apps again. If an app is purchased by one Apple ID, he/she will be able to redownload it again for no cost (note: this does apply to songs, but NOT to movies).

  • Why to use DI Server when I do have Integration Platform for SOAP messages?

    Hi All,
    a general question is to understand which may be the advantages of 'DI Server' versus 'Integration Platform' and vice versa when there is a need to integrate with a third party system (eg exchange SOAP messages). I don't know if there is already any material, blog etc
    Best Regards,
    Vangelis

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • Can I use Google Maps in iPhone application and charge for it?

    I'm looking to create a location-based application for the iphone that uses a map to display locations. I'd like to use a UIWebView to display Google Maps using their javascript API which shows a map hosted on my web site.
    When my app is finished, can I charge for it in the App Store, or will this be a violation of the Google Maps API Terms of Use?
    Are there any other non-free iPhone apps that embed Google Maps?
    Thanks, Scott

    My interpretation of the following:
    Google Maps API Terms of Service wrote:
    The API may be used only for services that are generally accessible to consumers without charge. Accordingly, You may not use the API for any service that requires a subscription or other restricted access, or for which a fee is charged.
    ... is that there's no way you can charge for an app that uses the API.

  • Interfacing application with SAP for Customer data

    Hello,
    I would like to build an interface between an external application and SAP for the customers. The Customer will be created and maintained in the external application and data should be updated in SAP automatically.
    I thought that I could use the idoc debmas but I am facing to issues :
    - Debmas doesn't update the data ( I have to fill again all the data to update the customer unless all the other data is cleared)
    - Debmas doesn't contains address data
    Is there any other way to build this kind of interface ? I would like to avoid specific programs.
    Thank you,

    Hi,
      Have you ever considered Direct Input method to upload your customer master records?
    RFBIDE00  is the standard sap program to upload.
    You can use LSMW to avaoid coding.
    Alternatively, you can extend the DEBMAS idoc to make it work the way you want to work.
    Regards,
    Ravi Kanth Talagana

  • BC4J Application Module Pooling for JClient App

    Helo,
    i wonder why all documentation about bc4j application module pooling available is for Web app ? (jsp) . I'm creating swing JClient app and i need some doc about how the application module pooling works in this kind of application.
    anybody know where can i get those docs ?
    Need help and Thank you,
    Ricky H.P.

    Connection pooling can be achieved when a JVM instance manages the pool, in 3tiers the Java App. Server has that task.
    If you are 2tiers that means that you are communicating with the database through JDBC.
    When a user launches your JClient app in fact he lauches his own JVM instance so I don't how he could share a pool with other users.
    In your case you have at most 2 open transactions per user.
    You can achieve that by sharing a same binding context with n forms composed of m panels.
    Let's say:
    1 main form
    connection 1: forms a,b,c
    connection 2: forms x,y,z
    In your main form your open your 2 connections and share them.
    You can achieve that by:
    1) in our main form, initialize 2 binding containers
    Example of one:
    DCBindingContainer bc1 = this.createBindingContainer("package name","model name");
    private DCBindingContainer createBindingContainer(String packageName, String panelModelName)
    StringBuffer sb = new StringBuffer(packageName);
    sb.append(ViewConstants.STRING_DOT);
    sb.append(panelModelName);
    DCBindingContainerDef bcdef = DCBindingContainerDef.findDefObject(sb.toString()); //NOTE THE NAME.
    if (bcdef == null)
    throw new JboException("System error, "+getClass().getName()+".createBindingContainer, DCBindingContainerDef: "+sb.toString()+" not found");
    DCBindingContainer bc = bcdef.createBindingContainer(panelBinding.getBindingContext());
    bc.setName(panelModelName);
    panelBinding.getBindingContext().put(panelModelName, bc);
    return bc;
    2) Before that the jbInit method gets called in the called form, set the binding context:
    form1 = new Form1(...);
    form1.setBindingContainer(bc1) ;
    Example of methods in form 1 and form 2:
    public void setBindingContainer(DCBindingContainer ctr)
    this.panelBinding = (JUPanelBinding)ctr;
    setBindingContext(ctr.getBindingContext());
    public void setBindingContext(BindingContext bindCtx)
    if (panelBinding.getPanel() == null)
    panelBinding = panelBinding.setup(bindCtx, this);
    registerProjectGlobalVariables(bindCtx);
    panelBinding.refreshControl();
    try
    System.out.println("Form setBindingContext calling jbInit");
    jbInit();
    panelBinding.refreshControl();
    // FL added
    isBindingContextSet = true;
    System.out.println("Form isBindingContextSet true");
    catch(Exception ex)
    System.out.println("Form setBindingContext exception caught");
    panelBinding.reportException(ex);
    Regards
    Fred

  • Can You have roman numerals for the first few pages of a document and then use normal numbering and start back at 1 for the rest?

    I am writing my theses and want to start with Chapter 1 on page one,
    Thanks

    Menu > Insert > Section Break
    and change the numbering in:
    Inspector > Layout > Section > Start at: > uncheck Use previous headers and footers
    Menu > Insert > Auto Page Numbers/Page Numbers
    Right click on the Inserted number to choose its format.
    Peter

  • Use Ajax with OAF developed in JDeveloper 9i for Oracle Apps 11.5.10.2

    Hi,
    I am looking to use Ajax to have the same Google type functionality to be impelmented in OAF pages.
    Example : Searching of employee names, organization etc.
    JDeveloper version is 9i
    Oracle Apps - 11.5.10.2
    Please advice.
    Thanks,
    Anirban

    I dont think thats possible using OAF. OAF is not designed with AJAX in mind.

  • HT204053 I tried to use a card and it will not work for my App Store

    I tried to put a different card on file but it won't let me

    By not letting you, you mean ... ?
    If you are trying to use a debit card then I don't think that they are still accepted as a valid payment method - they are not listed on this page and there have been a number of posts recently about them being declined
    If it's a credit card then is it registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is and it's being declined then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management
    If it's something else then some info as to what happens and when would be useful.

  • HT1349 I was using a joint itunes account with my partner for downloading apps etc, I have an iphone 4 and partner as an ipod but i thought it would best to have my own account,that was fine but

    I would like to have my apps under my own itunes account as most of them where with a joint account as i have an app where it comes up under my own account but when you want to purchase something from that app it wont allow, as it was 1st bought on the joint account and i dont want to loose all the information, and i also have a few other apps that has alot of info that is stored on them which i dont want to loose how do i rectify this?
    Thanks
    Finlay

    All Apps Downloaded are Tied to the Apple ID that First Purchased them... You cannot Merge Apple IDs...
    Apple ID FAQ
    http://support.apple.com/kb/HE37

  • Javafx application integration in a web page

    Hello, I did javafx application with a database, and now I want to publish on the net.
    I have uploaded the files:
    - project.html
    - project.jar
    - project. jnlp
    - project.jar.pack.gz
    - index.html:
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>>TravelsGo</title>
    </head>
    <body>
    <h1>TravelsGo</h1>
    <script src="http://dl.javafx.com/1.3/dtfx.js"></script>
    <script>
        javafx(
                  archive: "project.jar",
                  draggable: true,
                  width: 640,
                  height: 480,
                  code: "project.Main",
                  name: "project"
    </script>
    </body>
    </html>I did not understand what do I do with the database, it works locally, but trying to view the application on a web page gives me error
    you can watch here: http://travelsgo.altervista.org/
    I hope someone can help me.
    Thank you.

    Hi,
    Thanks for answering. I must tell us that I'm so newbie in these themes and I have a little knowlegde of this.
    I've browsing through the JNLPAppletLauncher option, but I have more questions about that.
    First of all, I'll expose the application I'm working. The application is a SIP-client, specifically SIP-Communicator (http://sip-communicator.org/), and I want to embeebed in a web browser. I've been trying to make an applet from the application with helping by a tutorial, but it's impossible because I have other version than version which was used to build the applet. So that option, we could say that is closed.
    The another option is to use Java Web Start, there is another tutorial for that and I can say that It should work more or less.
    Thus, I need to give the java web start application an appearance of applet (but it can't be an applet), i. e., the java web start application has to run in the web browser.
    As I far I know if I use JNLPAppletLauncher I have to build an applet that would be launched through a jnlp archive. havent't I?
    What do you think about that, Do you see that java web start application integration in the web browser is possible?
    Thanks a lot and best regards
    Pedro

  • Java Web Start 1.6 fails to start application without Java Consol on Vista

    Hi All,
    I've faced with problem related to starting my application in IE 7 on Vista SP1 using Java Web Start (JRE 1.6.0_12 and 1.6.0_13). I suppose that issue appears after 11th update of JRE 1.6 since it works fine before.
    There were set settings to indicate initial and maximal size of the Java heap in the JNLP file.
    Application consist of 2 JAR files and they are signed with the same certificate.
    When user tried to start application there is no any activity after accepting certificate. After starting application javaw.exe just disappeared from processes list without any message or error.
    When I changed default setting in Java Control Panel to show Java Console, I noticed that the application began to start. But it's not a solution of the issue, since all customers cannot be required to turn on Java console.
    I believe this is a bug in JRE as the application starts with Java console and doesn't without it.
    When I browsed the web looking for the solution or an advice I found Release notes for 1.6.0_014 where it was said that 6u14 Java Web Start failed to launch and notifies that JARs were not signed, if an insecure Java system property was specified in a sandbox JNLP file. In spite of that 14th updated wasn't used and there was no notification I tried to start application without settings for the Java heap and it worked.
    Could someone help me with advice, since the application cannot be started with default heap size settings.
    Thanks in advance.
    Edited by: vovanst on Jul 28, 2009 8:06 AM

    Hi,
    as the 6u15 just arrived and the above mentioned bug should've been fixed (though I was unable to verify through the release notes), the error is still in there.
    We have no timestamped jars, neither ours nor the bouncy castle ones, all certs are valid, ours is self signed.
    6u13 runs, 6u14/6u15 won't.
    I followed the instructions here: http://bouncycastle.org/devmailarchive/msg10415.html to no avail.
    The bcprov.jar is wrapped in its own jnlp and referred as extension from the "main" jnlp.
    The interesting parts of the stack trace are these:
    Caused by (via getCause): java.lang.SecurityException: JCE cannot authenticate the provider BC
         at javax.crypto.Cipher.getInstance(DashoA13*..)
         at javax.crypto.Cipher.getInstance(DashoA13*..)
    Caused by (via getCause): java.util.jar.JarException: Cannot parse https://localhost:8443/deploy/bcprov.jar
         at javax.crypto.SunJCE_c.a(DashoA13*..)
         at javax.crypto.SunJCE_b.b(DashoA13*..)
         at javax.crypto.SunJCE_b.a(DashoA13*..)
         at javax.crypto.Cipher.getInstance(DashoA13*..)
         at javax.crypto.Cipher.getInstance(DashoA13*..)
    For me it seems there's a problem with resolving the url of the bcprov.jar, which would explain the lack of a delay which normally occurs when JCE verifies the signature of the bcprov provider classes. The error pops up almost instantly.
    I'm clueless what to do now. Did Sun really achieve to completely destroy JCE provider functionality in Javaws, forcing us to use an alternative implementation?
    Patric

  • Problem while implementing  Application Integration for Yahoo

    Hi,
       Im trying to communicate with yahoo server by using Application Integrator. For this I have uploaded the PAR file, created System Template, system Object and Alias also.
    when come to User Mapping Im able to find my system that is myYahoo, but not able to enter user and password details. Those fields are inactive.
    can any one help me with this?
    Regards,
    Ravi.

    Hi vasu,
            Thank you very much. It really worked..
    And i got one more problem. After user mapping, I have created an iview. And have given
    URL template as
    <System.protocol>://<System.server><System.uri>?<Authentication>
    and URL template fraction for user mapping as
    login=<MappedUser>&passwd=<MappedPassword>.
    but Im getting runtime error as
    Unable to process template   '<System.protocol>://<System.server><System.uri>?<Authentication>', because 'protocol' is an invalid terminal property of the context 'System.'..
    Can u plz guide me regarding this.
    Thanks,
    Ravi.

  • "Unable to start application" on Handset and Simulator

    hey there,
    i'm having some problems getting any flash lite content to
    run. i get a message that reads "unable to start application"
    whenever i launch my apps on the handset and in the simulator.
    i installed flash pro 8 (trial) on my system, installed the
    flash lite 2 update, installed the flash lite 2.1 post processor
    plug in and publish the files fine. i went to qualcomm's
    developer's extranet and downloaded the flash lite 2.1 for brew
    devices module. i also loaded the flashlitemod module and the
    brewsaplayer module.
    i even tried running the included example from the qualcomm
    extranet (called "usingbrewsaplayer"). anybody else experience this
    or know what could possibly be wrong? any help would be
    appreciated!
    thanks

    You need to install the BREW SDK 3.1.x first, restart your
    system and then install the FL publisher for BREW. During the
    install process for the FL publisher for BREW it will check to see
    if you have the BREW SDK 3.1.x installed - if it does then it will
    copy over the necessary DLL files to allow you to preview your FL
    apps (MOD/MIF) in the BREW simulator.
    So uninstall the FL publisher for BREW, restart your system.
    reinstall the FL publisher for BREW, restart and then test your
    MOD/MIF files in the simulator.
    For example if your app is called "ball" and the FL publisher
    for BREW published the DLL, MOD and MIF files you will need to do
    the following:
    1) copy the "ball.mif" file to C:\Program Files\BREW
    3.1.4\sdk\examples
    2) create a folder called "ball" here C:\Program Files\BREW
    3.1.4\sdk\examples, so you should have "C:\Program Files\BREW
    3.1.4\sdk\examples\ball"
    3) copy the "ball.dll" file to C:\Program Files\BREW
    3.1.4\sdk\examples\ball
    Launch the BREW simulator and you should see your application
    as a broken icon show up in the menu structure and the applet name
    you defined will appear as well. If you select the app (press OK
    button on phone) your app should work in the simulator.
    Let us know if this works.

Maybe you are looking for