Main menu:

 

PALMA IT

Locations of visitors to this page

Site search

  • Categories

  • Archive

    November 2008
    M T W T F S S
    « Oct    
     12
    3456789
    10111213141516
    17181920212223
    24252627282930

    Archive for 'J2EE Frameworks'

    JDev 11g: The First Impression

    Although there have been preview releases available for some time, last week the production release of JDeveloper 11g came out. And because I finally had some time to have a look at it, I decided to give it a go. I have been using JDeveloper since version 3.1 and as you can imagine, I have [...]

    Using StAX with Spring WS

    As I have posted before we are using XFire to implement our web service. Unfortunately, we are running into some serious issues with the framework, so we decided to look after another implementation. Since XFire is no longer supported by the community (or at least at a very low profile) and ‘replaced’ by CXF, we [...]

    Making use of JSF Security without JAAS Roles

    If you are using some kind of authorisation in your JSF application, you might have a look at the JSF Security project, if you haven’t done already. The reason why the JSF Security extension is developed is:
    “The initial problem that the extension solves is to extend the JSF Expression Language (EL) syntax to provide [...]

    Oracle ADF Medior: Deployment of ADF Applications and using connection pools

    When you are just starting with Oracle ADF and JDeveloper, there are a lot of tutorials and hands-on documents which you can use to build your first ADF application. The embedded OC4J in JDeveloper makes it very easy to develop and test your application. But at some point you want to deploy your application to [...]

    Oracle ADF Medior: Showing Oracle Reports in a popup window

    When combining Oracle ADF and Oracle Reports, you might want to open a report in a new window by clicking a button in a ADF page. Anyway, this is exactly what I wanted on my latest project. When searching the internet I did find this post that describes a possible solution. But this solution wasn’t [...]

    Oracle ADF Basic: Partial Page Rendering with input and outputText

    In one of our screens in our application (ADF BC + JSF) we had to make it possible to quickly enter data (to insert new records) without having to select a dropdown or List of Values, but with validation against the database. To implement this, we make use of PPR (Partial Page Rendering, a great [...]

    Oracle ADF Basic: Making use of the ApplicationModule Session

    If you have to use a where-clause being based on session-scoped parameters in several viewobjects, it might be good to know you also have a session scope in Oracle’s ADF BC Application Module. You get access to it by simply calling getSession() in your ApplicationModule. On the Session object which you then receive, you can [...]

    Problem with customized skin in Oracle ADF Application

    For an Oracle ADF application (ADF BC + JSF 10.1.3.3) we are using a customized skin. This is a very powerful technique to have the look and feel of a JSF application being based on the companies wishes. With a few changes in an existing skin (that is for instance supplied by Oracle) you can [...]

    Oracle ADF Medior: Rendering images based on BLOB columns

    For my current project we are building an application with Oracle ADF 10.1.3.3 (ADF BC + JSF). One of the functionalities they want is to show images that were stored in a Blob field in the database at a JSF page. After a short search it appeared that this can be rather easily done if [...]

    Oracle ADF Basics: Getting values of the multiselected rows in an af:table

    In a former post I described how you could get access to the selected row in you af:table in your backing bean. This post takes it a step further and shows you how to deal with a multiselect table.
    Let us first look at how to create a multi select table. Because this can’t be done [...]