in reply to How to call a .NET web service from PERL

The code here looks right. Are you sure the web service itself is working correctly?

"There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.

  • Comment on Re: How to call a .NET web service from PERL

Replies are listed 'Best First'.
Re^2: How to call a .NET web service from PERL
by bears22 (Initiate) on Jan 14, 2005 at 21:49 UTC
    Here is my .NET Web service code:
    [WebMethod] public double ConvertTemperature(double dFahrenheit) { return ((dFahrenheit - 32) * 5) / 9; }
    I am using the standard example of Hello World from Visual Studio.NET and I added one more function. I can test this web service locally on my own machine by going directly to the URL (http://localhost/WebService1/Service1.asmx) and I get a web page to load asking me for input and providing a button to invoke.

    Is it my machine and the setup?