php-wsdl-creator Wiki
PhpWsdl I started to develop my own WSDL generator for PHP because th
Brought to you by:
odvpbre
The WSDL produced by PhpWsdl is independent from the used SOAP client. And PhpWsdl brings its own SOAP client solution.
PhpWsdl wraps the native PHP SoapClient object. Example usage:
require_once('class.phpwsdlclient.php'); $client=new PhpWsdlClient('http://wan24.de/test/phpwsdl2/demo4.php?WSDL'); echo $client->SayHello('you');
But the client can do quiet more for you:
Wiki: PhpWsdl
Wiki: SoapClient
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: dami...@gmail.com
Hi,
I am using this example to create my very own and simple one like below.
require_once('php-wsdl-2.3/class.phpwsdlclient.php'); $client=new PhpWsdlClient?('http://localhost/WSBannerPHP/demo4dan.php?wsdl'); echo $client->getItem(4);
I am getting a 500 error, any idea?
my web service code is as follows:
<?php
// A quick and dirty SOAP server example
ini_set('soap.wsdl_cache_enabled',0); // Disable caching in PHP $PhpWsdlAutoRun?=true; // With this global variable PhpWsdl will autorun in quick mode, too require_once('php-wsdl-2.3/class.phpwsdl.php');
// In quick mode you can specify the class filename(s) of your webservice // optional parameter, if required. //PhpWsdl::RunQuickMode?();// -> Don't waste my time - just run!
class myWebService{
} ?>