Posts Tagged ‘xml’

what is SOAP

Monday, June 15th, 2009 by dreamluverz

How is SOAP Used?
There are many possible applications for SOAP, here are just a couple:





  • Business to Business integration – SOAP allows businesses to develop their applications, and then make those applications available to other companies
  • Distributed applications – programs like databases could be stored on one server and accessed and managed by clients across the Internet

One thing to consider when looking into implementing SOAP on your business server is that there are many other ways to do the same thing that SOAP does. But the number one benefit you’ll gain from using SOAP is it’s simplicity. SOAP is just XML and HTTP combined to send and receive messages over the Internet. It is not constrained by the application language (Java, C#, Perl) or the platform (Windows, UNIX, Mac), and this makes it much more versatile than other solutions.

source: webdesign.about.com/library/weekly/aa031802a.htm

using xml for live search

Wednesday, June 3rd, 2009 by dreamluverz




For the XML interface, there is an interface specific parameter XmlType, which can control the flavor of XML interface. If ElementBased enumeration is specified, each field will be rendered as a separated tag. If AttributeBased enumeration is specified, all simple type fields will be rendered as attributes instead of elements. The default value is ElementBased.

The following sections give an example request and response for each of these options.

ElementBased Enumeration Example

Request

http://api.search.live.net/xml.aspx?AppId = [YOUR_APPID] &market=en-US&Query=testign&Sources=web+spell&web.count=1&xmltype=elementbased

Note: For information about obtaining an AppId, see Live Search Developer Center.

(more…)