<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: PHP SoapClient port bug workaround</title>
	<atom:link href="http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/</link>
	<description>Web Developer, Geek</description>
	<lastBuildDate>Tue, 31 Jan 2012 13:24:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Eric</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-9494</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Tue, 31 Jan 2012 13:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-9494</guid>
		<description>This post inspired a solution to my SoapClient problem.  Thanks!</description>
		<content:encoded><![CDATA[<p>This post inspired a solution to my SoapClient problem.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Lindal</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-9349</link>
		<dc:creator>John Lindal</dc:creator>
		<pubDate>Fri, 20 Jan 2012 22:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-9349</guid>
		<description>If $this-&gt;port is not set, you don&#039;t need to even parse the location in __doRequest().</description>
		<content:encoded><![CDATA[<p>If $this-&gt;port is not set, you don&#8217;t need to even parse the location in __doRequest().</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giulio</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-9280</link>
		<dc:creator>giulio</dc:creator>
		<pubDate>Mon, 16 Jan 2012 10:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-9280</guid>
		<description>thank you, saved the morning!</description>
		<content:encoded><![CDATA[<p>thank you, saved the morning!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DissidentRage</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-9179</link>
		<dc:creator>DissidentRage</dc:creator>
		<pubDate>Tue, 10 Jan 2012 19:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-9179</guid>
		<description>SoapClient::__doRequest now has an additional parameter, $one_way, so you get a Strict Standards warning with this code.

To fix it, append this to the parameters of the override function:

$one_way = 0

Then pass it to the superclass function after parsing the URL.</description>
		<content:encoded><![CDATA[<p>SoapClient::__doRequest now has an additional parameter, $one_way, so you get a Strict Standards warning with this code.</p>
<p>To fix it, append this to the parameters of the override function:</p>
<p>$one_way = 0</p>
<p>Then pass it to the superclass function after parsing the URL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yusman</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-7345</link>
		<dc:creator>yusman</dc:creator>
		<pubDate>Wed, 24 Aug 2011 09:59:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-7345</guid>
		<description>hi Victor Stanciu, thank u for this tutorial this verry usefull fro newbee like me, but i use codeigniter, can u give a sample how to implement this code on codeiginiter framework ..?</description>
		<content:encoded><![CDATA[<p>hi Victor Stanciu, thank u for this tutorial this verry usefull fro newbee like me, but i use codeigniter, can u give a sample how to implement this code on codeiginiter framework ..?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stéphaen</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-6946</link>
		<dc:creator>Stéphaen</dc:creator>
		<pubDate>Thu, 23 Jun 2011 15:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-6946</guid>
		<description>Great ! it solved my problem and saved my day !!

One point : to make it works I had to change the _doRequest declaration by : 

(...)
function __doRequest($request, $location, $action, $version, $one_way = 0)
(...)
php 5.3.5

Thank&#039;s</description>
		<content:encoded><![CDATA[<p>Great ! it solved my problem and saved my day !!</p>
<p>One point : to make it works I had to change the _doRequest declaration by : </p>
<p>(&#8230;)<br />
function __doRequest($request, $location, $action, $version, $one_way = 0)<br />
(&#8230;)<br />
php 5.3.5</p>
<p>Thank&#8217;s</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Little Fang</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-6934</link>
		<dc:creator>Little Fang</dc:creator>
		<pubDate>Tue, 21 Jun 2011 10:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-6934</guid>
		<description>Thank you! It resolved my port problem, too!</description>
		<content:encoded><![CDATA[<p>Thank you! It resolved my port problem, too!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy Incognito</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-6909</link>
		<dc:creator>Guy Incognito</dc:creator>
		<pubDate>Thu, 16 Jun 2011 12:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-6909</guid>
		<description>I wouldn&#039;t call that a PHP bug, since the service URL is defined within the WSDL file, where the port is missing already.</description>
		<content:encoded><![CDATA[<p>I wouldn&#8217;t call that a PHP bug, since the service URL is defined within the WSDL file, where the port is missing already.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-6227</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Sat, 22 Jan 2011 15:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-6227</guid>
		<description>Thank you! It resolved my port problem!</description>
		<content:encoded><![CDATA[<p>Thank you! It resolved my port problem!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ribacki</title>
		<link>http://www.victorstanciu.ro/php-soapclient-port-bug-workaround/comment-page-1/#comment-5774</link>
		<dc:creator>Ribacki</dc:creator>
		<pubDate>Thu, 02 Sep 2010 19:31:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorstanciu.ro/?p=456#comment-5774</guid>
		<description>Thanks! It worked flawlessly for my case!</description>
		<content:encoded><![CDATA[<p>Thanks! It worked flawlessly for my case!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

