Introduction
Microsoft introduced cloud platform officially known as Azure Services Platform.It makes easy for .NET Developers to move their applications to the cloud using same tools and API’s they’re already familiar with. It provides highly-scalable execution environment for running .NET Applications and storing data in Microsoft data centers throughout the world.
The .NET Service Bus With Example
You need to open an account with the .NET Service Bus, and need to use the .NET Service Bus administration Web site to create a new solution. You can open an account by visiting the following link . More about The .NET Service Bus can be found here.
The .NET Service Bus
Introduction
The .NET Service bus is a powerful and useful feature from Windows Azure Cloud Computing. The .NET Service bus is designed to address the connectivity issues in advanced communication scenarios. The main issue it addresses is Internet connectivity. This post explains how it addresses these issues in real world.
Internet Connectivity Challenge
Validating XML Document Using XSD in C#.NET
Introduction This post explains how to apply XML Schema Definition Language(XSD) to Extensible Markup Language (XML) document. Basics of XSD. Create an XML Document Start Visual Studio .NET Create a new XML File. Add the following data to the XML Document <Employee EmployeeID="123"> <EmployeeName>James Bond</EmployeeName> </Employee> 4. Save...
XML Schema Basics(XSD)
Introduction This post gives a basic overview of XML Schema and how to use in development. XML schema describes what XML document contains and content of the XML document what fields and sub elements it can contain. Standards for Describing XML Document DTD : was the First formulized standard. XDR: Much comprehensive standard than DTD. XSD: Currently de facto standard for describing the XML...
WSE Settings 3.0 Tool
The WSE features can be enabled by using WSE 3.0 tool which is a graphical user interface in visual studio 2005. You have to download the WSE 3.0 for .NET to configure the WSE 3.0 tool. To open the WSE Settings 3.0 tool from Visual Studio 2005. Open the Solution or project that you want to use the WSE with. Right click the project point to WSE Settings 3.0 and click To use the WSE settings...
Overview of WSE 3.0
Introduction Web Services Enhancements is a .NET class library to develop web services using latest protocols. Features Securing the Web Services: It is difficult to secure a web service that cross the security domains. We can secure a web service by sending over secure transport, such as Secure Socket Layer(SSL) but that holds good when the communication is point-to-point. Some times SOAP...
HOST ASP.NET Web service in a Windows service
The following is the procedure to host a web service in windows service. Open Visual Studio 2005. Create an ASP.NET Web service. a. File menu, choose New Web Site b. In the New Web Site dialogue box, select the ASP.NET Web Service. c...
SOAP Message Routing with WSE
A application using WSE can be designed by setting up a intermediary computer that is configured to run on WSE router. Clients send messages to WSE router instead of to the web service. WSE Router Benefits of using WSE router is computer that hosting a web service can be taken offline for maintenance with out modifying the client code or its configuration. Administrator prepares a web.config file...
MTOM Support to Web Service
Overview of MTOM Using MTOM an application can send or receive a large amount of data. MTOM allows message-level security to be applied to the message including binary data. MTOM encodes the SOAP message and transmits the message as XML. Following is the procedure to send large amount of data using MTOM Open the web service project in Visual studio 2005 2. Enable the project to...