Back in classic ASP.NET I’d persist data extract from a web service in base class property as follows: private string m_stringData; public string _stringData { get { if (m_stringData==null) { //fetch data from my web service m_stringData = ws.FetchData() } return m_stringData; } } This way I could always simple use _stringData and know that... Continue Reading →
SOAP Explanation
A clear and concise description of the SOAP messaging standard and each of the component parts: http://www.soapuser.com/basics3.html A full specification of the SOAP messaging standard can be found here: http://www.w3.org/TR/soap/
XMethods
A cool web site listing free-to-access web serivces available on the Internet: xMethods.com