The Latest

DevX - Software Development Resource

Implementing an Enterprise Service Bus in Java

ntegrating old and new components and services using a service-oriented architecture (SOA) requires an infrastructure that can connect any component or service, regardless of location, messaging protocol, and message format.

DevX - Software Development Resource

Execute EJB JUnit Tests in Your Deployed Apps

esting is an integral part of any development process. JUnit, an open-source, regression-testing framework written by Erich Gamma and Kent Beck is a popular tool for building Java unit tests.

DevX - Software Development Resource

Post to Another .aspx Page

ASP.NET Web Forms post back to themselves?even if you add an explicit action attribute in the tag, ASP.NET overrides that action and posts the form to the original filename. You

DevX - Software Development Resource

Display itemdata in a ComboBox

This code shows how to display specific itemdata in a ComboBox. Currently, only the listindex property is available to navigate through a ComboBox. ‘ Consider a set of employee details’

DevX - Software Development Resource

A C++ Mutex Operation for Intel-compatible Processors

Interprocess synchronization has always been classified as a “slow” operation, but that is largely only because the Windows implementation requires switching to kernel mode (an expensive operation) each time you

DevX - Software Development Resource

Install OpenBSD to Secure Your Web Server

he OpenBSD team prides itself on producing one of the most?if not the most?secure operating systems in the world. If you are concerned about keeping the sensitive data within your

DevX - Software Development Resource

Using Inheritance in CSS

Suppose you have a table and you need to give styles to all the tags. Using inheritance to do this helps you avoid generating more content to be delivered to

DevX - Software Development Resource

Using T-SQL to Check Whether a Table Exists

Assume that an application creates a new table every month. The table name can be coined using some pattern, like sales0501, sales0502,, etc. To identify whether a particular table exists

DevX - Software Development Resource

Using the Observer Pattern to Update Dependent Objects

any applications need to update their components based on information input coming from a single source. It’s often important for these applications to maintain consistency among these components at any

DevX - Software Development Resource

An Efficient Method of String Concatenation

A good way to concatenate strings in a loop or when performing multiple concatenations, is to use the StringBuilder class: String s = “a”s+=”b”; //this is slowStringBuilder sb = new

DevX - Software Development Resource

Get All Locales Supported by the Java Runtime

This code segment returns all the locales supported by the Java Runtime: // ListSupportedLocales.javaimport java.util.*;// other code to go here.Locale[] localeList = Locale.getAvailableLocales( ); for (int i=0; i