January 11th, 2006
Over the weekend, my laptop was running slow so I decided to run defrag after about 10 hours of it running I decided to cancel the defrag and rebooted my system. The system gave an error similar to “Windows XP can not boot required DLL missing”.
Read the rest of this entry »
Posted in System Admin | No Comments »
January 10th, 2006
Sun Microsystem’s Java Developers Kit (SDK) is a set of tools that are needed to develop Java programs and applets. The latest SDK can be found at: http://www.javasoft.com/. The JDK contains:
• javac – Java compiler
• java – Java Interpreter
• jdb – Java debugger
• appletviewer – Java applet viewer
• javadoc – API doc generator
• applet API documentation
• Java Programming guide
Posted in Course | No Comments »
January 10th, 2006
The Java language was used in several projects while it was being designed. Originally Java was intended for use in programming consumer devices. However, it turned out to be a great language for programming for the Internet.
Read the rest of this entry »
Posted in Course | No Comments »
January 6th, 2006
Configuring the JDBC jndi name in RAD ia a lot harder than it needs to be.
Here is how to do it.
Read the rest of this entry »
Posted in J2EE, JDBC | No Comments »
January 3rd, 2006
Example I got working:
Sokkit: 4.0
JDK: 1.5.0_05
Tomcat: 5.0.28
- Download and unzip the sokkit_tomcat kit
Read the rest of this entry »
Posted in Servlets | No Comments »
December 30th, 2005
I have written a multithreaded hash table framework. You can put multiple tasks to do work for you with a simple “put” with a key,Then when it completes you can do a “get” to return the data worked on. The “get” will block until that requested thread is finished working.
Read the rest of this entry »
Posted in Code Examples, Performance, multithreading | No Comments »
December 29th, 2005
Here is a small example of a simple text file reader.
TextFileReader.java
Posted in Code Examples | No Comments »
December 27th, 2005
I recently tried to get a container managed transaction message bean to read from a MQ queue then read from an oracle database. I got an error indicating that I did not have XA Transactions turned on in my MQ queue. Then I dug a little deeper….
Read the rest of this entry »
Posted in J2EE, Performance | No Comments »
December 16th, 2005
I wanted to profile an ATG Dynamo 6.4 app, so I down loaded a 10 day trial version of Optimizeit 6.0, but it only came with instructions for configuring ATG Dynamo 4.5.
So here are the instructions for configuring Optimizeit with ATG Dynamo 6.4
Read the rest of this entry »
Posted in Performance | No Comments »
December 15th, 2005
Earlier in the week I did some testing of MQ with message beans.
This is what I got.
10,000 very small messages of 10 bytes going through 1 queue with persistence turned on takes about 37 seconds.
10,000 large messages of 10,000 bytes through 1 queue with persistence turned on takes about 90 seconds
Technorati Tags: Java, ATG, Performance, Optimizeit , Dynamo
Posted in J2EE, Performance | No Comments »