Re: [PHP-SOAP-DEV] 0.1.1 compiles as dso.
Status: Alpha
Brought to you by:
rodif_bl
|
From: brad l. <rod...@ya...> - 2002-05-03 02:18:16
|
You built php-soap statically. This has always worked. What i mean
as dso is when you product libsoap.so and use ither dl() or chnage
the phpconfig to load php-soap. Using the phpize script i think
they call it "self contained extensions".
let me know how your benchmarks go.
I am currently trying to track down a segfault problem on linux. Tell
me if you get it. Its kinda random.
-brad
--- Andrey Hristov <ahr...@ic...> wrote:
> Good news. I've succeeded to compile the soap extension in the libphp4.so
> and the example with hello_world_client.php and hello_world_server.php is
> working - no failure like before. I only decompressed in the ext directory,
> then ./buildconf and after that edited my config.nice to add '--enable-soap'
> \ . I waited for errors on the make but no one appeared.
>
>
> hello_world_client.php
> <?php
> error_reporting(E_ALL);
> $hello = new SoapObject("http://192.168.1.40/hello_world_server.php",
> "urn:HelloWord");
> echo $hello->hello_soap("alala");
> //var_dump($hello);
> //var_dump(get_class_methods('SoapServer'));
> ?>
>
> <?php
> $server = new SoapServer("urn:HelloWord");
> $server->addfunction("hello_soap");
> $server->handle();
>
> function hello_soap($message){
> return "PHP-SOAP says ($message)";
> }
> ?>
>
> Tommorow I'll some simple benchmarks.
>
> Brad, look here some some info about config.m4 unless you know that.
> http://php.net/manual/en/zend.build.php
>
> Andrey
>
>
>
>
> _______________________________________________________________
>
> Have big pipes? SourceForge.net is looking for download mirrors. We supply
> the hardware. You get the recognition. Email Us: ban...@so...
> _______________________________________________
> Phpsoaptoolkit-development mailing list
> Php...@li...
> https://lists.sourceforge.net/lists/listinfo/phpsoaptoolkit-development
__________________________________________________
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com
|