|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-12-05 15:17 UTC] dmitry@php.net
[2006-12-05 17:47 UTC] jfitz at spacelink dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 14:00:01 2025 UTC |
Description: ------------ I am attempting to massage XML before transmission in the __doRequest method of SoapClient. I have made modifications here but PHP does not seem to be using my modified version. XML that is sent is not the XML I have modified but rather the XML as it existed prior to my modification. This is the PHP config.nice. #! /bin/sh # # Created by configure './configure' \ '--with-apache=../apache_1.3.37' \ '--enable-track-vars' \ '--with-dom' \ '--with-zlib' \ '--with-gettext' \ '--with-xmlrpc' \ '--with-soap' \ '--enable-soap' \ '--with-openssl' \ "$@" Reproduce code: --------------- Code looks, in brief, like this: ss mySoap extends SoapClient { function __doRequest($request, $location, $saction, $version) { <..modify $request here..> return parent::__doRequest($request, $location, $saction, $version); } Expected result: ---------------- Expect the transmitted XML to incorporate the edits I made in the __doRequest member.