Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
16 views

Getting Started With Web Services

From these documents you will able to learn step by step, and you will be able to create projects as well as you can be good programmer or a good teacher or trainer on your filed

Uploaded by

eshamu
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views

Getting Started With Web Services

From these documents you will able to learn step by step, and you will be able to create projects as well as you can be good programmer or a good teacher or trainer on your filed

Uploaded by

eshamu
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

Getting Started With Web Services

Web Service
Web Services is one of the greatest technologies developed in the Internet world. They can be used to connect businesses with each other and clients in a standard way using XML (Extensible Markup Language), SOAP (Simple Object Access Protocol), WSDL (Web Services Description Language), and UDDI (Universal Description, Discovery and Integration). XML is used for structuring the data, SOAP is used to transfer the data, WSDL is used for describing the services, and UDDI is used to get a list of services available. Web Services allows applications to communicate with each other without worrying about their hardware systems, operating systems, and programming languages.

Web Service Process Flow

SOAP/XM L

Creating Web Service


1. Select the Web Service Web Site Template

Creating Web Service Cont..


2. Creating web methods we can create public methods within the web service class to expose the functionality to other applications. We must place the WebMethod attribute before the declaration of every method that need to be expose for use by other application.

Creating Web Service Cont..


3. We can check the method execution by running the web service application.

Creating Web Service Cont..


4. Add the web services web reference into client application.

User Controls cont..


5. Using web service,

Globalization of Application
Globalization is the process of designing applications that can adapt to different cultures.

Code..
Imports System.Globalization
Dim myCulture As New CultureInfo("de-DE") Dim curDate As DateTime = DateTime.Now

datelabel.Text = curDate.ToString("g", myCulture)


Dim salaryAmt As Double = 1984.47 salarylabel.Text = salaryAmt.ToString("c", myCulture)

Me.Text = myCulture.DisplayName

You might also like