What are Web Services? Web services are application components Web services communicate using open protocols Web services are self-contained and self-describing Web services can be discovered using UDDI Web services can be used by other applications XML is the basis for Web services How Does it Work? The basic Web services platform is XML + HTTP. XML provides a
Friday, 22 May 2009
Some Notes on Coding
Posted on 05:43 by Unknown
some of the points you should note while doing development 1. on java Use primitive data types instead of objects as instance variables. Use the final modifier on instance-variable definitions to create immutable internally accessible objects Eliminate unnecessary casts (use jdk1.5 feature) String.equals() is expensive if you are only testing for an
web performance: have you tried this?
Posted on 05:31 by Unknown
DEFER Your Scripts DEFER is a relatively obscure attribute of the script element, but the performance-minded page author can use it to indicate to Internet Explorer 4.0 or later that the script tag contains no immediately executing code that impacts the document before the load event fires. Combined with the SRC attribute, the DEFER attribute can be used on a script tag to indicate to Internet
Monday, 18 May 2009
Replication... small note
Posted on 06:17 by Unknown
What is Replication In Simple words, Replication is the simply process of copying data from one location to another.In MySQL database server, Master is main server from which data to be copied and Slave is the server on which data copied.Replication is asynchronous - means your replication slaves do not need to be connected permanently to receive updates from the master,depending on the
Subscribe to:
Comments (Atom)