.NET 2.0 : Change the SOAP protocol version

10. March 2006
To change the SOAP protocol version, use the SoapHttpClientProtocol.SoapVersion property. A ASP.NET 2.0 web service class inherit of SoapHttpClientProtocol class, so you can use the SoapVersion property. 3 values can be used… MyWebService service = new MyWebService(); […] service.SoapVersion = SoapProtocolVersion.Default; service.SoapVersion = SoapProtocolVersion.Soap11; service.SoapVersion = SoapProtocolVersion.Soap12; The default value is SoapProtocolVersion.Soap11

XML, Web Services ,

Web Services Enhancements (WSE) 3.0 Readme

10. March 2006
The Web Services Enhancements 3.0 for Microsoft .NET (WSE) enables developers to create interoperable Web services with advanced Web services features. With WSE 3.0, you can secure your messages using digital signatures and encryption, use MTOM to efficiently send large amounts of binary data, route messages through intermediaries, host Web Services outside of IIS, use the TCP/IP protocol and more. WSE 3.0 comes complete with samples and product documentation. For more information, visit the WSE home page on MSDN . >>> System Requirements Microsoft® Windows® XP Home or Microsoft® Windows® XP Professional or Microsoft® Windows® 2000 Professional or Microsoft® Windows® 2000 Server or Microsoft® Windows Server™ 2003 Microsoft® Internet Information Services (IIS) 5.0, 5.1, or 6.0 Microsoft® .NET Framework version 2.0 or Visual Studio 2005 which can be installed from here Note that if you install the Visual Studio 2005 Express Editions these do not support the WSE Configuration add-... [More]

XML, Web Services ,

.NET WebService attributes memento

10. March 2006
The WebService attribute provides the following properties: Description – The value of this property contains a descriptive message that is displayed to prospective consumers of the XML Web service when description documents for the XML Web service are generated, such as the service description and the service help page. Name – The value of this property contains the name for the XML Web service. By default, the value is the name of the class implementing the XML Web service. The Name property identifies the local part of the XML qualified name for the XML Web service. The Name property is also used to display the name of the XML Web service on the service help page. Namespace – The value of this property contains the default namespace for the XML Web service. XML namespaces offer a way to create names in an XML document that are identified by a Uniform Resource Identifier (URI). By using XML namespaces you can uniquely identify elements or attributes in a XML document. So, within... [More]

XML, Web Services ,

Code project article on smart client with .NET 2.0

8. March 2006
Article : http://www.codeproject.com/smartclient/SmartClientSOA.asp Other resources : Smart client Developer center Smart Client Offline Application Block Smart Client - Composite UI Application Block Smart client Microsoft PPT Presentation (.NET 2.0) IssueVision helps to answer the question “What is a smart client” and presentation page  

.NET Projects

More office style funny controls for free

5. March 2006
Component factory deliver a free office 2003 style component. Download it at : http://www.componentfactory.com/products.html

.NET Projects