« October 2006 | Main | December 2006 »

November 2006 Archives

November 19, 2006

Soap Sucks

I have said it for a long time now that XML and SOAP are bloated and most of the time the wrong way to do anything. Well it seems lead api developers are agreeing with me, it might have been the decade of XML but I hope to slowly see it fade to a hardly used only when needed standard, instead of the if it doesn't use XML it obviously isn't designed well.

Soap i wasted so much time and clock cycle for projects that you never did well and were always replaced.

let me say now I'd never choose to use SOAP and WSDL again. I was wrong

Java String isEmpty()

I have heard the java string class will finally get the isEmpty method in an upcoming release. Lets hope it is in 1.6, because I can't wait much longer, I can't for the life of me see why this was ignored for so long. Why have I had to put this in so many freakin if statements when this could have been fixed by adding a very easy and simple but amazingly easy to read and useful method.

String randWord;

/*
random code or back in forth between many different classes
*/

String someFunction() {
if(randWord!=null && !randWord.equals("")) {
/*do something*/
}

....
}

all of this could just be replaced and make the code so much more readable with the isEmpty function, becoming the following...

if( !randWord.isEmpty() ) {
/*do something*/
}

I want this functionality and I want it now... I guess since java is now opensource I should just go override the String class to add one simple function! So much value and so simple.

Web 2.0 craziness

View Dan Mayer's profile on LinkedIn


I Power Seekler
I Power Seekler

www.flickr.com
This is a Flickr badge showing public photos and videos from mayer_dan. Make your own badge here.

Creative Commons License
This weblog is licensed under a Creative Commons License.