What is SOAP ? . SOAP stands for Simple Object Access Protocol. It is a communication protocol that facilitates the interaction between applications and web services located on remote computers. It is a specification for a messaging system where data is represented as a text and defined as a data type. The text that contains […]
SOAP-Simple Object Access Protocol
Posted in Java Development by admin - Apr 20 2010
Vector or ArrayList – a tough decision to make
Posted in Java Development by admin - Apr 13 2010
Choosing something over something which is equally gradable is indeed a daunting task. Choosing Vector over ArrayList is such a decision to make, but it mainly depends on what task we are trying to achieve. There are some factors to consider if you are making such a decision. They are as follows: API Synchronization Data […]
Network timeouts
Posted in Java Development by admin - Apr 13 2010
Network timeouts can be caused by high traffic in the networks, slow connections, power interruptions etc. Most of the programmers do not spend their time for detection and handling of network timeouts or leave this task to do at the last moment. But ignoring this situation may cause your application to stop or block the […]