Example #1
0
<?php

require_once "php2wsdl/WSDLCreator.php";
$test = new WSDLCreator("NEWT-RTLS", "http://rtls.gg/ws/");
$test->addFile("lib/RTLSSOAP.class.php");
$test->setClassesGeneralURL("http://rtls.gg/ws/");
$test->addURLToClass("RTLSSOAP", "http://rtls.gg/ws/");
$test->addURLToTypens("Person[]", "http://rtls.gg/ws/");
$test->addURLToTypens("Event[]", "http://rtls.gg/ws/");
$test->addURLToTypens("Tag[]", "http://rtls.gg/ws/");
$test->createWSDL();
$test->saveWSDL("/home/labadmin/eclipse-workspace/newt-rtls/ws.wsdl", true);
<?php

require_once "../WSDLCreator.php";
//header("Content-Type: application/xml");
$test = new WSDLCreator("WSDLExample1", "http://www.yousite.com/wsdl");
//$test->includeMethodsDocumentation(false);
$test->addFile("example_class.php");
$test->addFile("example_class2.php");
$test->setClassesGeneralURL("http://protung.ro");
$test->addURLToClass("example1", "http://protung.ro/examplewsdl");
$test->addURLToTypens("XMLCreator", "http://localhost/php2swdl");
$test->ignoreMethod(array("example1_1" => "getEx"));
$test->createWSDL();
$test->printWSDL(true);
// print with headers
//print $test->getWSDL();
//$test->downloadWSDL();
//$test->saveWSDL(dirname(__FILE__)."/test.wsdl", false);
Example #3
0
<?php

require_once "../WSDLCreator.php";
header("Content-Type: application/xml");
$test = new WSDLCreator("RockPaperScissors", "http://www.bcmoney-mobiletv.com/services/games/rps/rps.wsdl");
$test->includeMethodsDocumentation(false);
$test->addFile("../../server.php");
$test->setClassesGeneralURL("http://bcmoney-mobiletv.com");
$test->addURLToTypens("rps", "http://bcmoney-mobiletv.com/services/games/rps/");
//$test->addURLToClass("XMLCreator", "http://localhost/php2swdl");
$test->ignoreMethod(array("rps" => "__construct"));
$test->createWSDL();
$test->printWSDL(true);
// print the WSDL to screen (with headers)
#print $test->getWSDL(); //return the WSDL as a string so you can save it in a variable
#$test->downloadWSDL(); //force you to download a copy of the generated WSDL
#$test->saveWSDL(dirname(__FILE__)."/test.wsdl", false); //save the WSDL to the file location specified