| .NET Framework and Web Services - Part II |
| C# Corner |
| Here we are going to learn how to create a WebService using VS.NET (using VB.NET.) and Consume the Webservice from VB.NET Client. This Article is based on VS.NET RC1 Release. |
|
| .NET Framework and Web Services - Part III |
| C# Corner |
| In part II we learned how to create a Web service and how to consume it from a VB.NET client. Here I am going to explain Web methods. |
|
| .NET Remoting ( A Simple Approach) |
| C# Help |
| .NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based WebServices. .NET Remoting is easier to use than Java's RMI, but definately more difficult than creating a WebService. In this article, we will create a remote object that will return rows from a database table. For the sake of simplicity i have used the NorthWind database that is packed with the installation of the Microsoft SQL Server. |
|
| .NET Remoting - The Interface Approach |
| C# Help |
| In this article, we will create a remote object, and access this object using an interface. This method is important when creating a physical separation between business tier and consumer code. In traditional Remoting approaches, to access a remote object, you need a copy of that object on the client machine. With this approach, the metadata is split into a separate library that can be copied to the client machine. |
|
| A C# Web Spider written as a Web Service |
| C#Today |
| A Web Spider is a program that is used to navigate sites, follow links and collect various information. It is sometimes called a Web Robot. In this article. ST Tan & Aldy Karna discuss the subject, and show how a Web Spider can be written in C#. |
|
| A Complete Virtual Shop Web Service in C# |
| C# Corner |
| This is a complete web service example using C#. In this web service, I have build a complete virtual shop to buy and review products. You can buy or get information about a product in the shop. I have use sign in, sign out, and sign up methods for user login. You can't buy any thing without signing in the shop. |
|
| 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 |
|
| Advanced Asynchoronous WebServices |
| The Code Project |
| Advanced asynchoronous WebServices. |
|
| An introduction to Web Service Security using WSE - Part I |
| The Code Project |
| This article explains the first steps to build secure Web Services. It introduces the WSE specification and a first authenication mechnism based on username identifiction and password validation. |
|
| An introduction to Web Service Security using WSE - Part I |
| The Code Project |
| This article explains the first steps to build secure Web Services. It introduces the WSE specification and the easiest authentication mechanism based on username identification and password validation. |
|
| An Introductory Guide to Building and Deploying More Secure Sites with ASP.NET and IIS |
| MSDN |
| ASP.NET and Microsoft Internet Information Services (IIS) work together to make building secure Web sites a breeze. But to do it right, you have to know how the two interrelate and what options they provide for securing access to a Web site's resources. This article, the first in a two-part series, explains the ABCs of Web security as seen through the eyes of ASP.NET and includes a hands-on tutorial demonstrating Windows authentication and ACL authorizations. A range of security measures and authentication methods are discussed, including basic authentication, digest authentication, and role-based security. |
|
| ASP.NET Server Controls: Treeview |
| Egg Head Cafe |
| Microsoft has also released ASP.NET Server Control versions of the most popular IE controls, namely Treeview, TabStrip, ToolBar and MultiPage. These are all fully .NET compliant server-side controls. They are also, however, "Browser aware", and if the browser is "uplevel" (IE 5.5 or higher) the associated Client-side HTC behavior for each control is automatically downloaded with the page. |
|
| ASP.NET Web Service |
| The Code Project |
| We can now use ASP.NET to create Web Service that is based on industrial standards included XML, SOAP and WSDL. This is a basic introduction to building Web services. |
|
| Asynchronous Callbacks in ASP.NET 2.0 |
| GotDotNet |
| ASP.NET 2.0 adds the ability to perform asynchronous callbacks to the server from your page. This sample shows you how to do this with the PDC release of ASP.NET 2.0 and Visual Studio "Whidbey". It also compares this technique with another way of doing async callbacks - the WebService DHTML behavior. |
|
| Authenticate Web Service |
| C# Corner |
| In this example we will build a web service that authenticates userid and password from an a very simple MS Access database. This web service exposes only one method to the client. This method takes input username and password, checks the values in the table, and if found returns the remaining fields from the table. |
|
| Authenticate Web Service Client |
| C# Corner |
| This client application shows you how to access Authenticate Web service. |
|
| BUG: "Cannot Implicitly Convert Type 'System.Data.DataSet'" Error When Application is Built |
| http://www.kbalertz.com/ |
| (815131) - You have a Web Service that has a Web Service method that returns an instance of a custom class. The class that is returned by the Web Service method implements the IXmlSerializable interface. If you use this Web Service in an application, you may... |
|
| BUG: "Cannot Implicitly Convert Type 'System.Data.DataSet'" Error When Application is Built |
| Microsoft Support |
| (815131) - You have a Web Service that has a Web Service method that returns an instance of a custom class. The class that is returned by the Web Service method implements the IXmlSerializable interface. If you use this Web Service in an application, you may... |
|
| BUG: "Cannot Implicitly Convert Type 'System.Data.DataSet'" Error When Application is Built |
| Microsoft Support |
|
(815131) - You have a Web Service that has a Web Service method that returns an instance of a custom class. The class that is returned by the Web Service method implements the IXmlSerializable interface. If you use this Web Service in an application, you may...
|
|
| Building a Distributed Web Service Using a Strongly-Typed DataSet in C# |
| DotNetJunkies |
| This is part two of series of articles intended to provide practical background information on design approaches for the .NET platform as well as providing clear explanations of the .NET features it introduces. In the last article in this series, it was described how to create a Web service that consumes another Web service that does not provide its result set in a .NET DataSet, by using the WSDL (Web service description language) which the consumed Web service provides, it is described how to build from th |
|
| Building a Web Service to Provide Real-Time Stock Quotes |
| DotNetJunkies |
| There are many benefits to using a Web Service, including the versatility of the client that consumes the Web Service and the reusability of the code. This article provides an example of a useful Web Service that provides real-time stock quotes through information scraped from public Web sites. |
|
| Building Message Board Web Services with C# and .NET -- Part I, The Web Services |
| C#Today |
| In this article, Chris Pike looks at how web services are constructed using C# and .NET. He does this by examining one of the most popular web applications, the message board. Amongst the topics looked at are the issues concerned with designing web service applications, and how to create the web service in Visual Studio .NET and C#. |
|
| Building RADical Web Services with VS.NET: A Top-Down Approach |
| DotNetJunkies |
| Peter works with Web Services in a RADical way. He shows you how to build powerful Web Services and their consumers without having to know that much about XML or serialization. |
|
| Changing Target Web Service At Runtime |
| .netBips |
| While developing clients for web services, we typically add a web reference to the web service by specifying URL of the .asmx file. Adding a web service in VS.NET generates required proxy object. However, it may happen that after adding the web reference the web service is moved to some other location. In such cases the most easy way is to recreate the proxy object. But what if the same thing happens after you deploy your web service client. It would be nice to allow configurable URL so that even if original web service is moved your clients need not be recompiled. In this article we will see how to do just that. |
|
| Code Access Security (CAS) and Design Patterns |
| The Code Project |
| Code Access Security (CAS) and Design Patterns |
|