We are an award-winning tech entrepreneurship website where trusted experts can provide value globally.

Since 1998, DevX has helped people start businesses, build websites, and provide enterprise technology to people globally. Interviewing the likes of Microsoft’s co-founder, Steve Ballmer, the publication brings comprehensive, reliable, and accessible insights to the Internet.

devxlogo

Trusted for 26 years

Over 30K Articles

1M+ Readers

Expert-reviewed

10K+ Tech Terms

As seen in:

microsoft logo
business_insider_logo
wired_logo
berkley
arstechnica_logo
hackernoon

The Latest

DevX - Software Development Resource

Using a Function Call as an Lvalue

An Lvalue is an expression that can appear on the left-hand side of an equals sign. Likewise, an Rvalue expression appears on the right-hand side of the equals sign. Therefore

DevX - Software Development Resource

Using Java to Handle Custom WSDL Data Types

he onslaught of Web services messaging and XML-based data transfer has led to a need to express these message exchanges in some structured way. The Web services Description Language (WSDL)

DevX - Software Development Resource

View the Bytecode Contained in a Java Class

If you look in the bin directory of a regular Java2 SDK installation, you’ll find a ‘javap’ application (javap.exe), which you can use as a disassembler by adding the -c

DevX - Software Development Resource

XMI: Using C# to Capture UML Models

n my last article, I introduced XMI, an incredibly useful XML standard for interchanging models. Because XMI uses XML and XML is just text, using a schema or standard, it

DevX - Software Development Resource

Platform Proliferation Powers PDC 2005

icrosoft opened the PDC this year to a sold-out crowd eager to see the Redmond giant’s future plans. And they weren’t disappointed. Not only is Microsoft showing off future systems,

DevX - Software Development Resource

Get Familiar with J2SE 5.0 Collections

he collections API has always been one of the most important aspects of the Java Development Kit (JDK). Nearly every Java program makes use of collection classes such as HashMap,

DevX - Software Development Resource

Classloader Diffculties with JBoss

When you deploy two Web applications as Web archives (WARs) into JBoss’ deploy folder, you expect them to run independently of each other. But this does not happen. WebApp1.war +

DevX - Software Development Resource

Initializing a TextBox

There are two ways to initialize a TextBox whose TextMode is “password” with a default password:

DevX - Software Development Resource

Arrays as Pointers in C++

In C++, arrays and pointers are inextricably linked. The elements of an array are stored in consecutive memory addresses on the computer and the name of the array is equivalent

DevX - Software Development Resource

Dynamic <div> Tags

Use JavaScript to make a tag dynamically and then adds code to handle the onmouseclick event to it.”: /*The following code generates a div in javascript dynamically and add events

DevX - Software Development Resource

Using XML in Java Gets Easier with DOM4J

f you have worked with XML in Java applications during the past few years, you know the pain of parsing and extracting XML data inside the application. The process required

DevX - Software Development Resource

Achieving IIF Functionality in T-SQL

The syntax for the IIF command in T-SQL is: select case when then when then ….else endfrom In the following example, the bit data type will store either 0 or

DevX - Software Development Resource

Locating the Fonts Available to Your Java Apps

One way to find which fonts are available to your Java programs is to call the getFontList method of the java.awt.Toolkit class. It returns an array of font names. Although

DevX - Software Development Resource

Message Transformations in BizTalk Server 2004

essage transformations have long been an integral part of EAI projects. Disparate systems participating in an integration project need transformations as dictated by their respective standards. As an EAI tool,

DevX - Software Development Resource

Using Annotations with Aspects in Pre-Java 5 Versions

spect oriented programming’s (AOP’s) rapid rise in popularity inspires both fear and worship?and for good reasons?it’s a very powerful software development technique that separates business logic from the infrastructure services

DevX - Software Development Resource

What’s New in .NET 2.0 for Assemblies and Versioning?

he third release of the .NET Framework (version 2.0) introduces many changes and innovations not just in the application frameworks, but also in the essential mechanics of assemblies themselves. Microsoft