Posts

Showing posts from February, 2010

JAXBContext

This class is the entry point for JAXB API. One must get instance of this class first and then from this instance, marshaller, unmarshaller or validator instances can be obtained.

WADL

Web Application Description Language : This link(http://research.sun.com/techrep/2006/abstract-153.html) describes this format. WADL is designed to provide a machine processable protocol description format for use with such HTTP-based Web applications, especially those using XML.

XHTML

XML mark up language that mirror HTML. XHTML is application of XML and it can be parsed using any XML parser, while HTML reqires lenient HTML specific parser. XHTML document needs to be well-formed. XHTML elements and attributes are case sensitive. To avoid mistakes it is recommended to include js and css in separate files and include those in XHTML doc.

i18n, L10n, g11n

Internationalization : The process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization : The process of adapting a internationalized software to a particular region or language by adding locale-specific components and translating text. Globalization/NLS ( Native Language Support: The combined process of internationalization and localization

JavaScript

1. Problem with window.onload window.onload = function(){ alert("welcome"); } Javascript code is not run until all images are finished downloading (this includes banner ads). The reason for using window.onload in the first place is that the HTML 'document' isn't finished loading yet, when you first try to run your code.