| Adding a zip filter to web services |
| The Code Project |
| Passing large amount of data through web services can become a hugh bottle-neck in WAN application architecture ( i.e server is on the web ), and in any case a real load on the network traffic, this is one solution for downsizing the network costs |
|
| Administration page for a "Members only" section |
| The Code Project |
| This page assists in using a single subfolder for "members only" access, and in administering which users are allowed access. No database is required. |
|
| An XML based dynamic runtime GUI generator |
| The Code Project |
| Generate controls, set property values, and wire up event handlers at runtime from an XML definition. |
|
| ASP.NET Guest entry Form |
| The Code Project |
| Guest Entry form with an XML Control |
|
| BUG: A Typed DataSet That Imports a Secondary Schema Cannot be Used As a Method Parameter or As a Return Type with ASP.NET Web Services |
| http://www.kbalertz.com/ |
| (317340) - You cannot create a Web service proxy when the Typed DataSet that imports a secondary schema is used as a parameter or as a return type from the WebMethod . If you try to do this, the following symptoms may occur: When you generate the Web service... |
|
| Code Generation in the .NET Framework Using XML Schema |
| MSDN |
| Learn the difference between typed datasets and classes generated by the xsd.exe tool. Extend this process by reusing the infrastructure classes supporting it, staying compatible with the XmlSerializer. |
|
| Coding Best Practices Using DateTime in the .NET Framework |
| MSDN |
| See key development and testing scenarios involving time, and get recommendations for writing programs using the DateTime type in .NET-based applications and assemblies. |
|
| Creating a Product Search Application Using the eBay SDK and Visual Basic .NET |
| MSDN |
| Learn how to create a .NET Windows Forms application that searches eBay's product database using the eBay SDK. |
|
| Custom Objects From the App.Config file |
| The Code Project |
| Defining custom objects in the App.Config file, and retrieving them via the IConfigurationSectionHandler Interface. |
|
| Editable History ComboBox |
| The Code Project |
| Demonstrates how to easily simulate an editable combobox that can persist previous entries (Like Internet Explorer). |
|
| How to use certificates to sign and to verify SignedXml objects by using Visual C# .NET |
| http://www.kbalertz.com/ |
| (320602) - This step-by-step article describes how to use certificates to sign and to verify SignedXml objects. The article describes how to use the platform invoke services in Visual Basic .NET to call Win32 API functions to access certificates in certificate... |
|
| HOW TO: Transform a DataSet to Spreadsheet XML for Excel by Using Visual Basic .NET and ASP .NET |
| Microsoft Support |
| (319180) - This step-by-step article describes how to transform a DataSet to Spreadsheet XML that can be rendered in Excel. The Excel Spreadsheet XML format supports element tags and attributes for Excel functionality such as multi-sheet workbooks, formulas, and... |
|
| HOW TO: Transform a DataSet to Spreadsheet XML for Excel by Using Visual Basic .NET and ASP .NET |
| http://www.kbalertz.com/ |
| (319180) - This step-by-step article describes how to transform a DataSet to Spreadsheet XML that can be rendered in Excel. The Excel Spreadsheet XML format supports element tags and attributes for Excel functionality such as multi-sheet workbooks, formulas, and... |
|
| Implementing a Custom Filter for WSE |
| DotNetJunkies |
| Web Services Enhancements 1.0 for Microsoft .NET (WSE) provides the ability to incorporate security, routing, and attachment capabilities in XML Web services. It also provides an extensible framework to incorporate other features such as custom message filtering. This article will briefly describe the WSE architecture along with its extensibility mechanism through custom filters. It will also provide an example of a custom WSE output filter that facilitates targeting Groove Web Services (GWS) SOAP endpoints |
|
| Inside WSDL with .NET Attribution |
| MSDN |
| Understanding how a Web Services Definition Language (WSDL) file describes your Web service is the key to understanding how XML Web services work in general. Demystify the Web Service Description Language (WSDL) files that Microsoft ASP.NET generates by examining the seven major elements that compose a WSDL file, and learn techniques for altering the generated WSDL by using the attributes available within the System.Web.Services, System.Web.Services.Protocols, and the System.Xml.Serialization namespaces. |
|
| Loading XML Files in a TreeView Control using Multithreading |
| C# Corner |
| There are many occasions when programmers need to develop multithreading applications, which can load big files in the background and let the user do data entry or other jobs without any interruption. In this article, I'll show you how to create multiple threads to load multiple files. |
|
| Moving to .NET and Web Services |
| MSDN |
| As you may have guessed from looking at the top of this page, the House of COM column that appeared in the May 2001 issue was my last column on COM (I have already started the bidding war on eBay for that soon-to-be-collector's edition). Dedicated readers may have noticed that I haven't been using the column to write about COM per se for some time. Rather, for the past three years, my work has been shifting to encompass other software integration/component technologies, such as the Common Language Runtime (CLR), ISAPI, XML, SOAP, and Web Services.
|
|
| Object Serialization and OO Techniques |
| Visual Studio Magazine |
| XML Serialization presents an excellent mechanism for working with XML documents in an object-oriented manner. In the June/July issue I discussed how using XML serialization in the IBuySpy Portal site (www.ibuyspy.com) simplified working with configuration files (see Links). Now I'll demonstrate how to leverage XML serialization techniques to manipulate the web.config file using object-oriented techniques rather than the Document Object Model (DOM). |
|
| Reading, Storing and Transforming XML Data in .NET |
| DotNetJunkies |
| This article illustrates a mixture of common .NET methods for formatting and presenting in a readable fashion any XML document you may encounter. The latest hype with XML Web Services and even the .NET Framework itself relies on XML as its backbone, therefore this is no light matter. |
|
| Troubleshooting Common Problem with the XML Serializer |
| MSDN |
| Christoph Schittko discusses various techniques for diagnosing common problems that occur when converting XML to objects and vice versa with XML Serialization technology in the .NET Framework. |
|
| Verify and Add Digital Signatures to Form Data in InfoPath 2003 Using MSXML 5.0 or .NET Framework Managed Code |
| MSDN |
| Learn how to build managed code applications that employ MSXML 5.0 and .NET Framework code to add and verify digital signatures in InfoPath forms. |
|
| Web Methods Make it Easy to Publish Your App's Interface over the Internet |
| MSDN |
| Web Services are a great way to accept and manage contributions to a public clip art library, digital music catalog, or corporate knowledge base. Since the SOAP interface to a Web method operates over HTTP, contributors can easily publish content any time, from anywhere across the Internet. However, accepting binary content and managing content metadata through SOAP over HTTP presents Web Service developers with some interesting design decisions. This article discusses three ways to enable content publishing using Web methods. |
|
| Web Service Messaging with Web Services Enhancements 2.0 |
| MSDN |
| With the XML messaging API included in the Web Services Enhancements 2.0 toolkit, you can send and receive messages asychronously over a variety of communications protocols. |
|
| Working with Complex Data Types in an XML Web Service - Part 1 |
| DotNetJunkies |
| XML Web Services enable the exchange of complex data types, serialized as XML. Complex data types, such as ADO.NET DataSets and custom classes can be serialized as XML and either sent to the XML Web Service as an input argument, or returned from the XML Web Service as the result. In this article we will build the beginning of an XML Web Service, which we will finish in next week's article, when we will also build a consumer Web application. |
|
| Working with Complex Data Types in an XML Web Service - Part 1 |
| DotNetJunkies |
| XML Web Services enable the exchange of complex data types, serialized as XML. Complex data types, such as ADO.NET DataSets and custom classes can be serialized as XML and either sent to the XML Web Service as an input argument, or returned from the XML Web Service as the result. In this article, Doug builds an XML Web Service and a consumer Web application. |
|