DWR
DWR stands for Direct Web Remoting.DWR is a Java library that enables Java on the server and JavaScript in a browser to interact and call each other as simply as possible. read more
View ArticleXML Parsing failing due Encoding not being UTF-8
Anyone who has works with XML a lot possibly would have encountered this XML parser error message such as "Invalid byte 2 of 2-byte UTF-8 sequence". The main reason for this error is that, the XML...
View ArticleWhat are the benefits of using JSON over XML?
JSON and XML both can be used to marshall or unmarshal data in a Ajax request. However each has it own benefits particularly JSON. The following are the benefits. read more
View ArticleMissing Transformer Factory Implementation
The following Runtime exception java.lang.NoClassDefFoundError: org/apache/xalan/processor/TransformerFactoryImpl normally happens when we try to convert an DOM object to XML...
View ArticleHow to construct DOM and convert to XML?
Constructing DOM (Document Object Model) to generate or represent XML is easy. The basic steps are as follows > Create the XML Document object using the Document Builder Factory.>Build your...
View ArticleWhat the common type of error while Parsing JSON?
The following are the common types of errors we see while parsing JSON data.read more
View ArticleXcode Project linking fails - Undefined symbols for architecture armv7
IssueThe project compiles but fails while linking with the following error.read more
View Article