Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
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
Using SoapExtension to manage sessions     
Total Hits: 96  |  Today: 0Author: 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)....

Use Web Services Provisioning to Control Access, Usage, and Billing on Your Site     
Total Hits: 95  |  Today: 0Author: 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...

Capturing and Analyzing Client Transaction Metrics for .NET-Based Web Services     
Total Hits: 143  |  Today: 0Author: 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....

Developing SOAP Web Services with PHP/C#  Version: 0.00     Price: $0.00  
Total Hits: 23  |  Today: 0Author: jonpreecebsc      Rating:  
Read Reviews | Write Review |  Your Rating: 

The goals of this research were:

1. Learn what a web service is.
2. Learn what SOAP is.
3. Learn how to consume PHP/SOAP web services from a PHP website and from a Windows desktop application....

Using ATL Server to Build an Asynchronous SOAP Client in Unmanaged C++     
Total Hits: 139  |  Today: 0Author: 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....

Webservice sample - example of using SOAP protocol to access Internet Database Server     
Total Hits: 313  |  Today: 0Author: 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: 274  |  Today: 0Author: 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: 234  |  Today: 0Author: 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: 411  |  Today: 0Author: 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 SOAP Headers to validate clients  Version: 0.00     Price: $0.00  
Total Hits: 11  |  Today: 0Author: Roger Smith      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this brief article I intend to show how you can secure your web service by using SOAP headers. Often times we create a web service that we only want to enable for our own clients or would like to enable only for authorized clients. You can accomplish this by using SOAP headers to authenticate the client and process the request or throw an exception when they are not properly authorized....

Authenticate .NET web service with custom SOAP Header     
Total Hits: 90  |  Today: 0Author: 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....

Trace SOAP Request/Response XML with TraceExtension     
Total Hits: 138  |  Today: 0Author: 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....

Web Methods Make it Easy to Publish Your App's Interface over the Internet     
Total Hits: 98  |  Today: 0Author: 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...

Secure Web Services via TCP/IP     
Total Hits: 328  |  Today: 0Author: 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: 585  |  Today: 0Author: 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#....

Consume WebService Using SOAP     
Total Hits: 747  |  Today: 0Author: CodeProject      Rating:  
Read Reviews | Write Review |  Your Rating: 

Web Services are thought of to be a means to provide easily accessible services over a network. We can use VS.NET IDE to create Web Service.
While there are different techeniques to communicate with a Web Services, SOAP is regarded to be the actual standard. SOAP messages are being sent to service endpoints. This can simply be SOAP over HTTP....

Send MSMQ Messages Securely Across the Internet with HTTP and SOAP  Version: 0.00     Price: $0.00  
Total Hits: 5  |  Today: 0Author: 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...

How to: Expose a Contract to SOAP and Web Clients  Version: 0.00     Price: $0.00  
Total Hits: 24  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

By default, Windows Communication Foundation (WCF) makes endpoints available only to SOAP clients. In How to: Create a Basic WCF REST Service, an endpoint is made available to non-SOAP clients. There may be times when you want to make the same contract available both ways, as a Web endpoint and as a SOAP endpoint. This topic shows an example of how to do this....

Web Services, a simple approach     
Total Hits: 91  |  Today: 0Author: 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: 88  |  Today: 0Author: 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....



Disclaimer - Privacy
© 2002-2012 DevASP.net