Slashdot Log In
Google Deprecates SOAP API
Posted by
kdawson
on Tue Dec 19, 2006 10:28 PM
from the washed-up dept.
from the washed-up dept.
Michi writes "Brady Forrest at O'Reilly Radar reports that Google has deprecated their SOAP API; they aren't giving out any new SOAP Search API keys. Nelson Minar (the original author of the Google SOAP API) argues that this move is motivated by business reasons rather than technical ones. Does this mark the beginning of the end for SOAP or for ubiquitous middleware in general?" Forrest's post quotes developer Paul Bausch: "This is such a bad move because the Google API was the canonical example of how web services work. Not only is Google Hacks based on this API, but hundreds of other books and online examples use the Google API to show how to incorporate content from another site into a 3rd party application."
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Honeymoon is Over? (Score:4, Insightful)
(http://en.wikipedia....thematical_induction | Last Journal: Saturday February 10 2007, @08:15PM)
From TFA:
Just as I suspected: SOAP suffers from an artificial (read: gratuitous) complexity; what more do you need besides XML-RPC, anyway?
Google quietly shutting down services, on the other hand, reminds me of differentiating stem-cells: the honeymoon is over.
Re:Honeymoon is Over? (Score:5, Insightful)
(http://www.dieblinkenlights.com/)
Without a Next-Next-Finish wizard, SOAP is a pain. With the tool it's mildly uncomfortable.
Re:Honeymoon is Over? (Score:5, Insightful)
Re:Honeymoon is Over? (Score:4, Insightful)
I don't think it's so much that companies don't want to as it is that there is no money in it.
If Amazon provided an API for buying stuff, I think it would stick around
If eBay provided an API for listing / searching, I think it would stick around.
Google, however, provides their product strictly for advertising revenue...it's wayyyy too easy for a consumer of the content to filter out the thing Google makes their money from.
It's very similar to the problem with Tivo's (PVR's) and commercial television. Luckily in that case, the television providers don't make their money directly from advertising revenue...
Re:Honeymoon is Over? (Score:5, Informative)
(http://www.badtech.org/ | Last Journal: Thursday February 22 2007, @09:15AM)
http://developer.ebay.com/common/api/ [ebay.com]
Re:Honeymoon is Over? (Score:5, Interesting)
(http://slashdot.org/ | Last Journal: Thursday October 10 2002, @04:09AM)
Well, I beg the differ, please bear with me.
SOAP is based on an idea of giving APIs to external parties for accessing information the way the information-owners want it. SOAP might be bad, but the idea is sound. Thinking about the traditional and dirty way to do the same thing: write scripts to 'post' webpages and extract the return pages. You can imagine slight changes in webpage layout could render the original extraction scripts useless, and that kind of information extraction might not be the owners' desire.
In short, things SHOULD be done this way, but Google doesn't like this implementation(SOAP). Google might want to adopt other implementation, that's what we'd like to know.
Re:Honeymoon is Over? (Score:5, Insightful)
(http://slashdot.org/ | Last Journal: Saturday November 03, @04:58AM)
(Another case: I cannot name a single well-designed W3C spec that was consortium-driven, and cannot name a single consortium-driven W3C spec that was well-designed.)
Web service standards cannot be driven by the very people who profit most from non-standard solutions. Even when they are designed well, they will STILL carry unacceptable flaws precisely because they are not driven by a collective itch but by a desire to stop someone else's scratch being the one that's used. The day a truly open federation of user-developers (you need a group of people where each person is both user AND developer) who have no ulterior motive beyond solving the service issue is formed will be the day that you see a protocol that requires no "perfect case study", proprietary extensions, overweight IDEs, etc. It will just work and be just used. Same as every other system developed that way has always just worked and just been used.
Re:Honeymoon is Over? (Score:5, Interesting)
(http://www.cyclomedia.co.uk/ | Last Journal: Tuesday December 12 2006, @06:48AM)
<?xml version="1.0"?>
<methodCall>
<methodName>namespace.getCountryCodeFromAbbr</met
<params>
<param>
<value><string>UK</string></value>
</param>
</params>
</methodCall>
Browsers already have Javascript engines in that take C-syntaxey looking ascii and convert it into functions and objects, so why not just use a C-syntaxey plaintext to describe the service?
read: namespace{ int getCountryCodeFromAbbr( string ); };
send: namespace.getCountryCodeFromAbbr( "UK" );
get : 44
now, ok you might want to send comlext data structures back, but hey, you can just slap in the curly braces and be done
read: namespace{ personStruct{ string name, int age, char sex }; personStruct getPersonFromUserId( int ); };
send: namespace.getPersonFromUserId( 12 );
get : { "John Smith", 34, 'M' };
oh, but i forget: everthing has to be XML to be enterprisey, wether or not it's the best tool for the job, or if there's already a tool for the job that can do it for you with just a little tiny bit of effort. The "include this
Re:Honeymoon is Over? (Score:5, Insightful)
Re:Honeymoon is Over? (Score:5, Interesting)
In my opinion, at this point it's just a mess, and for anything beyond the complexity of the stock-quote example I look to other technologies. I, for one, shed no tears at the end of this honeymoon.
(And am I the only one that cringes at using SOAP messages (or XML in general) for something that's supposed to be a machine-to-machine interaction? If you're going to write a new standard, why not write something more efficient?
You have it backwards i.e. Google != Hypocritcal (Score:5, Interesting)
(Last Journal: Sunday August 20 2006, @01:37PM)
Power of SOAP (Score:4, Informative)
The real power of SOAP comes when you are using a language or framework that has support for it builtin. SOAP is complex simply because it does more than XML-RPC with type handling etc.
In PHP you can use NuSOAP (or in 5.x the built-in SOAP library), to simply register some functions and autogenerate the WSDL, or generate a proxy from a given WSDL - takes a couple of minutes tops and then looks like you are simply calling another function.
Anyone who uses ASP.NET regularly has it even better - create an ASMX file, define a class and functions like you would in any C# class, add some namespace arguments, a [WebMethod] over all your public methods and it can then be instantiated and called from any other ASP.NET website or .NET dekstop app seamlessly, like it was a local class. It's really cool just how transparent it all is. You can even throw exceptions and catch them on the other side, pass back objects - it's really slick.
Re:Honeymoon is Over? (Score:5, Insightful)
Dave
bastards (Score:5, Funny)
(http://www.preinheimer.com/ | Last Journal: Friday August 22 2003, @10:32AM)
Re:bastards (Score:4, Informative)
(Last Journal: Friday February 13 2004, @10:23PM)
Well it was 'just' a Beta (Score:4, Insightful)
(Last Journal: Monday June 12 2006, @11:18PM)
Re:Well it was 'just' a Beta (Score:5, Informative)
http://en.wikipedia.org/wiki/List_of_Google_produ
What about XMLRPC? (Score:5, Informative)
(http://www.anthonymclin.com/)
If so, then I'd say it's fine to drop SOAP. XMLRPC is a bit cleaner anyways.
Re:What about XMLRPC? (Score:4, Informative)
(http://www.brynmosher.com/ | Last Journal: Monday August 27, @10:15PM)
Re:What about XMLRPC? (Score:4, Informative)
(http://www.brynmosher.com/ | Last Journal: Monday August 27, @10:15PM)
Oh! Come On. (Score:4, Funny)
(Last Journal: Tuesday January 16 2007, @10:33AM)
Come on... Cleaner than SOAP? What could be cleaner than SOAP?
Re:What about XMLRPC? (Score:5, Interesting)
(http://www.codepunk.com/)
Soap, what was that? (Score:5, Funny)
Maybe something to do with:
UNIX Sex
{look;gawk;find;sed;talk;grep;touch;finger;find;fl ex;unzip;head;tail;
mount;workbone;fsck;yes;gasp;fsck;more;yes;yes;eje ct;umount;makeclean;
zip;split;done;exit:xargs!!;)}
Re:Soap, what was that? (Score:5, Funny)
(http://phot.ogra.ph/ | Last Journal: Wednesday October 10, @11:36AM)
So is that why nerds are getting acused of rape? (Not checking return codes...)
The semicolons should be double ampersands, so that execution will stop if a command fails.
Re:Soap, what was that? (Score:5, Funny)
Yeah, but in the guy's defense, there wasn't a single argument to any of those commands.
Re:Soap, what was that? (Score:5, Funny)
(Last Journal: Thursday May 24, @01:08AM)
Re:Soap, what was that? (Score:5, Funny)
Google says; (Score:1)
(http://www.aliassketchbookpro.com/ | Last Journal: Sunday September 04 2005, @10:37AM)
Did you mean...? (Score:2)
(http://www.roughlydrafted.com/ | Last Journal: Friday August 11 2006, @11:13PM)
Did you mean: _soup?_
Don't be evil! (Score:4, Funny)
Re:Don't be evil! (Score:4, Funny)
(Last Journal: Saturday January 13 2007, @02:19AM)
Um... seriously though. Give them a bit of time and see if the make and announcement and publish an alternative (non-AJAX) API.
Re:Don't be evil! (Score:4, Informative)
(http://fennecfoxen.org/)
Uncleanliness is next to Satanliness (Score:5, Funny)
(SOAP is a WS) != (WS is SOAP) (Score:3, Insightful)
Google branding? (Score:3, Informative)
Re:Google branding? (Score:5, Insightful)
(http://fennecfoxen.org/)
Well, since Google is the one who aggregated it in the first place... and is paying for the processing power and bandwidth requirements that go along with that... what's unfair about the practice? (It's not like they're really preventing one from giving you similar data, or somehow stealing away value from any of the sites they've indexed, or...)
loss, opportunity, lesson or deja-vu? (Score:4, Insightful)
(Last Journal: Friday February 02 2007, @12:54AM)
Their responsibility is more towards their shareholders, not so much towards their users. So, if they think one of their products -- be that APIs, ajax apps or whatever are providing diminishing returns for some reason, they'll axe it unless it is popular enough so that too many users feel ripped off. APIs aren't in the category at all.
Also, the bigger they get, the more expensive the stock becomes, and the more their ownership sreads, the more clout the bean counters have over any other management ideology.
So, if one relies exclusively to Google for anything, better check your contract with Google carefully and assess all risks (including risk from expensive litigation) first.
So Google is starting to act like a real business? (Score:4, Interesting)
(http://www.davidmays.com/)
Say it ain't so!
It would be interesting to know how many active API users there were, and at what rate new ones were signing up, if at all. It may well be that continuing to support that API wasn't considered a useful (read: profitable) part of their business.
Google is a publicly held corporation now. They have a responsibility to their shareholders to make decisions based on sound business practices. For a software company that means sending products into the end-of-life bin periodically.
In a fabulous dose of irony, I found that on Google's AJAX Search API page [google.com], their own embedded search example is showing a blog posting titled "Google quietly backrooms SOAP API for AJAX".
Screenshot here [davidmays.com] (Yeah, I'm using IE7, wannafightaboutit?)
That's unfortunate (Score:5, Interesting)
And the replacement (Score:3, Informative)
(http://brajesh.wordpress.com/)
Not that Google Search API has ever been very stable - it probably works only 80% of the time. Now even the support has been dropped and usage samples along with FAQ have been removed for SOAP api.
Obligatory questions/puns (Score:4, Funny)
SOAP Nazis (Score:1, Funny)
Fight Club (Score:2)
(Last Journal: Saturday March 08 2003, @03:00PM)
Tyler Durden says: use SOAP?
Google != web (Score:3, Interesting)
After "Google did it" (tm), SOAP is suddenly a good thing. Now that they drop it, peple are discussing if it's again a bad thing. Google is not the whole of Internet though. People will use SOAP if it's better than other solutions for a given tasks.
And if it isn't, then it was a fad all along.
Same with "AJAX" by the way. JavaScript was out there for years before "Google did it" (tm) but there were not many people appreciating it. If Google drops JavaScript tomorrow, would this spell the end of AJAX?
Same logic applies.
No SOAP, Radio (Score:5, Interesting)
(http://slashdot.org/~Doc%20Ruby/journal | Last Journal: Thursday March 31 2005, @01:48PM)
Google is replacing SOAP with an AJAX API. Maybe it is a blow to SOAP - which is long overdue for the 1990s graveyard. But how could that be bad for open-access middleware when there's a new, better API?
The small guys are paying for this.. (Score:1)
(http://indraneil.net/)
I am sure they would much rather look at another SOAP oriented service provider than change to AJAX, and I can understand their concern. They never did expect to be desupported (even on a beta product) since it was google they were discussing!
This does make me worry about the other google services I use (Gtalk, GMail etc.)
Drop-In Replacement Already Available (Score:5, Informative)
(http://www.tylerhall.ws/)
Rest in Peace (Score:1)
SOAP Was Always An Eye Test (Score:2)
"Slowly, one by one, the Penguins steal my sanity." - Unknown
It's probably because SOAP blows (Score:3, Interesting)
(http://www.5sigma.com/joseph)
JSON and the like are, on the other hand, reasonable, and also fairly easy on the eyes of us tired old programmers.
"Does this..?" (Score:1)
These questions - and many others - will be answered in the next episode of Soap.
Good riddance. (Score:4, Informative)
(http://www.nwo.no/)
This isn't google being evil. This is google removing a piece of completely unnecessary junk from their offerings. SOAP should never have seen the light of day, and google is now making sure that they do their part of burying it.
What Business Reasons? (Score:2)
(http://inglorion.net/ | Last Journal: Thursday October 06 2005, @07:17AM)
Of course they dropped it... (Score:5, Insightful)
Given that Google want to run their business off the back of ad revenues, it should come as no surprise they're getting rid of services that don't allow them to sell lots and lots of ads. I also imagine that the cost of providing the SOAP interface was higher than any subscription fees would have brought in due to a small market. What's more, it would directly help their competitors pull in results from Google and run their own ads alongside it. The API was neat, but from a business perspective it was always an experiment at best.
Personally, I'd rather they brought something RESTful like Yahoo's interface or xml-rpc to the table, and charged us all a couple of cents per 100 queries, but that isn't going to happen any time soon.
Base Data API (Score:1)
What? (Score:2)
(http://www.mutube.com/)
SOAP SUX! (Score:1)
Wow.. I was just saying... (Score:1)
The S Stands for Simple (Score:2, Interesting)
I'm not overly depressed at the decision to get rid of the SOAP API. See: The S Stands for Simple [wanderingbarque.com].
Maybe Google will follow in Yahoo!'s footsteps and implement a REST API now. Maybe.
There's an alternative. (Score:1, Interesting)
It's not the end of SOAP because of Microsoft (Score:1)
(http://trimbo.blogspot.com/)
Microsoft's tools make it so easy to use SOAP that it would be foolish to say it's "the end of SOAP." While Microsoft only has 31% of web servers out there in the wild (according to Netcraft), I'm sure internal corporate web efforts are 50%-50% Microsoft or better. ASP.NET 2.0 and Visual Studio 2005 are an amazing combination for writing web services using SOAP (as other posters have noted)
So, no, SOAP is not going away. Besides, who was building businesses around Google's SOAP API? Certainly not Google.
AJAX API not the same functionality as the SOAP (Score:1, Interesting)
The world does not revolve around Google (Score:1)
It's about the time to let SOAP... (Score:1)
SOAP technology sucks, too (Score:3, Insightful)
(http://www.nelson.monkey.org/~nelson/weblog/)
Re:WTF is SOAP? (Score:5, Funny)
(http://www.teamxlink.co.uk/)
Re:WTF is SOAP? (Score:1)
oops... sorry.. wrong forum...
Re:WTF is SOAP? (Score:2, Funny)
(http://www.johnshideaway.com/)
Based on the slashdotters I know, you aren't likely to get an answer to this here.
Re:looks like its the beginning of the end... (Score:2)
(Last Journal: Wednesday January 31 2007, @02:25AM)
Well, that young Google whippersnapper will ultimately find out the hard way that each of his company's services wants to be free.
Re:WTF is SOAP? (Score:1)
(Last Journal: Tuesday September 11, @06:14PM)
Re:WTF is SOAP? (Score:1)
(http://hoshie.mozfaq.org/blog/)
Re:WTF is SOAP? (Score:5, Informative)
(http://zulupad.gersic.com/)
Re:who cares (Score:2)
(http://paperlined.org/)
Re:WTF is SOAP? (Score:2, Funny)
Re:A JSON alternative... (Score:1)
(http://www.funfail.com/)
Re:WTF is SOAP? (Score:2)
But WCF (Windows Communcation Foundation) is SOAP based in some protocols.
I actually asked a couple of MS developers (this is a true story):
Me: You guys should do a "Windows Transaction Framework" and call it WTF.
Microsoft Devs: Gee, maybe we will one day.
I hope so, I really hope they do...
Re:WTF is SOAP? (Score:1)
What the fuck is WTF?
Re:A JSON alternative... (Score:1)
(Last Journal: Friday October 19, @09:21PM)
$query = count($argv) > 1 ? $argv[1] : 'google';
bad programmer! no cookie!
$query = count($argv) > 1 ? raw_urlencode($argv[1]) : 'google';
(That's a nifty trick though!)