Click here to Skip to main content
15,867,686 members
Articles / Web Development / ASP.NET

Currency Conversion Using Web Services

Rate me:
Please Sign up or sign in to vote.
3.17/5 (20 votes)
9 Nov 2006CPOL2 min read 186.4K   35   47
This article teaches how to use a currency converter Web Service from www.xmethods.net in order to get exchange rates between currencies.

Introduction

I was navigating the web looking for a currency converter and, finally, I found an article by Phil Williams that explains currency conversion using Web Services. So I based this ASP.NET example on that article, and I have tries to make a little bit easier implementation using the ASP.NET environment. You will find the original article here: "Currency Conversion Using Web Services" by Phil Williams. Now, let's focus on the program. This article shows how to implement the currency converter Web Service from http://www.xmethods.net/ in order to get the exchange rates between currencies; the countries list is available in the xmethods website.

Step 1

Start a new ASP.NET project. In the web form, you must create three labels, named Trm (it will show US dollars in Colombian Pesos), Euro (same case but with Euro), Euro_Us (Euro in dollars).

Step 2

The second step is to add the Web Service reference to the third party Web Service, but how?? Go to the Solution Explorer, right click on the root, and click on Add Web Reference.

Sample screenshot

Sorry about the Spanish language in the screenshot, that's my mother language. In this page, you must specify the Web Service URL and click on Go. The URL is http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl. Now you will see all the methods available for the Web Service; this one just has one: the GetRate() Web Method.

  • Change the Web Reference name to any string; in this case, it will be Rate_WS.
  • Click on the Add Web Reference button.

Sample screenshot

Add Web Reference Wizard

Now you will be able to invoke the GetRate() method from your program.

Step 3

In the page_load event, add these lines:

C#
protected void Page_Load(object sender, EventArgs e)
{
    try{
        Rate_WS.CurrencyExchangeService to_currency = 
                new Rate_WS.CurrencyExchangeService();
        float euro_us = to_currency.getRate("euro", "united states"); 
        float us_pesos = to_currency.getRate("united states", "colombia"); 
        float euro_pesos = to_currency.getRate("euro", "colombia"); 
        Trm.Text = us_pesos.ToString(); 
        Euro.Text = euro_pesos.ToString(); 
        Euro_Us.Text = euro_us.ToString(); 
    } 
    catch(Exception){} 
}

Change the country names to what you want; the list of countries supported is available at http://www.xmethods.net/. This is an easy implementation for a basic Web Service. Feel free to make any changes.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Colombia Colombia
Web Developer during 3 years and counting, i worked over my school website by two years, right now im webmaster at World Wowan foundation banking in my home city.

Please forgive my pictures examples, they are at spanish language because its my mother language.


Comments and Discussions

 
Generalnice example Pin
marwa.hack9-Jun-07 23:21
marwa.hack9-Jun-07 23:21 
GeneralRe: nice example Pin
Britney S. Morales12-Jun-07 9:38
Britney S. Morales12-Jun-07 9:38 
GeneralGeca Pin
Geca25-May-07 2:47
Geca25-May-07 2:47 
GeneralRe: Geca Pin
Britney S. Morales12-Jun-07 9:37
Britney S. Morales12-Jun-07 9:37 
GeneralClean and simple Pin
Olav Alexander Mjelde29-Jan-07 21:28
Olav Alexander Mjelde29-Jan-07 21:28 
Generalhello Pin
chernobyl24-Jan-07 16:33
chernobyl24-Jan-07 16:33 
GeneralRe: hello Pin
Britney S. Morales25-Jan-07 1:11
Britney S. Morales25-Jan-07 1:11 
GeneralNice example on web service Pin
Sheel Gohe9-Jan-07 5:37
Sheel Gohe9-Jan-07 5:37 
Hi,
Your article on web services is impressive. Can you provide me some more examples or liks to sites from where i can find out some advance topics on web services.

Thanks & Regards
Sheel Gohe

Sheel Gohe

GeneralRe: Nice example on web service Pin
Britney S. Morales9-Jan-07 10:29
Britney S. Morales9-Jan-07 10:29 
GeneralCode not working Pin
lkouchica1-Dec-06 4:35
lkouchica1-Dec-06 4:35 
GeneralRe: Code not working Pin
Britney S. Morales1-Dec-06 5:40
Britney S. Morales1-Dec-06 5:40 
GeneralI prefer to use this Web Service Pin
Andri Yadi26-Nov-06 21:14
Andri Yadi26-Nov-06 21:14 
GeneralRe: I prefer to use this Web Service Pin
Munni1128-Sep-07 5:05
Munni1128-Sep-07 5:05 
GeneralCode? what Code? I am just here to look at her picture. Pin
rishen sukai23-Nov-06 19:54
rishen sukai23-Nov-06 19:54 
JokeI'm still looking at your picture Pin
Kevin C Ferron10-Nov-06 12:27
Kevin C Ferron10-Nov-06 12:27 
GeneralThanks ;) Pin
Polymorpher27-Sep-06 8:20
Polymorpher27-Sep-06 8:20 
GeneralRe: Thanks ;) Pin
leppie9-Nov-06 23:09
leppie9-Nov-06 23:09 
GeneralRe: Thanks ;) Pin
Polymorpher10-Nov-06 13:54
Polymorpher10-Nov-06 13:54 
GeneralCode not working properly at my end Pin
Ecologic6-Sep-06 21:11
Ecologic6-Sep-06 21:11 
GeneralRe: Code not working properly at my end [modified] Pin
Britney S. Morales7-Sep-06 2:40
Britney S. Morales7-Sep-06 2:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.