Development

Configure Hudson Subversion Credentials

When hudson is using a secured subversion repository you need to supply the credentials for the used repository. You can enter your credentials using the following url: You will get a screen where you can register credentials connected to a...

Getting started with Hudson

To get started with hudson you need to download the latest hudson version Winstone is included in the war file so with a single command you can start hudson...

Include integration tests in maven build with TestNG

To execute integration tests you can use testNG an other test framwork bases on junit framework. Test Suite Just create a simple testNG suite defined in a XML format: Annotations It calls the following Selenium test case where i have created a simple login script that logins with the supplied username and password (annotated with testng annotations ). It validates the tests if a valid or invalid repose is available in the HTML page. Used annotations: @BeforeClass you specify...

Getting started with Weblogic Scripting WLST

Using WLST is a good practice to specify configuration etc. How many times did you encounter that data sources where not configured as specified. Administrators are using configuration wizards to manual apply configurations. This is a time consuming process and can easly be simplified by using scripting language. In software development we are using this already a long time. Using ANT or Maven to compile application sources and run automated tests. Still using scripts is often seen as a...

Install Oracle Service Bus and SOA suite in same server

Today i installed a fresh Weblogic Development server for development. I decides to install SOA suite an OSB in on the same server following the blog OracleServiceBus in same Server of Manoj Neelapu. This is a great way of saving resources while running a Weblogic Server configuration. Chris Tomkins has made a viewlet demonstrating his installation steps: Creating a single server domain with SOA Suite and Oracle Service Bus...

INST-07417 error while installing OSB 11g

Today i was installing osb 11g on my vm ware server when i encounterd the following error: During the installation i have chosen all the available components: Oracle Server Bus Server Oracle Service Bus IDE Oracle Service Bus Examples I decided to not install the examples to see if that would help. I continued the installation and didn't receive any errors. I got a nice installation summary. It's quite strange that you can't install the Examples directly with the...

ADF checkbox representing a yes or no value

In ADF you can present values as {'Y','N'} or {'YES' ,'NO} with a dropdown box. But when you have to have a high usability of you application you would like to use checkboxes for boolean values instead of drop down boxes. In ADF this can be achieved by putting the values into a LOV and adjust the display type to checkbox. To show how it's done i have made the following step by step example: I have created in the hr schema of the database a person table with different boolean...

Oracle APEX 4.0 Released

Today Oracle APEX 4.0 got released!! Download the new version...

Using ADF GeoMap component

In preparation of an Oracle Spatial Presentation i have made a sample on how to implement Spatial data into an ADF Application. For this demo i used the sample data that comes with the MapViewer application. If you don't have this sample data please install that first before you continue. Start your 11g JDeveloper Version Start your JDeveloper 11g and create a new application. Give your application a name and a location. For the windows users don't use any spaces in your...

Integrating Google Maps with ADF

James Taylor has written a nice blog on how to integrate Google Maps into an ADF application. It's also a nice example on how to integrate javascript into an ADF...