--TEST-- SOAP Typemap 12: SoapClient support for typemap's to_xml() (SoapFault) --SKIPIF-- --INI-- soap.wsdl_cache_enabled=0 --FILE-- 'http://schemas.nothing.com', 'typemap' => array(array("type_ns" => "http://schemas.nothing.com", "type_name" => "book", "to_xml" => "book_to_xml")) ); $client = new TestSoapClient(dirname(__FILE__)."/classmap.wsdl",$options); $book = new book(); $book->a = "foo"; $book->b = "bar"; try { $ret = $client->dotest($book); } catch (SoapFault $e) { $ret = "SoapFault = " . $e->faultcode . " - " . $e->faultstring; } var_dump($ret); echo "ok\n"; ?> --EXPECT-- string(37) "SoapFault = Client - Conversion Error" ok