 |
|
 |
Hello Britney, I have used your code to get rate and used this webservice: www.freewebs.com/jimmy_cheng/CurrencyExchangeService.wsdl But when I run my application nothing happens, the label still remains the same Label Any Idea??? Awaiting for reply, Thanks, Usman
|
|
|
|
 |
|
|
 |
|
 |
hi,
this service http://www.webservicex.net/CurrencyConvertor.asmx?wsdl is currently unavailable. Can anyone help me?? Anybody knows other available service
tnks in advance
|
|
|
|
 |
|
 |
Hi Britney S. Morales,
using url: http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl[^]
i get following message-
There was an error downloading 'http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl'.
The request failed with HTTP status 404: Not Found.
is this service currently unavailable?
|
|
|
|
 |
|
 |
Hola Britney, que bien me salvaste la patria, de que ciudad eres vos, yo tambien soy de colombia.
|
|
|
|
 |
|
 |
can i be your student ?
|
|
|
|
 |
|
 |
Sí... cómo es que una belleza como tú, hace lo que a mi me encanta...?
Y muy creativa por cierto...
Sigue así.
Saludos cordiales.
Alberto Contreras.
|
|
|
|
 |
|
 |
Hola,
revise la implementacion del currency convertion sin embargo se presentan algunas dudas q te refiero a continuacion:
verificando la implementacion de Phil Williams se muestra que no es posible conectarse al servicio http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl. Existe alguna implementacion q vos conozcas?
si esto es asi que nivel de disponibilidad presenta el servicio web al q haces referencia? puesto q estoy en un desarrollo de un producto para servientrega q requiere una alta disponibilidad del web service.
Muchas Gracias de antemano por tu colaboracion
William Andres Patarroyo
Developer Engineer
Bogota Colombia
wamerikan@gmail.com
|
|
|
|
 |
|
|
 |
|
 |
Hi,
Great, the new address is available
thanks for your support
William Andres
|
|
|
|
 |
|
 |
Hi,
i've been reviewed this WS http://www.webservicex.net/WS/WSDetails.aspx?WSID=10 and i found some items in order to complement this issue:
when this service has been invoked the sintax is:
CurrencyConverter.CurrencyConvertor myref = new TestWebService.CurrencyConverter.CurrencyConvertor();
and then
double convertion= myref2.ConversionRate(TestWebService.CurrencyConverter.Currency.EUR, TestWebService.CurrencyConverter.Currency.COP);
the WS deifnition has been modified, something else i got a question.. how long time that service is active? it wouldn't be a good thing that, in any time this service has been disabled like the previous one: http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl
however i'm going to research and i will write you
thank you
|
|
|
|
 |
|
 |
Hey Britney whenever i am trying to use your suggested web service it asking me uid,pwd and domain name... can you please suggest me the posible way to avoide it
Thanks
|
|
|
|
 |
|
 |
Hi,
The link provided by you for currency converter webservice does not work. May be the URL has changed. Can you provide a message regarding the current URL of the webservice.
thanks
shraddha
shraddha
|
|
|
|
 |
|
 |
Tambien hay latinos por aqui.
y por cierto estas preciosa!!!
|
|
|
|
 |
|
 |
Thank you Britney , you got me searching for more webservices (since your example didn't function anymore) and i found:
http://www.webservicex.net/CurrencyConvertor.asmx?op=ConversionRate[^]
I use it for dollars only so the code then would be something like:
public string GetDollars(string sPrice)
{
double dPrice;
try
{
CurrencyConvertor.CurrencyConvertorSoapClient cs = new CurrencyConvertor.CurrencyConvertorSoapClient();
if (double.TryParse(sPrice, out dPrice))
{
dPrice = dPrice * cs.ConversionRate(CurrencyConvertor.Currency.EUR, CurrencyConvertor.Currency.USD);
}
else
{
dPrice = 0;
}
}
catch
{
dPrice = 0;
}
return dPrice.ToString();
}
modified on Monday, September 15, 2008 5:06 AM
|
|
|
|
 |
|
 |
Enable to open the url
http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl
Getting a message "Page not found"
Can u give me someother webservice URL for Currency Converter
|
|
|
|
 |
|
|
 |
|
 |
I cant seem to access the web service...
is there another wsdl to connect to?
I wanted to add a converter for my website http://www.torresesterlinas.com
I would need to convert costa rican currency to us dollars...
thanks for your help,
Jeff
|
|
|
|
 |
|
 |
Hi,
This is sandeep. I have seen your example for currency conversion in code project example.the service link which you have given is not working now can you please sujjest any other alternative for this to make it work.
Thanks Sandeep.
Sandeep
|
|
|
|
 |
|
 |
Hi, I never see such a beautiful face before. Please send me your Email address and yeah your messenger ID also. I hope we will in touch soon. buy Avi duke(back2normal@rediffmail.com)
|
|
|
|
 |
|
 |
, sorry i cant
keep Learning and you never will be out of date...
|
|
|
|
 |
|
 |
Hi, I tried using the web service in windows console application it was working fine, but when i try using the same code in windows device application i an getting an web exception.
Code on buton click:
private void menuItem1_Click(object sender, EventArgs e)
{
net.xmethods.www.CurrencyExchangeService cc = new net.xmethods.www.CurrencyExchangeService();
double d = cc.getRate("Euro", "India");
label1.Text = d.ToString();
}
the same coding is working fine in console application but showing Web Exception in windows device application. Please help me............
Thank You
shakthi
|
|
|
|
 |
|
 |
Can you write the exception sentence over here???,
keep Learning and you never will be out of date...
|
|
|
|
 |
|
 |
even using try catch block...doesn't work..still it is showing Web Exception....
|
|
|
|
 |
|
 |
thx was just lookin for a web service doin this
|
|
|
|
 |