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

« back to all changes in this revision

Viewing changes to ext/soap/tests/soap12/T02.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: T02 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
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"> 
 
10
  <env:Header>
 
11
    <test:echoOk xmlns:test="http://example.org/ts-tests"
 
12
          env:role="http://example.org/ts-tests/C">foo</test:echoOk>
 
13
  </env:Header>
 
14
  <env:Body>
 
15
  </env:Body>
 
16
</env:Envelope>
 
17
EOF;
 
18
include "soap12-test.inc";
 
19
?>
 
20
--EXPECT--
 
21
<?xml version="1.0" encoding="UTF-8"?>
 
22
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://example.org/ts-tests"><env:Header><ns1:responseOk>foo</ns1:responseOk></env:Header><env:Body/></env:Envelope>
 
23
ok