Hi List,
I'm wondering on which Apache Version to use.
I've been using both the 1.3 and the 2.0 and
they both have been working fine for me, I
remember a couple years ago developers have
been warned to use the 2.0 with PHP, but I
don't remember why. Wo how do they differ?
I want to use PHP 5.03
t
I changed the php code to the follows.
http://localhost/TestService/Service1.asmx?WSDL',
'wsdl');
$soap_proxy = $client->getProxy();
$rs = $soap_proxy->HelloWorld(null);
echo $rs;
?>
=== Output ===
Hello World
Array
However the output is till $rs = Array
Am I missing anything, or I need
You could print_r $rs and see exactly what it contains. Otherwise you
could add this to your code to make things simpler.
$soap_proxy = $client->getProxy();
$result = $soap_proxy->HelloWorld();
This is how I do it.
Charles
-Original Message-
From: Adam [mailto:[EMAIL PROTECTED]
Sent:
Hello
I am new to PHP soap and I have a simple question.
here is my simple hello world server class
namespace TestService
{
public class Service1 : System.Web.Services.WebService
{
public Service1()
{
InitializeComponent();
}
[WebMethod]
public string HelloWorld()
{
return "H
I have copied the sample of gmp_add() from the function page and have tried
to run it from the snap that I downloaded this morning with the recommended
ini that is in the folder with it and I keep getting the error here.
PHP Fatal error: Call to undefined function gmp_add()
do I need a dll exten
Sencer wrote:
...
> Is there a trusted source where I can get current php-binaries that are
> compiled with --enable-memory-limit?
None that I know of... unless of course you trust me ;)
Seriously, why not just do it yourself? cygwin/gcc is free and easily
obtained.
--
Teach a man to fish...
N