~ubuntu-branches/ubuntu/hardy/php5/hardy-updates

« back to all changes in this revision

Viewing changes to ext/soap/tests/soap12/T64.phpt

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--TEST--
 
2
SOAP 1.2: T64 echoOk
 
3
--SKIPIF--
 
4
<?php require_once('skipif.inc'); ?>
 
5
--FILE--
 
6
<?php
 
7
$HTTP_RAW_POST_DATA = <<<EOF
 
8
<?xml version='1.0' ?>
 
9
<!DOCTYPE DOC [
 
10
<!NOTATION application_xml SYSTEM 'http://www.isi.edu/in-notes/iana/assignments/media-types/application/xml'>
 
11
]>
 
12
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"> 
 
13
 <env:Body>
 
14
    <test:echoOk xmlns:test="http://example.org/ts-tests">
 
15
      foo
 
16
    </test:echoOk>
 
17
 </env:Body>
 
18
</env:Envelope>
 
19
EOF;
 
20
include "soap12-test.inc";
 
21
?>
 
22
--EXPECT--
 
23
<?xml version="1.0" encoding="UTF-8"?>
 
24
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"><env:Body><env:Fault><env:Code><env:Value>env:Receiver</env:Value></env:Code><env:Reason><env:Text>DTD are not supported by SOAP</env:Text></env:Reason></env:Fault></env:Body></env:Envelope>