Search

You searched for the word(s): userid:890163

Matching Posts

  • Re: Consume an ASP.NET Web Service with PHP

    Were you able to resolve this and get PHP SOAP to talk to your .NET web service? I created a simple web service method using ASP.NET/C# [WebMethod] public int addNumbers(int num1, int num2) { int result = num1 + num2; TextWriter tw = new StreamWriter(@"C:\WINDOWS\Temp\addNumbers.txt"); tw.WriteLine("" + num1 + " + " + num2 + " = " + result); tw.Close(); return result; } So the input and output parameters to the method call are logged to a text file. When I
Page 1 of 1 (1 items)