My Blog

All about my activities, Ideas and everything.

Month: May, 2008

Basic HTML tab, using javascript

This will show how to create tabs control in HTML. CODE JAVASCRIPT var ids = new Array(‘tab1′,’tab2′) // declare array of tabs ?? CODE JAVASCRIPT function switchID(id) // function for switch between tabs { hideAllID(); // hide all the tabs showDivID(id); // show the selected tab } ?? CODE JAVASCRIPT function hideAllID() // function for [...]

Oracle Application Server : Error starting JMS-Server

Well, one day I just finished my work. I shutdown the computer. Everything looked nice. But when I came home, and I tried to start my OC4J. It threw me an error, so I couldn’t start my OC4J. I searched through My.Google. And find something that might useful. If the server has been shutdown properly. [...]

Create OC4J instance by using command-line

Because I’m using Oracle Application Server 10.1.3 and I could not find create oc4j instance, So I have to use command-line to create one. CODE $ createinstance -instancename yourinstancename and then enter the password. That’s it