Centaur Tech

Dips

Tuesday, June 28

There is a special place in hell..

for programmers who do just
catch (Exception e)
{ }
, and in limbo for
catch (Exception e)
{ Log exception... }

Dips at 7:57 AM

0 comments

Thursday, June 23

TDD .. tadaa...

"Whenever you are tempted to type something into a print statement or a debugger expression, write it as a test instead." - Martin Fowler

Dips at 7:59 AM

0 comments

Wednesday, June 8

Simple.Object.Access.Protocol

A protocol for communication between applications on internet using HTTP+XML.

A SOAP message is an ordinary XML document containing the following elements:

More at
http://www.w3schools.com/soap/default.asp

SOAP Server

Basically , a soap server is an internet application which listens for soap messages, processes then and returns response.

For J2EE , a typical soap server consists of

SOAP is very extensible. There have been examples of soap servers listening on MQ, TCP too.

Dips at 7:59 AM

0 comments