xref: /php-src/ext/soap/tests/server018.phpt (revision 7f2f0c00)
1--TEST--
2SOAP Server 18: user fault (through throw)
3--EXTENSIONS--
4soap
5--FILE--
6<?php
7function test() {
8    throw new SoapFault("MyFault","My fault string");
9}
10
11$server = new soapserver(null,array('uri'=>"http://testuri.org"));
12$server->addfunction("test");
13
14$HTTP_RAW_POST_DATA = <<<EOF
15<?xml version="1.0" encoding="ISO-8859-1"?>
16<SOAP-ENV:Envelope
17  SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
18  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
19  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
20  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21  xmlns:si="http://soapinterop.org/xsd">
22  <SOAP-ENV:Body>
23    <ns1:test xmlns:ns1="http://testuri.org"/>
24  </SOAP-ENV:Body>
25</SOAP-ENV:Envelope>
26EOF;
27
28$server->handle($HTTP_RAW_POST_DATA);
29echo "ok\n";
30?>
31--EXPECT--
32<?xml version="1.0" encoding="UTF-8"?>
33<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstring></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
34ok
35