Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Wednesday, March 10, 2010

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > C-Sharp > Web Services > SOAP
Search:
What's New - What's Hot


Secure Web Services via TCP/IP        
Total Hits: 375  |  Today: 0 Author: codeproject       Rating:  
Read Reviews | Write Review |   Your Rating: 

This Article Describes an approach for delivery of Soap Messages serialised using ASP.NET Web Client Services over TCP/IP....

Using ATL Server to Build an Asynchronous SOAP Client in Unmanaged C++        
Total Hits: 114  |  Today: 0 Author: Pranish Kumar and Bogdan Crivat       Rating:  
Read Reviews | Write Review |   Your Rating: 

SOAP opens up a new world of Web Services, letting you make function calls across a network or the Internet. But this flexibility creates new problems when your app needs to wait for calls to return from halfway around the world. What you need is an asynchronous SOAP client that takes advantage of threading to continue execution while waiting for calls over the wire. This article covers the basics of building such a client with ATL....

Capturing and Analyzing Client Transaction Metrics for .NET-Based Web Services        
Total Hits: 117  |  Today: 0 Author: Brian Connolly       Rating:  
Read Reviews | Write Review |   Your Rating: 

The success or failure of IT departments can depend on their ability to deliver a high throughput of requests to the services they support. This is especially important for Web services. In order to ensure adequate throughput, you really need to be able to measure response times. To achieve that goal, this article presents a general-purpose reporting mechanism that can be used in any .NET system that employs HTTP and SOAP....

Web Methods Make it Easy to Publish Your App's Interface over the Internet        
Total Hits: 72  |  Today: 0 Author: Paula Paul       Rating:  
Read Reviews | Write Review |   Your Rating: 

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 conte...

Use Web Services Provisioning to Control Access, Usage, and Billing on Your Site        
Total Hits: 78  |  Today: 0 Author: Chandu Thota       Rating:  
Read Reviews | Write Review |   Your Rating: 

Building Web Services to provide enterprise-level solutions is only the first step. You need to take care of the infrastructure aspects of your solution as well, including provisioning, billing, security, and reporting. In this article, the author uses the .NET Framework and SQL Server 2000 to design a provisioning system that will take care of all these housekeeping tasks. He discusses the general requirements of a Web Service provisioning system, walks through the implementation, and then outl...

Authenticate .NET web service with custom SOAP Header        
Total Hits: 46  |  Today: 0 Author: Ahmed Shokr       Rating:  
Read Reviews | Write Review |   Your Rating: 

Many of us want ot secure the calls to our web services, right?

There are so many ways to do this, one of them is to use custom SOAP header.

Using this method we simply add a required SOAP header to our web services calls.

We embed the SOAP header into our message and validate its contents on the server.

If the SOAP header validation done successfully, the web server sends the web service response to the consumer....

Web Services, a simple approach        
Total Hits: 52  |  Today: 0 Author: vivekthangaswamy       Rating:  
Read Reviews | Write Review |   Your Rating: 

The main idea of this series of articles is not to make you feel as though you are learning a whole new technology altogether, but to make you realize that this new innovation is reusing existing knowledge to create a more capable and robust system in the Web world. Basically, this article is for learning what a web service is, how to create a web service in .NET, how to access the database using web services, how to populate a GridView using web services etc....

A web service as a framework for simplifying development and deployment of business functions        
Total Hits: 56  |  Today: 0 Author: Xiangyang Liu 刘向阳       Rating:  
Read Reviews | Write Review |   Your Rating: 

In the company where I work we use a lot of web services to communicate between the front-end web applications and the various back-end systems. Now, I am a little tired of creating and deploying ASP.NET web services. Don't get me wrong, I like ASP.NET as a tool for developing web services. However, almost every time our website needs enhancements I end up delivering a new ASP.NET web service....

Extract Soap Body From Soap Message        
Total Hits: 81  |  Today: 0 Author: BillyLiu       Rating:  
Read Reviews | Write Review |   Your Rating: 

To extract the soap body, the key point is to get the soap envelope prefix. The soap
prefix can be found from the first level Nodes....

Calling Web Services From Javascript - Using SOAP Client        
Total Hits: 70  |  Today: 0 Author: Gökmen BULUT       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article will show you how to make a web service call using only html markup and javascript....

Using SoapExtension to manage sessions        
Total Hits: 62  |  Today: 0 Author: Diego Resnik       Rating:  
Read Reviews | Write Review |   Your Rating: 

When scalability is a main issue in your application, it is common to design and build a stateless solution.
Stateless design allows our application to be duplicated to several servers as the amount of users grows, load balancing could be taken to the max, plus it saves resources "wasted" on session management.
The downside is that in most applications having session identifier or other session level parameters is really convenient (sometimes even necessary)....

Using SOAP Extensions to provide progress notification for Web Service calls        
Total Hits: 84  |  Today: 0 Author: Kim Major       Rating:  
Read Reviews | Write Review |   Your Rating: 

The purpose of this article is to show how to get progress notifications as data is sent and received from a web server during web service calls. This will be achieved by using a simple SOAP Extension. I am using C# (2.0) in the article and in the attached solution. If there is demand for a VB.NET version, I'll provide one in the future. I have also stripped out some of the comments from the source code that appear inline in the article, to save some space and avoid saying a lot of things twice....

SoapMSMQ Transport        
Total Hits: 59  |  Today: 0 Author: Roman Kiss       Rating:  
Read Reviews | Write Review |   Your Rating: 

Web Services Enhancements for Microsoft .NET version 2.0 (WSE 2.0) includes a new feature - SOAP messaging. This feature enables implementation of the message driven (oriented) architecture based on the WS-* specification and minimizes its migration into the next connectivity model - Indigo. The WSE 2.0 introduces a lightweight messaging infrastructure allowing to send and receive the SoapEnvelope between the endpoint and its consumer using built-in transports such as TCP, HTTP and inproc....

Prepare a JSON Web Service and access it with JQuery        
Total Hits: 37  |  Today: 0 Author: Sohel_Rana       Rating:  
Read Reviews | Write Review |   Your Rating: 

I have tried to find out how I can return JSON formatted data from a Web Service and how I can parse data with JQuery. I needed to know how I can return JSON data from a Web Service and how I can parse the data from client-side using JQuery. I have not found so much detailed information or a full article from where a developer can start. So, I decided to write this article. When we develop an application that will communicate with a remote computer, a data format for this communication need to b...

Trace SOAP Request/Response XML with TraceExtension        
Total Hits: 92  |  Today: 0 Author: Arindam Sinha       Rating:  
Read Reviews | Write Review |   Your Rating: 

In one of my recent projects, I had to interact with one .NET Web Service (ASMX) from a Windows Desktop application. Now another java application would be accessing the same Web Service. So the java developers need a sample SOAP Request/Response XML for the Web Service. Before I start discussing on the approach of logging SOAP Request-Response XML, I would like to elaborate on same basic things Web Service referencing....

Webservice sample - example of using SOAP protocol to access Internet Database Server        
Total Hits: 292  |  Today: 0 Author: Nguyen-Thanh-Tung.       Rating:  
Read Reviews | Write Review |   Your Rating: 

I did this stuff more than 2 years ago and just wanted to share with "beginners" who are getting to know why webservice would be very useful when crossing the far distance and can be shared for many clients. This example shows you how to communicate with a DB Server on the Internet from a client application on your PC using SOAP protocol. Usually, Enterprise Information System (EIS) such as ERP, CRM, SCM are built for internal use purposes and installed on the LAN. We will use direct connection ...

Retrieving Data from Web Services using Standard HTTP 1.1 Compression        
Total Hits: 257  |  Today: 0 Author: Jacek Chmiel       Rating:  
Read Reviews | Write Review |   Your Rating: 

SOAP messages generated by Web Services may become very large, reducing scalability by consuming expensive network bandwidth. CPU power is often much cheaper and easier to extend than network bandwidth.

HTTP 1.1 protocol introduced standard ways of compression using gzip or deflate algorithms supported by web servers. Initial tests shown that average compression ratio 10:1 can be easily achieved with large SOAP messages (for instance ADO.NET DataSets with multiple rows). Such reduction of...

Send MSMQ Messages Securely Across the Internet with HTTP and SOAP        
Total Hits: 222  |  Today: 0 Author: David S. Platt       Rating:  
Read Reviews | Write Review |   Your Rating: 

When creating a distributed system you frequently need to provide for communication between two entities that are not in sync. Microsoft Message Queue Server (MSMQ) provides the kind of store-and-forward messaging in a pre-built infrastructure that can help you address these kinds of messaging needs. In the past, MSMQ was accessed using a COM wrapper. Now there's a .NET wrapper that lets you accomplish your messaging goals easily from your Framework-based code. To illustrate the use of the wrapp...

Secure Web Services via TCP/IP        
Total Hits: 320  |  Today: 0 Author: Simon Gregory       Rating:  
Read Reviews | Write Review |   Your Rating: 

This short article builds on the previous article "Secure Web Service via Message oriented Middleware" [1] and extends the framework developed in the former to cover TCP/IP-based communications. Since the solution will merely extend the original framework with support for a new communications protocol, all the original facilities (such as the ability to secure data using the Web Services Enhancements (WSE) 1.0) are capable of being utilized within the IP communications channel....

Programming Web Services with SOAP        
Total Hits: 559  |  Today: 0 Author: James Snell, Doug Tidwell & Pavel Kulchenko       Rating:  
Read Reviews | Write Review |   Your Rating: 

In Chapter 2, we looked under the hood of SOAP at the XML underneath. In this chapter, we demonstrate how to create, deploy, and use SOAP web services using toolkits for Java, Perl, and Microsoft's new .NET platform. We cover the installation, configuration, and use of SOAP::Lite for Perl, Apache SOAP for Java, and Microsoft .NET for C#....


1  2  Next >> 


DevASP.Net - Disclaimer - Privacy
© 2002-2010 DevASP.net