The Latest

DevX - Software Development Resource

Advanced JMS Messaging with OpenJMS

n a previous article I covered some of the basics of JMS using OpenJMS as the JMS provider. In this article, you’ll see some more advanced OpenJMS topics such as

DevX - Software Development Resource

Use Generics to Create an Audit Trail

he Whidbey release of .NET will include a new Common Language Runtime (CLR) feature called generics. Generics allow you to use a variable to represent a desired data type, and

DevX - Software Development Resource

Using XPathDocument in XPath Queries

Don’t use the XmlDocument class if you are going to work with XPath queries. .NET has its own class for this purpose called XPathDocument, which does not run any validation

DevX - Software Development Resource

Ensure Network Safety with Centralized Logging

ver the past few years, the number of Windows-based worm attacks has grown dramatically. Companies have implemented full-scale virus scanning and Windows update facilities to help stop the worm attacks.

DevX - Software Development Resource

Managing .NET Code Access Security (CAS) Policy

ode Access Security (CAS) is the .NET Common Language Runtime (CLR) mechanism for maintaining security based on the identity of code. Most developers don’t have to work with CAS on

DevX - Software Development Resource

Linux Unwired: Using Bluetooth

inux Unwired teaches you to install and configure a variety of wireless technologies to fit different scenarios, including an office or home network and for use on the road. You’ll

DevX - Software Development Resource

Generate a String of Specified Characters and of Desired Length

The following function generates a string of specified characters and of desired length: public static String getStringOfChars(char ch,int length) { StringBuffer sb=new StringBuffer(); sb.setLength(length); return sb.toString().replace(‘u0000’,ch); } Related Posts Employ

DevX - Software Development Resource

SQL Server 2000 Replication 101: Replication Agents

eplication agents are the basic components of SQL Server 2000 replication. Before you settle on the type of replication you want in your application architecture, it is important to understand

DevX - Software Development Resource

Big Tech·Ed Accelerates Big-Tech Breeding Frenzy

o matter what Microsoft representatives said this week at its Tech·Ed conference in San Diego, the message that the company is delivering to the roughly 11,000 IT administrators and developers

DevX - Software Development Resource

Sorting in the .NET Framework

n .NET, sorting arrays or collections of primitive types is a relatively simple task. Most developers understand that for a collection of numbers or strings, the runtime will know how

DevX - Software Development Resource

Behold WSE 2.0: Removing Another Layer of WS-Pain

he official release of Microsoft’s Web services Enhancements (WSE) toolkit promises to help developers deal with at least some of the pain and suffering accompanying the emerging Web services’ standards.

DevX - Software Development Resource

Create a New XML File Using XmlDocument

Here’s the XML File: XML This is a list my XML articles. true Here’s the code: Related Posts EnterpriseDB?? Offers New Program to Oracle?? Customers Affected by SE2 Licensing ChangeChina’s

DevX - Software Development Resource

Showing Some MVP Love

t’s always great to be recognized for doing a great job or helping someone out. That was the original idea behind Microsoft’s MVP (Most Valuable Professional) program. In Microsoft’s (collective)

DevX - Software Development Resource

Comparing Things

ne thing I’m pretty sure of is that boys like to compare things. Yes, I know what you’re thinking?that’s not where I’m going here. I have a vivid recollection of

DevX - Software Development Resource

So Many Choices, So Little Time

he 1st quarter of this year has been one of the most challenging and interesting quarters for me in some time. I have been working with a client to help

DevX - Software Development Resource

Finish Your Week with .NET Rocks!

his is the first in a series of what I hope will be one of your favorite columns for years to come! I am the host of a talk show

DevX - Software Development Resource

Async-Up Your Objects

art of good component writing involves designing and developing components with the idea that developers other than you will use them. A good practice is to use conventions that are

DevX - Software Development Resource

A Practical Guide for Integrating EJB and Struts

ou’ll find plenty written about building and deploying EJB, and perhaps equally as much about building applications with the Struts framework. But what about leveraging EJB and Struts together? This