MagPortal.com   Clustify - document clustering
 Home  |  Newsletter  |  My Articles  |  My Account  |  Help 
Similar Articles
JavaWorld
December 2000
Brett McLaughlin
Validation with Java and XML schema, Part 4 Taking validation beyond simple if-then-else structures, XML schemas can provide a better way to validate data in Java applications. You'll parse the XML schema, build up Java representations of the schema's constraints, and learn how to apply those constraints to data in an application... mark for My Articles similar articles
JavaWorld
October 2000
Brett McLaughlin
Validation with Java and XML Schema, Part 2 A roadmap for taking Java method parameters and validating them against constraints in an XML document. Various approaches will be examined, and you will begin to actually code the utilities for converting those XML constraints into usable Java utilities... mark for My Articles similar articles
JavaWorld
December 2001
Sam Brodkin
Use XML data binding to do your laundry This article walks you through two frameworks for generating Java classes automatically from XML data constraints: Sun's Java Architecture for XML Binding (JAXB) and Castor from the Exolab Group... mark for My Articles similar articles
JavaWorld
May 2002
Leon Messerschmidt
Take the sting out of SAX Although SAX (the Simple API for XML) parsers are handy tools for parsing XML content, developing and maintaining a SAX parser can prove difficult. This article shows you how to use the information contained in XML Schemas to generate source code for a skeleton SAX parser... mark for My Articles similar articles
JavaWorld
May 2000
Jason Hunter & Brett McLaughlin
Easy Java/XML integration with JDOM, Part 1 JDOM is an open source API designed to represent an XML document and its contents to the typical Java developer in an intuitive and straightforward way.... mark for My Articles similar articles
JavaWorld
September 2000
Andre Tost
XML document processing in Java using XPath and XSLT The XSLT and XPath standards provide a way of handling certain problems that is more elegant and efficient than simply using the DOM API. In fact, using DOM, XSLT, and XPath together, applying each to different problems, will lead to the best code... mark for My Articles similar articles
JavaWorld
July 2000
Jason Hunter & Brett McLaughlin
Easy Java/XML integration with JDOM, Part 2 JDOM is a new API for reading, writing, and manipulating XML from within Java code. In Part 1 of this series, Hunter and McLaughlin explained how to use JDOM to read XML from an existing source. In this final part, they focus on how you can use JDOM to create and mutate XML. mark for My Articles similar articles
JavaWorld
December 2000
Victor Okunev
Validation with pure Java The importance of employing a good data-validation framework cannot be overestimated. The core Java API has everything you need to solve this problem in the most elegant way. mark for My Articles similar articles
JavaWorld
September 2002
Frank Sommers
I like your type: Describe and invoke Web services based on service type The Web Service Description Language (WSDL) provides an XML grammar for defining and advertising a Web service, including a service's type. This article gives an overview of how to describe a Web service with WSDL using Apache Axis tools and Java. mark for My Articles similar articles
JavaWorld
April 2002
XML documents on the run, Part 3 This final article of a three-part XML document series looks at two pull parsers based on the new Common API for XML Pull Parsing (XMLPull), then wraps up with an XML parser performance showdown. Will the pull challengers defeat the reigning SAX2 champions? mark for My Articles similar articles
JavaWorld
May 2001
Markus Dorn
Reading objects is easy with SAX By following some simple rules when mapping objects to XML, you can easily read object structures, even complex ones, from XML. See how you can use SAX to eliminate that complexity... mark for My Articles similar articles
JavaWorld
March 2001
Andy Krumel
Jato: The new kid on the open source block The Jato API converts XML documents into Java objects and back again. In January, Andy Krumel publicly released the API in beta form at SourceForge. Based on the observation that transformations are mechanical and tedious, with Jato a simple XML script describes the XML/Java mapping. mark for My Articles similar articles
JavaWorld
September 2002
Joe Walker
XML glossary With XML evolving at a rapid pace, many developers get lost in a sea of acronyms. This article defines many XML technologies crucial to Java developers mark for My Articles similar articles
JavaWorld
September 2000
Brett McLaughlin
Validation with Java and XML schema, Part 1 While Java provides type safety, it lacks a rich means for setting data constraints. In this series, Brett McLaughlin solves that problem; he looks at why Java alone is insufficient and examines XML schema as a way to set up rich constraints for data used by Java programs... mark for My Articles similar articles
JavaWorld
November 2000
Abhilash Koneri
Eliminate tedious programming: Recover data with XML and Reflection The parsing of ResultSets forms one of the most significant tasks involved in retrieving data from a database. But, as a repetitious and uninteresting assignment, it is not a favorite among developers. How to supplant ResultSet parsing in the data access objects... mark for My Articles similar articles
JavaWorld
February 2002
Victor Okunev
Generate JavaBean classes dynamically with XSLT For some projects, you need a more flexible business object structure. This article lays a foundation for a simple framework to build truly adaptive systems, saving you hours of routine programming... mark for My Articles similar articles
JavaWorld
January 2002
Jason Cai
Combine the Session Facade pattern with XML This article explores the benefits and advantages of using the Session Facade pattern. The author discusses when to use the pattern with value objects, and when to use it with XML. He also provides a detailed implementation of the Session Facade pattern integrated with XML... mark for My Articles similar articles
JavaWorld
June 2000
Michael Ball
XSL gives your XML some style Separating content from presentation is one of XML's major features. But eventually you need to style that XML into something presentable. That's where XSL (Extensible Stylesheet Language) comes in -- XSL transforms XML from one document type to another. Servlets provide a great platform for doing those translations. In this article you'll learn how to transform XML into HTML, using servlets. mark for My Articles similar articles
JavaWorld
October 3, 2003
Mitch Gitman
Keep up with the Web service styles (and uses) While XML-transparent Web service development might sound like the easy way to go, understanding and manipulating XML in SOAP messages can actually avoid some development difficulties. mark for My Articles similar articles
JavaWorld
June 2000
Letters to the Editor (June 23, 2000) Jason Hunter addresses a gripe with calling instanceof when using JDOM; Mark Johnson responds to feedback on his XML series; reader challenges Tony Sintes about whether it truly is impossible to write a swap method... mark for My Articles similar articles
JavaWorld
October 2000
Robert Hustead
Mapping XML to Java, Part 2 This article develops a SAX API-based class library that is easily extended to create XML-to-Java mapping code. First, we explore the important ideas that drive the need for the class library. Then we develop a basic approach for implementing the library as well as a few samples that demonstrate some more advanced topics on parsing XML with the SAX API... mark for My Articles similar articles
JavaWorld
August 2000
Robert Hustead
Mapping XML to Java, Part 1 The SAX API is superior to the DOM API in many aspects of runtime performance. In this article we will explore using SAX to map XML data to Java. Because using SAX is not as intuitive as using DOM, we will also spend some time familiarizing ourselves with coding to SAX. mark for My Articles similar articles
JavaWorld
October 2000
Michael Koch
Leverage legacy systems with a blend of XML, XSL, and Java As e-commerce becomes a focal point for companies scrambling to have a presence on the electronic frontier, incorporating those new ventures into the existing infrastructure becomes crucial. A few creative applications using XML and Java can give you a good solution... mark for My Articles similar articles
JavaWorld
April 11, 2003
Mitch Gitman
Axis-orizing objects for SOAP Axis is an open source Java framework for implementing Web services over XML-based SOAP. This article guides the reader through the minefield of developing and deploying a sophisticated Web service using Axis. mark for My Articles similar articles
PC Magazine
December 28, 2004
Richard V. Dragan
Ease into XML with Microsoft Word 2003 Office 2003 is XML-aware, and Word is a good place to get your feet wet. mark for My Articles similar articles
New Architect
October 2002
Paul Sholtz
Tame the Information Tangle A new breed of document storage and management systems has appeared that's been specially optimized for publishing XML documents on the Web. A look at native XML databases and XML-enabled databases. mark for My Articles similar articles
JavaWorld
January 2002
Yuan & Long
Build database-powered mobile applications on the Java platform This article explains how to create mobile database applications using the Java 2 Platform, Micro Edition/Mobile Information Device Profile (J2ME/MIDP) and the Java 2 Platform, Enterprise Edition (J2EE). The authors introduce an architecture that uses JavaServer Pages (JSPs) as middleware between a MIDP frontend and a database backend. They also explain specific design decisions and implementation issues, such as persistent storage, network connection, session management, and data communication. Their discussion focuses on the integration between the client and server-side Java applications. mark for My Articles similar articles
JavaWorld
December 2000
Peter Sayer
XML for Java gains new support with Sun API enhancements Sun Microsystems published details on Monday of two new interfaces to link its Java programming language to XML... mark for My Articles similar articles
JavaWorld
July 2000
Mark Johnson
Programming XML in Java, Part 3 An in-depth look at the Document Object Model (DOM), the most common alternative XML-processing mechanism. See how you can use DOM to manipulate the source code data in an illustrative example program... mark for My Articles similar articles
JavaWorld
December 5, 2003
Borislav Iordanov
Dynamic server includes with local runtime context This article shows how to achieve true black-box reuse of frontend logic in the form of JSP pages or Java servlets, by wrapping the servlet request object and effectively creating a local runtime context for an included resource. mark for My Articles similar articles
JavaWorld
July 2002
Nelson Minar
Test networked code the easy way Networked code proves difficult to test thoroughly because test suites work best as standalone processes unreliant on other servers. In this article, the author describes two techniques for unit testing network code. mark for My Articles similar articles
JavaWorld
May 2000
Jason Briggs
Dynamic user interface is only skin deep A skin is a collection of images and a definition file, which together describe an application interface. Here are ways to use skins to customize your applets... mark for My Articles similar articles
JavaWorld
September 2000
Bruce Eckel
Everything is an object, Part 1 This two-part article, excerpted from Chapter 2 in Thinking in Java 2nd. ed., moves you to the point where you can write your first Java program. Bruce Eckel gives an overview of the essentials... mark for My Articles similar articles
JavaWorld
March 2001
Vinay Aggarwal
The magic of Merlin This technical overview will give you insight into the various new features and APIs of the upcoming JDK 1.4 -- code-named Merlin -- expected to be released this month. mark for My Articles similar articles
JavaWorld
August 2000
Mark Pollack
Code generation using Javadoc This article presents a custom doclet that provides a simple extensible architecture to generate code for SQL schema, and Java and C++ classes from simple Java class definitions. mark for My Articles similar articles
JavaWorld
October 2002
Ray Djajadinata
Yes, you can secure your Web services documents, Part 2 Introduction to XML Digital Signature, a standard that handles a document's integrity, including how to write XML Signature code using an implementation currently available: IBM XML Security Suite. mark for My Articles similar articles
New Architect
November 2002
Kurt Cagle
eXcelon Stylus Studio 4.0 Today, eXcelon Stylus Studio has gone from being a promising concept to a superb, mature editor for XSLT. It has also extended its capability to other languages, including XML Schema Definition language (XSD) and Java servlets. mark for My Articles similar articles
D-Lib
May 2006
Justin Littman
A Technical Approach and Distributed Model for Validation of Digital Objects This article describes the current technical approach for digital object validation used by the National Digital Newspaper Program, a partnership between the Library of Congress and the National Endowment for the Humanities for the digitization of historical newspapers. mark for My Articles similar articles
JavaWorld
January 2002
Frank Sommers
A birds-eye view of Web services The author defines Web services, explains how they operate, and compares them to related Java technologies. He also presents a general programming model for Web services, independent of any framework or technology... mark for My Articles similar articles
JavaWorld
September 2000
Todd Sundsted
Alternative deployment methods, Part 3: The code In Part 3 of his series on application deployment, Todd Sundsted looks at the code that supports the deployment tool he described in Part 2. This article explains the framework's operation, highlights its design features, and explores the challenges of building this type of application. mark for My Articles similar articles
D-Lib
June 2006
Metadata Interoperability and Standardization - A Study of Methodology Part I: Achieving Interoperability at the Schema Level An analysis of the methods that have been used to achieve or improve interoperability among metadata schemas and applications, for the purposes of facilitating conversion and exchange of metadata and enabling cross-domain metadata harvesting and federated searches. mark for My Articles similar articles
D-Lib
December 2001
Christophe Blanchi
Distributed Interoperable Metadata Registry Interoperability between digital libraries depends on effective sharing of metadata. Successful sharing of metadata requires common standards for metadata exchange... mark for My Articles similar articles
D-Lib
October 2006
DLF-Aquifer Asset Actions Experiment: Demonstrating Value of Actionable URLs A report on a prototyping and demonstration experiment carried out by the DLF Aquifer Technology/Architecture Working Group. mark for My Articles similar articles
JavaWorld
March 2001
Tarak Modi
Clean up your wire protocol with SOAP, Part 1 SOAP is not just another buzzword. It is a powerful new application of vendor-agnostic technologies, such as XML, that can help take the world of distributed programming to new heights. This article, the first in a series of four, introduces you to the basics of SOAP... mark for My Articles similar articles
JavaWorld
August 2002
Ray Djajadinata
Yes, you can secure your Web services documents, Part 1 This article discusses XML Encryption, an important technology in the Web services security realm. The article explains what it is, why savvy Java programmers should understand it, and how to implement the technology using IBM's XML Security Suite. mark for My Articles similar articles
D-Lib
May 2003
Priscilla Caplan
XML in Libraries Reading XML in Libraries, edited by Roy Tennant, gave me once again a powerful sense of the vigor and creativity with which we seize upon new technologies. The book features a baker's dozen of short case studies describing various library-related applications using XML in some way. mark for My Articles similar articles
JavaWorld
June 2000
Richard Monson-Haefel
Read all about EJB 2.0 More than a new point release, the new EJB 2.0 specification embodies dramatic changes, including those found in the CMP component model and a new bean type, that enhance the flexibility and portability in your application development. mark for My Articles similar articles
JavaWorld
July 2000
Bill Venners
Objects versus documents for server-client interaction, Part 2 In this three-part series, Bill Venners compares the traditional approach to defining client/server interaction, using protocols and documents, with Jini's strategy of using objects and interfaces. mark for My Articles similar articles
D-Lib
Jan/Feb 2013
Michael Rumianek
Archiving and Recovering Database-driven Websites In this paper, a procedure is presented that overcomes the problems faced by archivists of database-driven websites. mark for My Articles similar articles
Linux Journal
October 2001
Reuven M. Lerner
Data Modeling with Alzabo How to bridge the object-relational gap with the Perl module Alzabo... mark for My Articles similar articles