<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-16197</id>
	<title>Nabble - Zend Web Services</title>
	<updated>2009-11-14T12:02:45Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Zend-Web-Services-f16197.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend-Web-Services-f16197.html" />
	<subtitle type="html">Zend &lt;a href=&quot;http://framework.zend.com/wiki/x/zhM&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Web Services&lt;/a&gt;</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26353390</id>
	<title>memory leak in Zend_Soap_Client</title>
	<published>2009-11-14T12:02:45Z</published>
	<updated>2009-11-14T12:02:45Z</updated>
	<author>
		<name>sgrobins</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;It looks like there is a memory leak in Zend_Soap_Client. &amp;nbsp;See example below...
&lt;br&gt;&lt;br&gt;for( $i = 0; $i &amp;lt; 100; $i++ ) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; $client = new Zend_Soap_Client( $soapUrl );
&lt;br&gt;&amp;nbsp; &amp;nbsp; $object = $client-&amp;gt;$function( $params );
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;This will cause the memory footprint to increase after each loop.
&lt;br&gt;&lt;br&gt;vs.
&lt;br&gt;&lt;br&gt;for( $i = 0; $i &amp;lt; 100; $i++ ) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; $client = new SoapClient( $soapUrl );
&lt;br&gt;&amp;nbsp; &amp;nbsp; $object = $client-&amp;gt;$function( $params );
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;This does not increase memory.
&lt;br&gt;&lt;br&gt;From my tests it appears that the $client-&amp;gt;$function( $params ) is what causes the memory leak.
&lt;br&gt;&lt;br&gt;Anyone else experience this or have a fix for it?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Shawn</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/memory-leak-in-Zend_Soap_Client-tp26353390p26353390.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26274618</id>
	<title>Re: Allowing .NET web service consumption, WSDL,  encoding styles, etc.</title>
	<published>2009-11-09T14:08:49Z</published>
	<updated>2009-11-09T14:08:49Z</updated>
	<author>
		<name>Richard Quadling</name>
	</author>
	<content type="html">2009/11/9 FredW &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26274618&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;woolardfa@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; While you can construct the WSDL from scratch, I'd suggest using a tool like
&lt;br&gt;&amp;gt; one found in Zend Studio for Eclipse. I've used it to (easily) generate WSDL
&lt;br&gt;&amp;gt; for a SOAP service, and then used it to add a web reference in Visual
&lt;br&gt;&amp;gt; Studio.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; RQuadling wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm creating web services using Zend_Soap_Server. I'm at the point where I
&lt;br&gt;&amp;gt;&amp;gt; need to test the services. With that, I'm constructing the WSDL file.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've read about some of the differences between Microsoft's .NET
&lt;br&gt;&amp;gt;&amp;gt; requirements and others (I'm a newbie - this may be FUD - looking for
&lt;br&gt;&amp;gt;&amp;gt; advice).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Assuming there are some differences, how do I create a WSDL file which
&lt;br&gt;&amp;gt;&amp;gt; will allow everyone to talk to my services (by everyone, I mean all the
&lt;br&gt;&amp;gt;&amp;gt; ways people can talk to me).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I wish I knew more about this. Is there a sensible start point for me to
&lt;br&gt;&amp;gt;&amp;gt; read about this issue?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In the main, I've found articles which are solely PHP orientated _OR_ .NET
&lt;br&gt;&amp;gt;&amp;gt; orientated.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Also, WSDL v2? Is that a concern?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Any help would be appreciated.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Richard Quadling.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26271643.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26271643.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Zend Web Services mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;I don't have Zend Studio. I do have Zend Framework and intended to use
&lt;br&gt;the WSDL auto discovery mechanism.
&lt;br&gt;&lt;br&gt;With all the ports/encodings/etc. options ... I'm hoping the framework
&lt;br&gt;knows its stuff and can build a working WSDL for all the consumers.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;-----
&lt;br&gt;Richard Quadling
&lt;br&gt;&amp;quot;Standing on the shoulders of some very clever giants!&amp;quot;
&lt;br&gt;EE : &lt;a href=&quot;http://www.experts-exchange.com/M_248814.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.experts-exchange.com/M_248814.html&lt;/a&gt;&lt;br&gt;Zend Certified Engineer : &lt;a href=&quot;http://zend.com/zce.php?c=ZEND002498&amp;r=213474731&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://zend.com/zce.php?c=ZEND002498&amp;r=213474731&lt;/a&gt;&lt;br&gt;ZOPA : &lt;a href=&quot;http://uk.zopa.com/member/RQuadling&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://uk.zopa.com/member/RQuadling&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26274618.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26273976</id>
	<title>Zend_Service_Salesforce ready for review</title>
	<published>2009-11-09T13:25:21Z</published>
	<updated>2009-11-09T13:25:21Z</updated>
	<author>
		<name>hunterjensen</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.5730.13&quot; name=GENERATOR&gt;&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;Our 
Zend_Service_Salesforce proposal is ready for review. I would appreciate any and 
all feedback. The proposal can be found here - &lt;A title=http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Salesforce+-+Barefoot+Solutions href=&quot;http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Salesforce+-+Barefoot+Solutions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Salesforce+-+Barefoot+Solutions&lt;/A&gt;.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;This is a client for 
the Force.com Web Service API provided by Salesforce.com. Salesforce.com 
is&amp;nbsp; Customer Relationship Management (CRM) SAAS&lt;SPAN class=252372421-09112009&gt; &lt;/SPAN&gt;based in the United States. We have written the 
component and are working on the unit tests right now.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;Thanks,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;Hunter&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN class=299170921-09112009&gt;
&lt;DIV align=left&gt;&lt;FONT face=Arial size=2&gt;-----------------------&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV align=left&gt;&lt;FONT face=Arial size=2&gt;Hunter Jensen&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV align=left&gt;&lt;FONT face=Arial size=2&gt;Barefoot Solutions&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV align=left&gt;&lt;FONT face=Arial size=2&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26273976&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hunter@...&lt;/a&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV align=left&gt;&lt;FONT face=Arial size=2&gt;858.442.0734&lt;/FONT&gt;&lt;/DIV&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Service_Salesforce-ready-for-review-tp26273976p26273976.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26271643</id>
	<title>Re: Allowing .NET web service consumption, WSDL, encoding styles, etc.</title>
	<published>2009-11-09T10:50:18Z</published>
	<updated>2009-11-09T10:50:18Z</updated>
	<author>
		<name>FredW</name>
	</author>
	<content type="html">While you can construct the WSDL from scratch, I'd suggest using a tool like one found in Zend Studio for Eclipse. I've used it to (easily) generate WSDL for a SOAP service, and then used it to add a web reference in Visual Studio.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;RQuadling wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi.
&lt;br&gt;&lt;br&gt;I'm creating web services using Zend_Soap_Server. I'm at the point where I need to test the services. With that, I'm constructing the WSDL file.
&lt;br&gt;&lt;br&gt;I've read about some of the differences between Microsoft's .NET requirements and others (I'm a newbie - this may be FUD - looking for advice).
&lt;br&gt;&lt;br&gt;Assuming there are some differences, how do I create a WSDL file which will allow everyone to talk to my services (by everyone, I mean all the ways people can talk to me).
&lt;br&gt;&lt;br&gt;I wish I knew more about this. Is there a sensible start point for me to read about this issue?
&lt;br&gt;&lt;br&gt;In the main, I've found articles which are solely PHP orientated _OR_ .NET orientated.
&lt;br&gt;&lt;br&gt;Also, WSDL v2? Is that a concern?
&lt;br&gt;&lt;br&gt;Any help would be appreciated.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Richard Quadling.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26271643.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26270330</id>
	<title>Re: Allowing .NET web service consumption, WSDL,  encoding styles, etc.</title>
	<published>2009-11-09T09:28:46Z</published>
	<updated>2009-11-09T09:28:46Z</updated>
	<author>
		<name>Richard Quadling</name>
	</author>
	<content type="html">2009/11/9 James Dempster &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26270330&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;letssurf@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I would LOVE to know all the same information. I've had no end of troubles
&lt;br&gt;&amp;gt; getting PHP WSDL stuff working with .NET
&lt;br&gt;&amp;gt; In the end I dropped it and used REST based. But that's not really the best
&lt;br&gt;&amp;gt; approach when clients what SOAP and WSDL's
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; /James
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Nov 9, 2009 at 12:12 PM, RQuadling &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26270330&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;RQuadling@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm creating web services using Zend_Soap_Server. I'm at the point where I
&lt;br&gt;&amp;gt;&amp;gt; need to test the services. With that, I'm constructing the WSDL file.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've read about some of the differences between Microsoft's .NET
&lt;br&gt;&amp;gt;&amp;gt; requirements and others (I'm a newbie - this may be FUD - looking for
&lt;br&gt;&amp;gt;&amp;gt; advice).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Assuming there are some differences, how do I create a WSDL file which
&lt;br&gt;&amp;gt;&amp;gt; will
&lt;br&gt;&amp;gt;&amp;gt; allow everyone to talk to my services (by everyone, I mean all the ways
&lt;br&gt;&amp;gt;&amp;gt; people can talk to me).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I wish I knew more about this. Is there a sensible start point for me to
&lt;br&gt;&amp;gt;&amp;gt; read about this issue?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In the main, I've found articles which are solely PHP orientated _OR_ .NET
&lt;br&gt;&amp;gt;&amp;gt; orientated.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Also, WSDL v2? Is that a concern?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Any help would be appreciated.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Richard Quadling.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26265426.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26265426.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Sent from the Zend Web Services mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;The issue is that I'm not a .NET person (assuming that's where the
&lt;br&gt;issue lies). I don't know SOAP very well.
&lt;br&gt;&lt;br&gt;So, I am really hoping the gurus on here can spend a few minutes
&lt;br&gt;trying to explain what the issues are and letting us know if they are
&lt;br&gt;surmountable.
&lt;br&gt;&lt;br&gt;I'm assuming the BIG players in this market don't have the problems,
&lt;br&gt;so what is the solutions?
&lt;br&gt;&lt;br&gt;Pointers/idea/etc.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Richard.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;-----
&lt;br&gt;Richard Quadling
&lt;br&gt;&amp;quot;Standing on the shoulders of some very clever giants!&amp;quot;
&lt;br&gt;EE : &lt;a href=&quot;http://www.experts-exchange.com/M_248814.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.experts-exchange.com/M_248814.html&lt;/a&gt;&lt;br&gt;Zend Certified Engineer : &lt;a href=&quot;http://zend.com/zce.php?c=ZEND002498&amp;r=213474731&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://zend.com/zce.php?c=ZEND002498&amp;r=213474731&lt;/a&gt;&lt;br&gt;ZOPA : &lt;a href=&quot;http://uk.zopa.com/member/RQuadling&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://uk.zopa.com/member/RQuadling&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26270330.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26270041</id>
	<title>Re: Allowing .NET web service consumption, WSDL,  encoding styles, etc.</title>
	<published>2009-11-09T09:12:10Z</published>
	<updated>2009-11-09T09:12:10Z</updated>
	<author>
		<name>JDempster</name>
	</author>
	<content type="html">I would LOVE to know all the same information. I&amp;#39;ve had no end of troubles getting PHP WSDL stuff working with .NET&lt;br&gt;In the end I dropped it and used REST based. But that&amp;#39;s not really the best approach when clients what SOAP and WSDL&amp;#39;s&lt;br&gt;
&lt;br&gt;Thanks,&lt;br&gt;/James&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 9, 2009 at 12:12 PM, RQuadling &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26270041&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;RQuadling@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;&quot;&gt;
&lt;br&gt;
Hi.&lt;br&gt;
&lt;br&gt;
I&amp;#39;m creating web services using Zend_Soap_Server. I&amp;#39;m at the point where I&lt;br&gt;
need to test the services. With that, I&amp;#39;m constructing the WSDL file.&lt;br&gt;
&lt;br&gt;
I&amp;#39;ve read about some of the differences between Microsoft&amp;#39;s .NET&lt;br&gt;
requirements and others (I&amp;#39;m a newbie - this may be FUD - looking for&lt;br&gt;
advice).&lt;br&gt;
&lt;br&gt;
Assuming there are some differences, how do I create a WSDL file which will&lt;br&gt;
allow everyone to talk to my services (by everyone, I mean all the ways&lt;br&gt;
people can talk to me).&lt;br&gt;
&lt;br&gt;
I wish I knew more about this. Is there a sensible start point for me to&lt;br&gt;
read about this issue?&lt;br&gt;
&lt;br&gt;
In the main, I&amp;#39;ve found articles which are solely PHP orientated _OR_ .NET&lt;br&gt;
orientated.&lt;br&gt;
&lt;br&gt;
Also, WSDL v2? Is that a concern?&lt;br&gt;
&lt;br&gt;
Any help would be appreciated.&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
&lt;br&gt;
Richard Quadling.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
--&lt;br&gt;
View this message in context: &lt;a href=&quot;http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26265426.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26265426.html&lt;/a&gt;&lt;br&gt;

Sent from the Zend Web Services mailing list archive at Nabble.com.&lt;br&gt;
&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26270041.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26265426</id>
	<title>Allowing .NET web service consumption, WSDL, encoding styles, etc.</title>
	<published>2009-11-09T04:12:45Z</published>
	<updated>2009-11-09T04:12:45Z</updated>
	<author>
		<name>RQuadling</name>
	</author>
	<content type="html">Hi.
&lt;br&gt;&lt;br&gt;I'm creating web services using Zend_Soap_Server. I'm at the point where I need to test the services. With that, I'm constructing the WSDL file.
&lt;br&gt;&lt;br&gt;I've read about some of the differences between Microsoft's .NET requirements and others (I'm a newbie - this may be FUD - looking for advice).
&lt;br&gt;&lt;br&gt;Assuming there are some differences, how do I create a WSDL file which will allow everyone to talk to my services (by everyone, I mean all the ways people can talk to me).
&lt;br&gt;&lt;br&gt;I wish I knew more about this. Is there a sensible start point for me to read about this issue?
&lt;br&gt;&lt;br&gt;In the main, I've found articles which are solely PHP orientated _OR_ .NET orientated.
&lt;br&gt;&lt;br&gt;Also, WSDL v2? Is that a concern?
&lt;br&gt;&lt;br&gt;Any help would be appreciated.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Richard Quadling.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Allowing-.NET-web-service-consumption%2C-WSDL%2C-encoding-styles%2C-etc.-tp26265426p26265426.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26228595</id>
	<title>New to ZF and SOAP services.</title>
	<published>2009-11-06T00:48:02Z</published>
	<updated>2009-11-06T00:48:02Z</updated>
	<author>
		<name>Richard Quadling</name>
	</author>
	<content type="html">Hi.
&lt;br&gt;&lt;br&gt;I've been asked to build a SOAP service to allow our clients access
&lt;br&gt;our data. I've also been asked to build a SOAP client to extract data
&lt;br&gt;from our clients into our system.
&lt;br&gt;&lt;br&gt;I'm looking to use Zend Framework's Zend_Soap_Server and
&lt;br&gt;Zend_Soap_Client for this.
&lt;br&gt;&lt;br&gt;Currently the services need to build are ...
&lt;br&gt;&lt;br&gt;Service : Authentication
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Login() -&amp;gt; PreAuthToken
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Authenticate(Username, md5(Password + ' : ' + PreAuthToken)) -&amp;gt; AuthToken
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Logout(PreAuthToken, AuthToken) -&amp;gt; Nothing
&lt;br&gt;&lt;br&gt;Service : SupplyData
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Brands()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Customers()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Products()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RemovalReasons()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Vehicles()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;WheelPositions()
&lt;br&gt;&lt;br&gt;&lt;br&gt;One of the features that I need to incorporate is the ability to have
&lt;br&gt;versioning of the services.
&lt;br&gt;&lt;br&gt;So, say we build V1 today and agree on the interface, but tomorrow a
&lt;br&gt;customer has a grand idea and V2 is created.
&lt;br&gt;&lt;br&gt;We need to be able to support V1 and V2 side-by-side.
&lt;br&gt;&lt;br&gt;I've been asked to implement major and minor versions along with LIVE
&lt;br&gt;and TEST switches.
&lt;br&gt;&lt;br&gt;Add to that some service versions may need to be disabled (killswitch'd).
&lt;br&gt;&lt;br&gt;It has been agreed that all requests _may_ contain the xml ...
&lt;br&gt;&lt;br&gt;&amp;lt;version&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;major&amp;gt;major version integer&amp;lt;/major&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;minor&amp;gt;minor version integer&amp;lt;/minor&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;release&amp;gt;LIVE or TEST&amp;lt;/release&amp;gt;
&lt;br&gt;&amp;lt;/version&amp;gt;
&lt;br&gt;&lt;br&gt;So, with that I have a few questions.
&lt;br&gt;&lt;br&gt;1 : How do I read the version before I create the Zend_Soap_Server and
&lt;br&gt;load the required class?
&lt;br&gt;2 : How do I know which service is being requested?
&lt;br&gt;3 : Can I create a dummy soap service which has just the version
&lt;br&gt;content and from there determine which class to load?
&lt;br&gt;&lt;br&gt;I think I want a Zend_Soap_Server_Proxy. Something that all soap
&lt;br&gt;requests will go through. The result of which will either be the
&lt;br&gt;correct soap service called or an exception (no version for service,
&lt;br&gt;version killed/superceeded, etc.).
&lt;br&gt;&lt;br&gt;&lt;br&gt;Is this even possible?
&lt;br&gt;&lt;br&gt;Any assistance would be really nice.
&lt;br&gt;&lt;br&gt;At this stage, I think I can have the spec changed, so if you have any
&lt;br&gt;better way of dealing with this, then I'd appreciate knowing that too!
&lt;br&gt;&lt;br&gt;Thank you.
&lt;br&gt;&lt;br&gt;Richard Quadling.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;-----
&lt;br&gt;Richard Quadling
&lt;br&gt;&amp;quot;Standing on the shoulders of some very clever giants!&amp;quot;
&lt;br&gt;EE : &lt;a href=&quot;http://www.experts-exchange.com/M_248814.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.experts-exchange.com/M_248814.html&lt;/a&gt;&lt;br&gt;Zend Certified Engineer : &lt;a href=&quot;http://zend.com/zce.php?c=ZEND002498&amp;r=213474731&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://zend.com/zce.php?c=ZEND002498&amp;r=213474731&lt;/a&gt;&lt;br&gt;ZOPA : &lt;a href=&quot;http://uk.zopa.com/member/RQuadling&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://uk.zopa.com/member/RQuadling&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-to-ZF-and-SOAP-services.-tp26228595p26228595.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26215743</id>
	<title>Zend_Soap_AutoDiscover how to get maxOccurs=&quot;1&quot;</title>
	<published>2009-11-05T07:09:44Z</published>
	<updated>2009-11-05T07:09:44Z</updated>
	<author>
		<name>RutgerB</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm using Zend_Soap_AutoDiscover to generate a WSDL based on my php class. But how do I get minOccurs=&amp;quot;1&amp;quot; maxOccurs=&amp;quot;1&amp;quot; in my XML?
&lt;br&gt;&lt;br&gt;Example: 
&lt;br&gt;&amp;nbsp; &amp;lt;s:element minOccurs=&amp;quot;1&amp;quot; maxOccurs=&amp;quot;1&amp;quot; name=&amp;quot;Huisnummer&amp;quot; type=&amp;quot;s:int&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;lt;s:element minOccurs=&amp;quot;0&amp;quot; maxOccurs=&amp;quot;1&amp;quot; name=&amp;quot;Brinnummer&amp;quot; type=&amp;quot;s:string&amp;quot; /&amp;gt; 
&lt;br&gt;&lt;br&gt;also, how do I add restrictions? as in this example:
&lt;br&gt;&amp;lt;xs:element id=&amp;quot;id&amp;quot; maxOccurs=&amp;quot;1&amp;quot; minOccurs=&amp;quot;1&amp;quot; name=&amp;quot;id&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xs:simpleType&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xs:restriction base=&amp;quot;xs:string&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xs:maxLength value=&amp;quot;8&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xs:minLength value=&amp;quot;8&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xs:pattern value=&amp;quot;[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xs:restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xs:simpleType&amp;gt;
&lt;br&gt;&amp;lt;/xs:element&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;I assume I have to add this in the phpDoc parts of my class, but I cant figure out how! Any help would be greatly appreciated</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Soap_AutoDiscover-how-to-get-maxOccurs%3D%221%22-tp26215743p26215743.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25789548</id>
	<title>Re: Struggling to get zend form ini</title>
	<published>2009-10-07T09:06:05Z</published>
	<updated>2009-10-07T09:06:05Z</updated>
	<author>
		<name>Ralikwen</name>
	</author>
	<content type="html">I just would like to second this question.
&lt;br&gt;How can one add a decorator to a single element in a config file?
&lt;br&gt;&lt;br&gt;Thanks for the help.
&lt;br&gt;SWK
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;ligio wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi!
&lt;br&gt;Is it possible to add a decorator (or set a property) from a INI config file only for one element?
&lt;br&gt;&lt;br&gt;I want a form like this:
&lt;br&gt;&lt;br&gt;&amp;lt;form action=&amp;quot;&amp;quot; method=&amp;quot;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;input name=&amp;quot;user&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;div class=&amp;quot;submit&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;submit&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;lt;/form&amp;gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Struggling-to-get-zend-form-ini-tp18906577p25789548.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25632358</id>
	<title>Problem consuming Java JAX-WS web service from Zend_Soap_Client</title>
	<published>2009-09-27T03:02:18Z</published>
	<updated>2009-09-27T03:02:18Z</updated>
	<author>
		<name>barretBSE</name>
	</author>
	<content type="html">&lt;p&gt;Hi! I have a problem consuming a Java JAX-WS web service from Zend_Soap_Client.&lt;/p&gt;

&lt;p&gt;I wrote a simple Java JAX-WS web service using Netbeans' wizard. It contains two operations: method_1 and method_2. method_1 returns the string &quot;hello world&quot;, method_2 returns x+1 where x is an input parameter.&lt;/p&gt;

&lt;p&gt;I got an exception error &lt;code&gt;Unsupported Media Type&lt;/code&gt; when I tried to consume the service with the following code:&lt;/p&gt;

&lt;code&gt;
$client = new Zend_Soap_Client('http://localhost:8084/MyApplication/MyService?wsdl');&lt;br&gt;
$functions = $client-&gt;getFunctions();    // works!!!&lt;br&gt;
$result = $client-&gt;method_2(array('x' =&gt; 10));    //fails
&lt;/code&gt;

&lt;p&gt;If I use SoapClient instead of Zend_Soap_Client I have no problems:&lt;/p&gt;

&lt;code&gt;
$client = new SoapClient('http://localhost:8084/MyApplication/MyService?wsdl');&lt;br&gt;
$result = $client-&gt;method_2(array('x' =&gt; 10));    //$result is an object (stdClass)&lt;br&gt;
echo $result-&gt;return;    // prints 11
&lt;/code&gt;

&lt;p&gt;The question is: why I got that error using Zend_Soap_Client and how could I make it works? Any help will be really appreciated. Thanks ;)&lt;/p&gt;

&lt;p&gt;Sincerely,&lt;br&gt;Federico&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-consuming-Java-JAX-WS-web-service-from-Zend_Soap_Client-tp25632358p25632358.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25531094</id>
	<title>SoapFault-exception using Zend Soap Client &amp; Webservice</title>
	<published>2009-09-23T04:33:40Z</published>
	<updated>2009-09-23T04:33:40Z</updated>
	<author>
		<name>Marcus Stöhr</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;since the weekend I try to get Zend Soap Client running with the Webservice provided by affili.net.
&lt;br&gt;&lt;br&gt;Everytime I try to run the method 'SearchProducts', I get the following exception:
&lt;br&gt;&lt;br&gt;[16-Sep-2009 12:22:47] PHP Fatal error: &amp;nbsp;Uncaught SoapFault exception: [HTTP] Cannot process the message because the content type 'application/soap+xml; charset=utf-8; action=&amp;quot;&lt;a href=&quot;http://affilinet.framework.webservices/Svc/ProductServiceContract/SearchProducts&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://affilinet.framework.webservices/Svc/ProductServiceContract/SearchProducts&lt;/a&gt;&amp;quot;' was not the expected type 'text/xml; charset=utf-8'. in /usr/local/zend/share/ZendFramework/library/Zend/Soap/Client.php:937
&lt;br&gt;Stack trace:
&lt;br&gt;#0 [internal function]: SoapClient-&amp;gt;__doRequest('&amp;lt;?xml version=&amp;quot;...', '&lt;a href=&quot;https://api.aff...'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://api.aff...'&lt;/a&gt;, '&lt;a href=&quot;http://affiline...'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://affiline...'&lt;/a&gt;, 2)
&lt;br&gt;#1 /usr/local/zend/share/ZendFramework/library/Zend/Soap/Client.php(937): call_user_func(Array, '&amp;lt;?xml version=&amp;quot;...', '&lt;a href=&quot;https://api.aff...'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://api.aff...'&lt;/a&gt;, '&lt;a href=&quot;http://affiline...'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://affiline...'&lt;/a&gt;, 2)
&lt;br&gt;#2 [internal function]: Zend_Soap_Client-&amp;gt;_doRequest(Object(Zend_Soap_Client_Common), '&amp;lt;?xml version=&amp;quot;...', '&lt;a href=&quot;https://api.aff...'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://api.aff...'&lt;/a&gt;, '&lt;a href=&quot;http://affiline...'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://affiline...'&lt;/a&gt;, 2, 0)
&lt;br&gt;#3 /usr/local/zend/share/ZendFramework/library/Zend/Soap/Client/Common.php(70): call_user_func(Array, Object(Zend_Soap_Client_Common), '&amp;lt;?xml version=&amp;quot;...', '&lt;a href=&quot;https://api.aff...'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://api.aff...'&lt;/a&gt;, '&lt;a href=&quot;http://affiline...'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://affiline...'&lt;/a&gt;, 2, 0)
&lt;br&gt;#4 [internal function in /usr/local/zend/share/ZendFramework/library/Zend/Soap/Client.php on line 937
&lt;br&gt;&lt;br&gt;I there a way to prevent this exception? My sample code looks like this:
&lt;br&gt;&lt;br&gt;&amp;lt;?php
&lt;br&gt;$options = array(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'login' =&amp;gt; 'MyUser',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'password' =&amp;gt; 'MyPassword');
&lt;br&gt;$parameters = array(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ShopIds' =&amp;gt; array('3752'),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Query' =&amp;gt; 'foo bar',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'WithImageOnly' =&amp;gt; true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Details' =&amp;gt; 'true',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ImageSize' =&amp;gt; 'AllImages',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'CurrentPage' =&amp;gt; '1',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'PageSize' =&amp;gt; '10',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MinimumPrice' =&amp;gt; '0',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MaximumPrice' =&amp;gt; '0',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'SortBy' =&amp;gt; 'Rank',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'SortOrder' =&amp;gt; 'Descending');
&lt;br&gt;&lt;br&gt;$client = new Zend_Soap_Client('&lt;a href=&quot;https://api.affili.net/V2.0/ProductServices.svc?wsdl'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://api.affili.net/V2.0/ProductServices.svc?wsdl'&lt;/a&gt;, $options);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;Zend_Debug::dump($client-&amp;gt;SearchProducts($parameters));
&lt;br&gt;&lt;br&gt;?&amp;gt;
&lt;br&gt;&lt;br&gt;I already filled a bug report for this issue: &lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-7865&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-7865&lt;/a&gt;&lt;br&gt;&lt;br&gt;- Marcus</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SoapFault-exception-using-Zend-Soap-Client---Webservice-tp25531094p25531094.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25348471</id>
	<title>Zend_Soap_Client in HTTPS</title>
	<published>2009-09-08T08:29:36Z</published>
	<updated>2009-09-08T08:29:36Z</updated>
	<author>
		<name>nauw</name>
	</author>
	<content type="html">Hi everyone,
&lt;br&gt;&lt;br&gt;i'm trying to implement a Soap Client, the Web service is available in HTTPS (WSDL file goes trough this protocol).
&lt;br&gt;&lt;br&gt;Do i need to configure some parameter in this class, or should it work as a normal HTTP Web service call?
&lt;br&gt;&lt;br&gt;I saw some getHttpsCertificate function, but documentation is rather poor about it.
&lt;br&gt;I guess i should probably implement some certificate between my &amp;quot;client&amp;quot; server calling the Soap service.
&lt;br&gt;&lt;br&gt;Any experience and sample is welcome.
&lt;br&gt;&lt;br&gt;Thanks in advance for your help.
&lt;br&gt;&lt;br&gt;Arnaud</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Soap_Client-in-HTTPS-tp25348471p25348471.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25244303</id>
	<title>Zend Service Ebay ready for review</title>
	<published>2009-09-01T13:03:08Z</published>
	<updated>2009-09-01T13:03:08Z</updated>
	<author>
		<name>Don Bosco van Hoi</name>
	</author>
	<content type="html">We are currently working on a implementation of the eBay Finding API. Please have a look at this when you are still working with the eBay Finding API. 
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://framework.zend.com/wiki/pages/viewpage.action?pageId=13107308&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/pages/viewpage.action?pageId=13107308&lt;/a&gt;&lt;br&gt;&lt;br&gt;We appreciate every comment on that.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend-Service-Ebay-ready-for-review-tp25244303p25244303.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25244302</id>
	<title>Best Practice: Multiple HTTP Requests</title>
	<published>2009-09-01T13:01:04Z</published>
	<updated>2009-09-01T13:01:04Z</updated>
	<author>
		<name>Don Bosco van Hoi</name>
	</author>
	<content type="html">Hello all, 
&lt;br&gt;&lt;br&gt;i have a question related to handling HTTP Requests. As my applications are using lots of webservice APIs i really wonder how to easily solve the HTTP Bottleneck problem.
&lt;br&gt;&lt;br&gt;Idea 1. Move HTTP Request to the Client Side.
&lt;br&gt;Idea 2. Make a Controller for each Webservice and handle each controller as a Rest Service.
&lt;br&gt;So you have one controller which then would utilize ajax to request each controller.
&lt;br&gt;&lt;br&gt;The problem is that i am fetching lots of data atm and merge them into one huge array. So instead to let the user wait, i will use ajax to give the user a faster response.. 
&lt;br&gt;&lt;br&gt;How do you solve this?
&lt;br&gt;&lt;br&gt;&lt;br&gt;BTW. Renan and me are currently working on a proposal for ebay finding api :)
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://framework.zend.com/wiki/pages/viewpage.action?pageId=13107308&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/pages/viewpage.action?pageId=13107308&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-Practice%3A-Multiple-HTTP-Requests-tp25244302p25244302.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25157666</id>
	<title>Zend_Service Contributor Guidelines?</title>
	<published>2009-08-26T13:34:54Z</published>
	<updated>2009-08-26T13:34:54Z</updated>
	<author>
		<name>duoduo</name>
	</author>
	<content type="html">I’ve been thinking that maybe a Zend_Service contributor guidelines wiki entry should be created. I think a contributors guide specific to this section would be beneficial. As the number of components grow in the Zend_Service_* section, it’d be nice if the components followed a ZF standard and had more consistency. While every web service implementation is indeed different, there are many aspects when building a ZF client that could become guidelines or “best practices”. &amp;nbsp;I think this may encourage future proposals and make it easier for others to write for Zend_Service_*. Please note that I don’t want to force a certain method, but merely promote a “good way” on doing things especially if it is backed by Zend and the community.
&lt;br&gt;&lt;br&gt;While I was working on the Zend_Service_Tumblr component, I’ve ran into some implementation specifics I wasn’t 100% sure of or if Zend had a suggested approach for. I’ve used what I believe would be best for ZF when planning, but maybe it could be documented to help others.
&lt;br&gt;&lt;br&gt;Some examples:
&lt;br&gt;&lt;br&gt;Validation
&lt;br&gt;Should the ZF client validate or let the web service do the validation? Maybe a mix?
&lt;br&gt;&lt;br&gt;Validating everything locally could be very time consuming and sometimes not possible if the validation rules aren’t stated in the web service documentation. At the same time validating everything remotely may not be acceptable under certain circumstances. Validating a number, length of a string..etc is easy, but validating an file upload may not be or even possible. I wanted to be somewhat consistent so which way should I go?
&lt;br&gt;&lt;br&gt;Testability
&lt;br&gt;While there are tests for every Zend_Service component, there isn’t a normal guideline to on what approach to use or how testable it is. For example, if the component required a Zend_Http_Client instance, should the component be injected (optionally usually) in the constructor or using setters? If the Zend_Http_Client is instantiated inside the component, where should it happen?
&lt;br&gt;&lt;br&gt;Constructor
&lt;br&gt;(Zend_Service_Simpy)
&lt;br&gt;&lt;br&gt;public function __construct($username, $password)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /**
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;* @see Zend_Service_Rest
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;*/
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; require_once 'Zend/Rest/Client.php';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;http = new Zend_Http_Client;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;http-&amp;gt;setAuth($username, $password);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Lazy loading
&lt;br&gt;(Zend_Service_Amazon)
&lt;br&gt;&lt;br&gt;public function getRestClient()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if($this-&amp;gt;_rest === null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;_rest = new Zend_Rest_Client();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $this-&amp;gt;_rest;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;In addition some of the ZF client’s don’t allow a setRestClient() or a setHttpClient method (this may be for good reason though) so you can’t override the normal instances without extending the class and having your own implementation. This is more nit picky, but it’d be nice if you were using many Zend_Service components to know offhand as it is consistent. This is also important when writing tests for your own application. You may want to inject a test Http adapter. Right now certain components require mock objects to do so while others have a simple injection method.
&lt;br&gt;&lt;br&gt;How much of the API should be implemented?
&lt;br&gt;Should there be some guidelines on how “full” an API needs to be implemented? For example Zend_Service_Flickr only supports “fetching” methods and no creating or updating methods. I know this was created in the early days, but should partial implementations be accepted in cases like Flickr where it seems obvious to support more at the current day?
&lt;br&gt;&lt;br&gt;Thanks for reading.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Service-Contributor-Guidelines--tp25157666p25157666.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24261698</id>
	<title>Zend_Service_Tumblr Proposal - Ready for Review</title>
	<published>2009-06-29T16:35:02Z</published>
	<updated>2009-06-29T16:35:02Z</updated>
	<author>
		<name>duoduo</name>
	</author>
	<content type="html">Proposal:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Tumblr+-+Duo+Zheng&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Tumblr+-+Duo+Zheng&lt;/a&gt;&lt;br&gt;&lt;br&gt;I would like to get general feedback and more specifically on the use cases to make sure they are appropriate.
&lt;br&gt;&lt;br&gt;Thanks</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Service_Tumblr-Proposal---Ready-for-Review-tp24261698p24261698.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24203267</id>
	<title>Re: Soap Server incompatiiblity with .NET Client</title>
	<published>2009-06-25T06:28:02Z</published>
	<updated>2009-06-25T06:28:02Z</updated>
	<author>
		<name>Bugzilla from fabien@crespel.net</name>
	</author>
	<content type="html">Ronny Srnka wrote:
&lt;br&gt;&amp;gt; I am now using the trunk version of the Soap component. It resolves my
&lt;br&gt;&amp;gt; previous issue
&lt;br&gt;&lt;br&gt;Good news!
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I ended up using Zend_Soap_Wsdl_Strategy_ArrayOfTypeComplex because
&lt;br&gt;&amp;gt; Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence did not allow me gave a
&lt;br&gt;&amp;gt; fatal error:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Fatal error: Uncaught exception 'Zend_Soap_Wsdl_Exception' with message
&lt;br&gt;&amp;gt; 'ArrayOfTypeSequence Strategy does not allow for complex types that are
&lt;br&gt;&amp;gt; not in @return type[] syntax. &amp;quot;MyFirstObject&amp;quot; type was specified.' In
&lt;br&gt;&amp;gt; ....
&lt;br&gt;&amp;gt; [...]
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It seems that this would be a render ZF-6349 not fixed? Or is this a
&lt;br&gt;&amp;gt; separate issue.
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;This is a separate issue for which you can find a patch in ZF-6742:
&lt;br&gt;&lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-6742&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-6742&lt;/a&gt;&lt;br&gt;&lt;br&gt;So I would recommend using ArrayOfTypeSequence with the 'v2' patch. I hope it
&lt;br&gt;will be applied to the official trunk before 1.9 ... it is not the best solution,
&lt;br&gt;but it is simple and solves that particular issue.
&lt;br&gt;&lt;br&gt;- Fabien.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Soap-Server-incompatiiblity-with-.NET-Client-tp24094787p24203267.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24167521</id>
	<title>RE: Re: Soap Server incompatiiblity with .NET Client</title>
	<published>2009-06-23T07:39:20Z</published>
	<updated>2009-06-23T07:39:20Z</updated>
	<author>
		<name>Ronny Srnka</name>
	</author>
	<content type="html">I am now using the trunk version of the Soap component. It resolves my
&lt;br&gt;previous issue but I have uncovered another problem.
&lt;br&gt;&lt;br&gt;I want to return an array of objects with a method, so in the doc
&lt;br&gt;comment I have the following prototype:
&lt;br&gt;&lt;br&gt;@return MySecondObject[]
&lt;br&gt;&lt;br&gt;&lt;br&gt;I ended up using Zend_Soap_Wsdl_Strategy_ArrayOfTypeComplex because
&lt;br&gt;Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence did not allow me gave a
&lt;br&gt;fatal error:
&lt;br&gt;&lt;br&gt;Fatal error: Uncaught exception 'Zend_Soap_Wsdl_Exception' with message
&lt;br&gt;'ArrayOfTypeSequence Strategy does not allow for complex types that are
&lt;br&gt;not in @return type[] syntax. &amp;quot;MyFirstObject&amp;quot; type was specified.' In
&lt;br&gt;....
&lt;br&gt;&lt;br&gt;&lt;br&gt;The ArrayOfTypeComplex strategy generates a WSDL definition that is not
&lt;br&gt;compatible with WSDL Basic 1.1 spec:
&lt;br&gt;&lt;a href=&quot;http://www.ws-i.org/Profiles/BasicProfile-1.1.html#soapenc_Array&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ws-i.org/Profiles/BasicProfile-1.1.html#soapenc_Array&lt;/a&gt;&lt;br&gt;&lt;br&gt;This is the generated WSDL snippet:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:complexType name=&amp;quot;ArrayOfMySecondObject&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:complexContent&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:restriction base=&amp;quot;soap-enc:Array&amp;quot;&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:attribute ref=&amp;quot;soap-enc:arrayType&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; wsdl:arrayType=&amp;quot;tns:MySecondObject []&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsd:restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsd:complexContent&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsd:complexType&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;I manually modified this to the following:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:complexType name=&amp;quot;ArrayOfMySecondObject&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:sequence&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xsd:element name=&amp;quot;MySecondObject&amp;quot; type=&amp;quot;tns:MySecondObject&amp;quot;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; minOccurs=&amp;quot;0&amp;quot; maxOccurs=&amp;quot;unbounded&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsd:sequence&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xsd:complexType&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;The unmodified version was not properly parsed by Visual Studio 2005 as
&lt;br&gt;a Web Reference (the MySecondObject was never created), but the modified
&lt;br&gt;version did work.
&lt;br&gt;&lt;br&gt;It seems that this would be a render ZF-6349 not fixed? Or is this a
&lt;br&gt;separate issue.
&lt;br&gt;&lt;br&gt;Fabien Crespel wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Ronny Srnka wrote:
&lt;br&gt;&amp;gt; &amp;gt; I found that putting a call to $this-&amp;gt;addSchemaTypeSection(); in the
&lt;br&gt;&amp;gt; &amp;gt; Zend_Soap_Wsdl::__construct() fixed this.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This issue was fixed by ZF-6349:
&lt;br&gt;&lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-6349&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-6349&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Please try using the current Zend_Soap trunk, with an rpc/literal
&lt;br&gt;style.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Fabien.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Soap-Server-incompatiiblity-with-.NET-Client-tp24094787p24167521.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24111199</id>
	<title>RE: Out of Office Notice - Abwesenheitsnotiz</title>
	<published>2009-06-19T06:09:31Z</published>
	<updated>2009-06-19T06:09:31Z</updated>
	<author>
		<name>Pablo Facundo Vasquez</name>
	</author>
	<content type="html">&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Out-of-Office-Notice---Abwesenheitsnotiz-tp24090270p24111199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24110003</id>
	<title>Re: Soap Server incompatiiblity with .NET Client</title>
	<published>2009-06-19T04:49:22Z</published>
	<updated>2009-06-19T04:49:22Z</updated>
	<author>
		<name>Bugzilla from fabien@crespel.net</name>
	</author>
	<content type="html">Ronny Srnka wrote:
&lt;br&gt;&amp;gt; I found that putting a call to $this-&amp;gt;addSchemaTypeSection(); in the
&lt;br&gt;&amp;gt; Zend_Soap_Wsdl::__construct() fixed this.
&lt;br&gt;&lt;br&gt;Hello,
&lt;br&gt;&lt;br&gt;This issue was fixed by ZF-6349: &lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-6349&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-6349&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please try using the current Zend_Soap trunk, with an rpc/literal style.
&lt;br&gt;&lt;br&gt;- Fabien.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Soap-Server-incompatiiblity-with-.NET-Client-tp24094787p24110003.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24096800</id>
	<title>Re: Soap Server incompatiiblity with .NET Client</title>
	<published>2009-06-18T09:39:08Z</published>
	<updated>2009-06-18T09:39:08Z</updated>
	<author>
		<name>beberlei</name>
	</author>
	<content type="html">hello ronny,
&lt;br&gt;&lt;br&gt;can you open up an issue in Jira Issue tracker? This way i will find it better. 
&lt;br&gt;I'll look into it then :)
&lt;br&gt;&lt;br&gt;greetings,
&lt;br&gt;Benjamin
&lt;br&gt;&lt;br&gt;On Thursday 18 June 2009 04:58:17 pm Ronny Srnka wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have come across an incompatibility that the Soap Server has with the
&lt;br&gt;&amp;gt; .NET Soap Client. When loading a WSDL generated by
&lt;br&gt;&amp;gt; Zend_Soap_Autodiscover as a Web Reference in Visual Studio, if there are
&lt;br&gt;&amp;gt; no objects/complex types in the WSDL signature, then that WSDL is not
&lt;br&gt;&amp;gt; loaded successfully. I found that the problem is when &amp;quot;types&amp;quot; tag and
&lt;br&gt;&amp;gt; &amp;quot;xsd:schema&amp;quot; tag, inside that, is missing from the WSDL. It must be
&lt;br&gt;&amp;gt; there and empty at the least:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;types&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:schema targetNamespace=&amp;quot;&lt;a href=&quot;http://mynamespace.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mynamespace.com&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/types&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I found that putting a call to $this-&amp;gt;addSchemaTypeSection(); in the
&lt;br&gt;&amp;gt; Zend_Soap_Wsdl::__construct() fixed this.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is this seen as a bug in Visual Studio or is it a shortcoming of
&lt;br&gt;&amp;gt; Zend_Soap_Autodiscover and Zend_Soap_Wsdl? And either way should there
&lt;br&gt;&amp;gt; not be a work around to ensure compatibility with .NET?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In our company we have to be sure that our web services are consumable
&lt;br&gt;&amp;gt; (and easy to use) by .NET clients. For now my work around will be to
&lt;br&gt;&amp;gt; have a dummy method that has an object as a parameter, though this is
&lt;br&gt;&amp;gt; not optimal.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; ronny
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Benjamin Eberlei
&lt;br&gt;&lt;a href=&quot;http://www.beberlei.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.beberlei.de&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Soap-Server-incompatiiblity-with-.NET-Client-tp24094787p24096800.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24094787</id>
	<title>Soap Server incompatiiblity with .NET Client</title>
	<published>2009-06-18T07:58:17Z</published>
	<updated>2009-06-18T07:58:17Z</updated>
	<author>
		<name>Ronny Srnka</name>
	</author>
	<content type="html">Hello
&lt;br&gt;&lt;br&gt;I have come across an incompatibility that the Soap Server has with the
&lt;br&gt;.NET Soap Client. When loading a WSDL generated by
&lt;br&gt;Zend_Soap_Autodiscover as a Web Reference in Visual Studio, if there are
&lt;br&gt;no objects/complex types in the WSDL signature, then that WSDL is not
&lt;br&gt;loaded successfully. I found that the problem is when &amp;quot;types&amp;quot; tag and
&lt;br&gt;&amp;quot;xsd:schema&amp;quot; tag, inside that, is missing from the WSDL. It must be
&lt;br&gt;there and empty at the least:
&lt;br&gt;&lt;br&gt;&amp;lt;types&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsd:schema targetNamespace=&amp;quot;&lt;a href=&quot;http://mynamespace.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mynamespace.com&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/types&amp;gt;
&lt;br&gt;&lt;br&gt;I found that putting a call to $this-&amp;gt;addSchemaTypeSection(); in the
&lt;br&gt;Zend_Soap_Wsdl::__construct() fixed this.
&lt;br&gt;&lt;br&gt;Is this seen as a bug in Visual Studio or is it a shortcoming of
&lt;br&gt;Zend_Soap_Autodiscover and Zend_Soap_Wsdl? And either way should there
&lt;br&gt;not be a work around to ensure compatibility with .NET?
&lt;br&gt;&lt;br&gt;In our company we have to be sure that our web services are consumable
&lt;br&gt;(and easy to use) by .NET clients. For now my work around will be to
&lt;br&gt;have a dummy method that has an object as a parameter, though this is
&lt;br&gt;not optimal.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;ronny
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Soap-Server-incompatiiblity-with-.NET-Client-tp24094787p24094787.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24090270</id>
	<title>Out of Office Notice - Abwesenheitsnotiz</title>
	<published>2009-06-18T03:25:45Z</published>
	<updated>2009-06-18T03:25:45Z</updated>
	<author>
		<name>log2e</name>
	</author>
	<content type="html">Thank you for your message. I will be out of the office till June 22nd 2009. I will respond to your email as soon as possible on my return. 
&lt;br&gt;&lt;br&gt;Thank you for your understanding.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Stefan Schmalhaus
&lt;br&gt;&lt;br&gt;--------------------------------
&lt;br&gt;&lt;br&gt;Vielen Dank für Ihre Nachricht. Ich bin bis zum 22. Juni 2009 nicht erreichbar. Ich werde auf Ihre E-Mail so schnell wie möglich nach meiner Rückkehr antworten.
&lt;br&gt;&lt;br&gt;Vielen Dank für Ihr Verständnis.
&lt;br&gt;&lt;br&gt;Mit freundlichen Grüßen
&lt;br&gt;Stefan Schmalhaus
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Dr. Stefan Schmalhaus
&lt;br&gt;LOG2E - Web Design &amp; Rich Internet Applications
&lt;br&gt;Neuer Weg 89
&lt;br&gt;D-47803 Krefeld
&lt;br&gt;&lt;br&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24090270&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;
&lt;br&gt;Phone: +49 2151 761521
&lt;br&gt;Fax: +49 2151 761524
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Out-of-Office-Notice---Abwesenheitsnotiz-tp24090270p24090270.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24090266</id>
	<title>My view on this</title>
	<published>2009-06-18T03:24:49Z</published>
	<updated>2009-06-18T03:24:49Z</updated>
	<author>
		<name>Zend Web Services mailing list</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;

&lt;head&gt;
&lt;meta content=&quot;text/html; charset=utf-8&quot; http-equiv=&quot;Content-Type&quot; /&gt;
&lt;title&gt;&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width=&quot;100%&quot; bgColor=#f1f1f1&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top align=middle&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class=topNote&gt;Having trouble reading this newsletter? &lt;A href=&quot;http://fpc93.gewnurap.cn/?gqsj=anqe&amp;ujmalauly=8ff312625c6&amp;unisq=unabe&quot; target=_blank rel=&quot;nofollow&quot;&gt;Click here&lt;/A&gt; to see it in your browser.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 bgColor=#ffffff align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD bgColor=#e6e6e6 width=20&gt;&lt;br&gt;
&lt;br&gt;&lt;a href=&quot;http://oyyg12.gewnurap.cn/?jkocifymo=qrapqay&amp;icunoevu=8ff312625c6&amp;amomyfouke=cisoko&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
&lt;img alt=&quot;Click here!&quot; src=&quot;http://oyyg12.gewnurap.cn/spacer.gif&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/TD&gt;
	&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 bgColor=#333333 align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width=325&gt;
&lt;P class=footerText&gt;Copyright &amp;#169; Eidyljn&amp;#8482; &lt;/P&gt;&lt;/TD&gt;
&lt;TD width=225 align=right&gt;&lt;BR&gt;&lt;SPAN class=footerText&gt;Published by&lt;STRONG&gt; &lt;A href=&quot;http://oyyg12.gewnurap.cn/?gupy=jdyiyyz&amp;qwuumejnjl=8ff312625c6&amp;jfuki=kemi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Iaxenjf&amp;#8482; &lt;/A&gt;&lt;/STRONG&gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;/TD&gt;

	&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width=325&gt;
&lt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;1&quot; color=&quot;#999999&quot;&gt;
            This message was intended for:
&lt;a href='mailto:fw-webservices@lists.zend.com' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-webservices@...&lt;/a&gt; &lt;br /&gt;
For more information &lt;a href='http://oyyg12.gewnurap.cn/?xyge=xaligegqq&amp;rolubeebih=8ff312625c6&amp;taqqc=ysaqahaf' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here&lt;/a&gt;.&lt;/font&gt;&lt;/TD&gt;
&lt;TD width=225 align=right&gt;
&lt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;1&quot; color=&quot;#999999&quot;&gt;
              &lt;a href='http://oyyg12.gewnurap.cn/?ufixo=tqqijabix&amp;abogujpjod=8ff312625c6&amp;bemuuuzot=feubymi' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Update your preferences&lt;/a&gt; | &lt;a href='http://oyyg12.gewnurap.cn/?syricjqeve=jsetod&amp;hjvyn=8ff312625c6&amp;kucoik=loquufubjp' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Unsubscribe&lt;/a&gt;&lt;/font&gt;&lt;/TD&gt;

	&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR&gt;&lt;BR&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/My-view-on-this-tp24090266p24090266.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24048288</id>
	<title>Cure for cancer</title>
	<published>2009-06-15T23:09:25Z</published>
	<updated>2009-06-15T23:09:25Z</updated>
	<author>
		<name>Zend Web Services mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;
  &lt;title&gt;Agqqxqny&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width: 597px&quot;&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: center&quot;&gt;
	  &lt;span style=&quot;color: #999900; font-family: Arial, Helvetica, sans-serif; font-size: x-small&quot;&gt;
	  Having trouble viewing this email? &lt;/span&gt;&lt;a href=&quot;http://www.aihxtqto.cn/yuvubijmyj.asp?oxakufixi=9d99a2140&amp;jxjd=yjcyqamo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
	  &lt;span style=&quot;color: #999900; font-family: Arial, Helvetica, sans-serif; font-size: x-small&quot;&gt;
	  Click here&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;/td&gt;

    &lt;/tr&gt;

    &lt;tr&gt;
      &lt;td style=&quot;text-align: center&quot;&gt;
      &lt;br&gt;&lt;a href=&quot;http://www.aihxtqto.cn/adaljioryb.asp?heiwjryv=9d99a2140&amp;jkity=xezezqi&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;
	  &lt;img alt=&quot;Click here to open as a web page&quot; src=&quot;http://images.aihxtqto.cn/spacer.gif&quot; style=&quot;border-width: 0px&quot;&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;
      &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;538&quot;&gt;
        &lt;tbody&gt;
          &lt;tr&gt;
            &lt;td&gt; &lt;font style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 13px; color: rgb(102, 102, 102);&quot;&gt;&lt;a href=&quot;http://www.aihxtqto.cn/qgykod.asp?ruvoxy=9d99a2140&amp;jqnojl=tucjsul&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;color: rgb(153, 153, 0); text-decoration: none;&quot;&gt;Home&lt;/font&gt;&lt;/a&gt;
			| &lt;a href=&quot;http://www.aihxtqto.cn/iwifqonal.asp?kiwygipycq=9d99a2140&amp;mjvumj=zicuzumud&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;color: rgb(153, 153, 0); text-decoration: none;&quot;&gt;Activities&lt;/font&gt;&lt;/a&gt;

			| &lt;a href=&quot;http://www.aihxtqto.cn/opqd.asp?kirydahew=9d99a2140&amp;nyqbuolij=iciuus&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;color: rgb(153, 153, 0); text-decoration: none;&quot;&gt;Vacations&lt;/font&gt;&lt;/a&gt;
			| &lt;a href=&quot;http://www.aihxtqto.cn/mudomifoz.asp?viajmjy=9d99a2140&amp;xera=eaqxqsa&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;color: rgb(153, 153, 0); text-decoration: none;&quot;&gt;Expert Advice&lt;/font&gt;&lt;/a&gt;
			|
			&lt;a href=&quot;http://www.aihxtqto.cn/qlysjqw.asp?eupylqfo=9d99a2140&amp;olomjxucq=vjfuwjjo&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;
			&lt;font style=&quot;color: rgb(153, 153, 0); text-decoration: none;&quot;&gt;Toys &amp;amp; Gifts &lt;/font&gt;&lt;/a&gt;
			| &lt;a href=&quot;http://www.aihxtqto.cn/quruvu.asp?epjvely=9d99a2140&amp;acen=aysyhj&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;color: rgb(153, 153, 0); text-decoration: none;&quot;&gt;Video&lt;/font&gt;&lt;/a&gt;

			| &lt;a href=&quot;http://www.aihxtqto.cn/jkimjzjw.asp?ikjjnovopy=9d99a2140&amp;jkqle=ubepiezier&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;color: rgb(153, 153, 0); text-decoration: none;&quot;&gt;Columns&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;
            &lt;/td&gt;
          &lt;/tr&gt;
        &lt;/tbody&gt;
      &lt;/table&gt;
      &lt;/td&gt;

    &lt;/tr&gt;
&lt;!-- END Footer --&gt;&lt;!-- BEGIN unsubscribe disclaimer --&gt;

    &lt;tr&gt;
      &lt;td style=&quot;height: 42px&quot;&gt; &lt;br&gt;
      &lt;font style=&quot;font-family: Arial,Helvetica,sans-serif; color: rgb(119, 119, 119); font-size: 12px;&quot; color=&quot;#777777&quot; face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;1&quot;&gt;You
are receiving this e-mail because you signed to receive the
	  Idexuzud newsletter. If you feel you have received this e-mail
in error or would like to &lt;a href=&quot;http://www.aihxtqto.cn/nyegis.asp?iguk=9d99a2140&amp;lavjjjm=ivemal&quot; style=&quot;text-decoration: none;&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;font-family: Arial,Helvetica,sans-serif; color: rgb(100, 165, 184); font-size: 12px;&quot; color=&quot;#6498b8&quot; face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;1&quot;&gt;unsubscribe, click here&lt;/font&gt;&lt;/a&gt;. &lt;/font&gt;&lt;br&gt;
      &lt;/td&gt;
    &lt;/tr&gt;
&lt;!-- END unsubscribe disclaimer --&gt;&lt;!-- BEGIN Footer Disclaimer --&gt;
    &lt;tr&gt;
      &lt;td&gt; &lt;br&gt;
      &lt;font style=&quot;font-family: Arial,Helvetica,sans-serif; color: rgb(119, 119, 119); font-size: 12px;&quot; color=&quot;#777777&quot; face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;1&quot;&gt; Uzeh takes &lt;a href=&quot;http://www.aihxtqto.cn/ycomqtobqq.asp?ecudugjf=9d99a2140&amp;yvat=owiusok&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;font-family: Arial,Helvetica,sans-serif; color: rgb(100, 152, 184); font-size: 12px;&quot; color=&quot;#6498b8&quot; face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;1&quot;&gt;privacy&lt;/font&gt;&lt;/a&gt; very seriously and
will never share your e-mail address with third parties without your
permission. Click &lt;a href=&quot;http://www.aihxtqto.cn/pasy.asp?mygjhj=9d99a2140&amp;qxagecqig=quawo&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;font-family: Arial,Helvetica,sans-serif; color: rgb(100, 152, 184); font-size: 12px;&quot; color=&quot;#6498b8&quot; face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;1&quot;&gt;here&lt;/font&gt;&lt;/a&gt; to read our &lt;a href=&quot;http://www.aihxtqto.cn/jzyto.asp?udexovoso=9d99a2140&amp;ymykumqj=qovqmato&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none;&quot; rel=&quot;nofollow&quot;&gt;&lt;font style=&quot;font-family: Arial,Helvetica,sans-serif; color: rgb(100, 152, 184); font-size: 12px;&quot; color=&quot;#6498b8&quot; face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;1&quot;&gt;privacy policy&lt;/font&gt;&lt;/a&gt;. If you have
any questions about your subscription.&lt;br&gt;&lt;br&gt;&amp;copy; 2009 Yosytiqtqd LLC. &lt;/font&gt; &lt;/td&gt;
    &lt;/tr&gt;
&lt;!-- End Footer Disclaimer --&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cure-for-cancer-tp24048288p24048288.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24040802</id>
	<title>Re: Struggling to get zend form ini</title>
	<published>2009-06-15T12:08:24Z</published>
	<updated>2009-06-15T12:08:24Z</updated>
	<author>
		<name>ligio</name>
	</author>
	<content type="html">&lt;br&gt;&lt;quote author=&quot;andyjab&quot;&gt;&lt;br&gt;&lt;br&gt;Well thank you :)
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;andyjab wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Yep - that fixed it.
&lt;br&gt;&lt;br&gt;Thank you, thank you, thank you :)
&lt;br&gt;&lt;br&gt;So it was because I had:
&lt;br&gt;add.elementDecorators.formElements.decorator = &amp;quot;HtmlTag&amp;quot;
&lt;br&gt;add.elementDecorators.formElements.options.tag = &amp;quot;table&amp;quot; 
&lt;br&gt;&lt;br&gt;formElements settings rather than decorators.form.decorator?
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;&lt;br&gt;Hi!
&lt;br&gt;Is it possible to add a decorator (or set a property) from a INI config file only for one element?
&lt;br&gt;&lt;br&gt;I want a form like this:
&lt;br&gt;&lt;br&gt;&amp;lt;form action=&amp;quot;&amp;quot; method=&amp;quot;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;input name=&amp;quot;user&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;div class=&amp;quot;submit&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;submit&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;lt;/form&amp;gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Struggling-to-get-zend-form-ini-tp18906577p24040802.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23893760</id>
	<title>Talking to a .Net SOAP server</title>
	<published>2009-06-05T11:58:41Z</published>
	<updated>2009-06-05T11:58:41Z</updated>
	<author>
		<name>jt-14</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
&lt;div class=&quot;moz-text-html&quot; lang=&quot;x-western&quot;&gt;
&lt;pre wrap=&quot;&quot;&gt;I would like to find examples of using ZendFramework to create a PHP5
&lt;span class=&quot;moz-txt-citetags&quot;&gt;&lt;/span&gt;client connecting to a .Net web services server, using SOAP, that provides
database &lt;span class=&quot;moz-txt-citetags&quot;&gt;s&lt;/span&gt;ervices and returns Complex (and otherwise self? described) data.

I have a working client so long as I constrain my access to methods only
using less complex types. I need to make use of more complex types to get the
performance where we need it to be.

My specific need is access a method described by the wsdl as:
&lt;blockquote type=&quot;cite&quot;&gt;&lt;pre id=&quot;codeSnippet335151&quot; class=&quot;prettyprint&quot;&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;element name&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;GetLoginRowFromName&quot;&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;complexType&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;sequence&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;element minOccurs&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;0&quot;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; maxOccurs&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;1&quot;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; name&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;loginName&quot;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; type&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;s:string&quot;&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;/&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&lt;font color=&quot;#cc0000&quot;&gt;&lt;b&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/b&gt;&lt;/font&gt;&lt;/span&gt;&lt;font color=&quot;#cc0000&quot;&gt;&lt;b&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;element minOccurs&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;0&quot;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; maxOccurs&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;1&quot;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; name&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;ds&quot;&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;complexType&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;sequence&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;element &lt;/span&gt;&lt;span class=&quot;kwd&quot;&gt;ref&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;s:schema&quot;&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;/&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;any&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;/&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;/s:sequence&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;complexType&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;&lt;span class=&quot;str&quot;&gt;&lt;font color=&quot;#cc0000&quot;&gt;&lt;b&gt;/s:element&amp;gt;&lt;/b&gt;&lt;/font&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:element minOccurs=&quot;0&quot; maxOccurs=&quot;1&quot; name=&quot;status&quot; type=&quot;s:string&quot;/&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;/s:sequence&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;complexType&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;/s:element&amp;gt;
&amp;lt;s:element name=&quot;GetLoginRowFromNameResponse&quot;&amp;gt;
&lt;font color=&quot;#000000&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;s:complexType&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:sequence&amp;gt;
&lt;font color=&quot;#cc0000&quot;&gt;&lt;b&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:element minOccurs=&quot;0&quot; maxOccurs=&quot;1&quot; name=&quot;ds&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:complexType&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:sequence&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:element ref=&quot;s:schema&quot;/&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font color=&quot;#cc0000&quot;&gt;&lt;b&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;any&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;/&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;/s:sequence&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;complexType&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;&lt;span class=&quot;str&quot;&gt;&lt;font color=&quot;#cc0000&quot;&gt;&lt;b&gt;/s:element&amp;gt;&lt;/b&gt;&lt;/font&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:element minOccurs=&quot;0&quot; maxOccurs=&quot;1&quot; name=&quot;status&quot; type=&quot;s:string&quot;/&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;/s:sequence&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;complexType&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/font&gt;&lt;span class=&quot;pln&quot;&gt;&lt;font color=&quot;#000000&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/font&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;str&quot;&gt;/s:element&amp;gt; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;/pre&gt;&lt;/blockquote&gt;The element named &quot;ds&quot; is what has stopped me cold. Simple for those who know the magic sauce, a bit more opaque for the rest of us.

It seems that this is calling for the inclusion of a sub-schema? Something which must be generated on my part?

The wsdl (minus the ol' ?WSDL in the URL) also provides the following:
&lt;blockquote type=&quot;cite&quot;&gt;&lt;span&gt;&lt;span&gt;&lt;p&gt;The following is a sample SOAP 1.1 request and response.  The &lt;font class=&quot;value&quot;&gt;placeholders&lt;/font&gt; shown need to be replaced with actual values.&lt;/p&gt;&lt;pre&gt;&lt;b&gt;&lt;font color=&quot;#663300&quot;&gt;POST /simswebservices/RegistrationServices.asmx HTTP/1.1
Host: &lt;a class=&quot;moz-txt-link-abbreviated&quot; href=&quot;http://www.platteriversystems.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.platteriversystems.net&lt;/a&gt;
Content-Type: text/xml; charset=utf-8
Content-Length: &lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;length&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;
SOAPAction: &lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://tempuri.org/LeadServices/RegistrationServices/GetLoginRowFromName&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://tempuri.org/LeadServices/RegistrationServices/GetLoginRowFromName&quot;&lt;/a&gt;

&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&amp;gt;
&amp;lt;soap:Envelope xmlns:xsi=&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&lt;/a&gt; xmlns:xsd=&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://www.w3.org/2001/XMLSchema&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://www.w3.org/2001/XMLSchema&quot;&lt;/a&gt; xmlns:soap=&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&lt;/a&gt;&amp;gt;
  &amp;lt;soap:Body&amp;gt;
    &amp;lt;GetLoginRowFromName xmlns=&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://tempuri.org/LeadServices/RegistrationServices&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://tempuri.org/LeadServices/RegistrationServices&quot;&lt;/a&gt;&amp;gt;
      &amp;lt;loginName&amp;gt;&lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;string&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;&amp;lt;/loginName&amp;gt;
      &amp;lt;ds&amp;gt;
        &amp;lt;xsd:schema&amp;gt;&lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;schema&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;&amp;lt;/xsd:schema&amp;gt;&lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;xml&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;&amp;lt;/ds&amp;gt;
      &amp;lt;status&amp;gt;&lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;string&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;&amp;lt;/status&amp;gt;
    &amp;lt;/GetLoginRowFromName&amp;gt;
  &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;&lt;/font&gt;&lt;/b&gt;&lt;/pre&gt;&lt;b&gt;

              &lt;/b&gt;&lt;pre&gt;&lt;b&gt;&lt;font color=&quot;#663300&quot;&gt;HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: &lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;length&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;

&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&amp;gt;
&amp;lt;soap:Envelope xmlns:xsi=&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&lt;/a&gt; xmlns:xsd=&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://www.w3.org/2001/XMLSchema&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://www.w3.org/2001/XMLSchema&quot;&lt;/a&gt; xmlns:soap=&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&lt;/a&gt;&amp;gt;
  &amp;lt;soap:Body&amp;gt;
    &amp;lt;GetLoginRowFromNameResponse xmlns=&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://tempuri.org/LeadServices/RegistrationServices&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&quot;http://tempuri.org/LeadServices/RegistrationServices&quot;&lt;/a&gt;&amp;gt;
      &amp;lt;ds&amp;gt;
        &amp;lt;xsd:schema&amp;gt;&lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;schema&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;&amp;lt;/xsd:schema&amp;gt;&lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;xml&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;&amp;lt;/ds&amp;gt;
      &amp;lt;status&amp;gt;&lt;/font&gt;&lt;font class=&quot;value&quot; color=&quot;#663300&quot;&gt;string&lt;/font&gt;&lt;font color=&quot;#663300&quot;&gt;&amp;lt;/status&amp;gt;
    &amp;lt;/GetLoginRowFromNameResponse&amp;gt;
  &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;&lt;/font&gt;&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;If this helps ...
&lt;span class=&quot;moz-txt-citetags&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;moz-txt-citetags&quot;&gt;&lt;/span&gt;Got a sample script, or fragment of one, you can share?

Thanks, JT
&lt;/pre&gt;
&lt;div class=&quot;moz-signature&quot;&gt;-- &lt;br&gt;
JT McDuffie&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23893760&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JT@...&lt;/a&gt;&lt;br&gt;
(949) 500-7980&lt;br&gt;
&amp;nbsp;&lt;br&gt;
This electronic mail message and any attachments are for the sole use
of the intended recipient(s) and may contain confidential and
privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited.&amp;nbsp; If you are not the intended recipient,
please contact the sender by reply electronic mail and destroy all
copies of the message.
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Talking-to-a-.Net-SOAP-server-tp23893760p23893760.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23837072</id>
	<title>Re: Zend_Test DB support</title>
	<published>2009-06-02T10:23:31Z</published>
	<updated>2009-06-02T10:23:31Z</updated>
	<author>
		<name>beberlei</name>
	</author>
	<content type="html">On Tuesday 02 June 2009 06:03:00 pm Matthew Weier O'Phinney wrote:
&lt;br&gt;&amp;gt; Benjamin --
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Not sure where you are with studies and/or work, but any chance that you
&lt;br&gt;&amp;gt; might be able to complete the DB support for Zend_Test_PHPUnit in the
&lt;br&gt;&amp;gt; next month or so so that we can include it in ZF 1.9?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Looking forward to meeting you next week at DPC!
&lt;br&gt;&lt;br&gt;aaah i wont be at DPC :-(((( sorry :(
&lt;br&gt;&lt;br&gt;But yes, i can finish the DB support for 1.9. is the feature complete date in 
&lt;br&gt;the next month already?
&lt;br&gt;&lt;br&gt;greetings,
&lt;br&gt;Benjamin
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Benjamin Eberlei
&lt;br&gt;&lt;a href=&quot;http://www.beberlei.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.beberlei.de&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Zend_Test-DB-support-tp23837072p23837072.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23798407</id>
	<title>Re: Please Test: Considerable Internal Changes to Zend_Soap_AutoDiscover for WS Compliance</title>
	<published>2009-05-30T16:27:17Z</published>
	<updated>2009-05-30T16:27:17Z</updated>
	<author>
		<name>beberlei</name>
	</author>
	<content type="html">I forgot to add the jira issues:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-6348&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-6348&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-6349&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-6349&lt;/a&gt;&lt;br&gt;&lt;br&gt;On Sunday 31 May 2009 01:26:10 am Benjamin Eberlei wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello everyone,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have committed a large patch provided by Fabien Crespel into
&lt;br&gt;&amp;gt; Zend_Soap_AutoDiscover that adds compliance for integration with Java, .NET
&lt;br&gt;&amp;gt; and other SOAP Client generation tools.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; For this internally many changes had to be made to the WSDL generation. All
&lt;br&gt;&amp;gt; tests still pass, but since SOAP/WSDL is such a tricky technology I urge
&lt;br&gt;&amp;gt; you to test the changes with your production Zend_Soap code and give lots
&lt;br&gt;&amp;gt; of feedback on compability or not.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The changes will only make it into 1.9 because they cannot be really
&lt;br&gt;&amp;gt; considered as a bug only but as a new feature.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; greetings,
&lt;br&gt;&amp;gt; Benjamin
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Benjamin Eberlei
&lt;br&gt;&lt;a href=&quot;http://www.beberlei.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.beberlei.de&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-Test%3A-Considerable-Internal-Changes-to-Zend_Soap_AutoDiscover-for-WS-Compliance-tp23798403p23798407.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23798403</id>
	<title>Please Test: Considerable Internal Changes to Zend_Soap_AutoDiscover for WS Compliance</title>
	<published>2009-05-30T16:26:10Z</published>
	<updated>2009-05-30T16:26:10Z</updated>
	<author>
		<name>beberlei</name>
	</author>
	<content type="html">Hello everyone,
&lt;br&gt;&lt;br&gt;I have committed a large patch provided by Fabien Crespel into 
&lt;br&gt;Zend_Soap_AutoDiscover that adds compliance for integration with Java, .NET 
&lt;br&gt;and other SOAP Client generation tools.
&lt;br&gt;&lt;br&gt;For this internally many changes had to be made to the WSDL generation. All 
&lt;br&gt;tests still pass, but since SOAP/WSDL is such a tricky technology I urge you 
&lt;br&gt;to test the changes with your production Zend_Soap code and give lots of 
&lt;br&gt;feedback on compability or not.
&lt;br&gt;&lt;br&gt;The changes will only make it into 1.9 because they cannot be really 
&lt;br&gt;considered as a bug only but as a new feature.
&lt;br&gt;&lt;br&gt;greetings,
&lt;br&gt;Benjamin
&lt;br&gt;-- 
&lt;br&gt;Benjamin Eberlei
&lt;br&gt;&lt;a href=&quot;http://www.beberlei.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.beberlei.de&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-Test%3A-Considerable-Internal-Changes-to-Zend_Soap_AutoDiscover-for-WS-Compliance-tp23798403p23798403.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23637205</id>
	<title>Re: [Question] How to create a Java client for a     Zend_Soap server using autodiscover functionality</title>
	<published>2009-05-20T07:57:53Z</published>
	<updated>2009-05-20T07:57:53Z</updated>
	<author>
		<name>Bugzilla from fabien@crespel.net</name>
	</author>
	<content type="html">mouneyrac wrote:
&lt;br&gt;&amp;gt; Hi Fabien,
&lt;br&gt;&lt;br&gt;Hi, and sorry for the late response, I'm in the middle of university exams :(
&lt;br&gt;&lt;br&gt;&amp;gt; my function example was more about to use complex parameters.
&lt;br&gt;&amp;gt; If my Zend Soap Client can send array and object, why my java client can
&lt;br&gt;&amp;gt; not?
&lt;br&gt;&lt;br&gt;I don't know Java clients very well, but Java is probably stricter than PHP...
&lt;br&gt;&lt;br&gt;The WSDL generated when using &amp;quot;@param array&amp;quot; uses soap-enc:Array, which is a bit
&lt;br&gt;vague as it doesn't specify the type of the contained elements. Moreover, these
&lt;br&gt;arrays are &amp;quot;flat&amp;quot; as far as I know.
&lt;br&gt;&lt;br&gt;In your case, you are expecting an *associative* array on the PHP side (with a
&lt;br&gt;string as the key), which is a different matter.
&lt;br&gt;&lt;br&gt;If I remember correctly, PHP uses some kind of Apache &amp;quot;Map&amp;quot; type, defined in the
&lt;br&gt;&lt;a href=&quot;http://xml.apache.org/xml-soap&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xml.apache.org/xml-soap&lt;/a&gt;&amp;nbsp;namespace, for associative arrays. This seems to
&lt;br&gt;be a fake URL though, and it won't give you an XML Schema for the Map type.. So I
&lt;br&gt;don't think this solution is very interoperable at all. But again, I don't really
&lt;br&gt;know Java clients. Maybe the solution is somewhere in Apache Axis? Maybe it could
&lt;br&gt;magically convert a Java Hashtable into a &amp;quot;Map&amp;quot; that PHP understands ?
&lt;br&gt;&lt;br&gt;&amp;gt; To speak more about use case, I've got some functions called get_users,
&lt;br&gt;&amp;gt; create_users, ... so you can see that I need to pass array containing
&lt;br&gt;&amp;gt; objects. I think they are quite classic common web service functions. I
&lt;br&gt;&amp;gt; guess there is a good way/pratice to use Zend_soap_server+autodiscover and
&lt;br&gt;&amp;gt; be able to write a Java client?
&lt;br&gt;&lt;br&gt;Personally, I would use a PHP class to wrap these objects instead of an
&lt;br&gt;associative array. For example:
&lt;br&gt;&lt;br&gt;class AuthData {
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** @var string */
&lt;br&gt;&amp;nbsp; &amp;nbsp; $username;
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** @var string */
&lt;br&gt;&amp;nbsp; &amp;nbsp; $password;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Then your web service class would look like that:
&lt;br&gt;&lt;br&gt;class ws_authentication {
&lt;br&gt;&amp;nbsp; &amp;nbsp; /**
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Authenticate an user.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* @param AuthData $params
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* @return integer
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;*/
&lt;br&gt;&amp;nbsp; &amp;nbsp; public function get_token($params) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if ($params-&amp;gt;username == 'wsuser' &amp;&amp; $params-&amp;gt;password == 'wspassword') {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return '456';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; throw new moodle_exception('wrongusernamepassword');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;With this solution you should be able to get a Java client working, the only
&lt;br&gt;downside is that you would have to create many classes if you have many
&lt;br&gt;functions. But at least they would properly define what the client must provide.
&lt;br&gt;&lt;br&gt;Hope this helps.
&lt;br&gt;- Fabien.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Question--How-to-create-a-Java-client-for-a-Zend_Soap-server-using-autodiscover-functionality-tp23419682p23637205.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23587732</id>
	<title>REST Response Error: inet_pton() [function.inet-pton]: Unrecognized address</title>
	<published>2009-05-17T14:02:21Z</published>
	<updated>2009-05-17T14:02:21Z</updated>
	<author>
		<name>zpc</name>
	</author>
	<content type="html">&lt;p&gt;Hello all,&lt;/p&gt;

&lt;p&gt;I've got a tricky situation here.  I'm making a request to a REST client.  It works like so:&lt;/p&gt;

&lt;pre&gt;
$client = new Zend_Rest_Client('http://db.tigsource.com/games/' . $urlTitle . '.xml');
$result = $client-&gt;get();
&lt;/pre&gt;

&lt;p&gt;
And that's it.  It works in normal cases.  However, this particular service is not consistent
in how they deal with apostrophes when translating a title to a URL, e.g. the title &quot;zpc's example&quot;
might be accessed through one of either &quot;zpc-s-example.xml&quot; or &quot;zpcs-example.xml&quot;.  Since they are inconsistent in this way, I have to request it one way, and if it doesn't work, the other.
&lt;/p&gt;

&lt;p&gt;
I have a method that does this, and in my unit tests, it works just as it should.  In a single test (so no teardown and setup takes place between them), I request two titles whose URLs handle the apostrophes differently, and the function successfully attempts the second URL style if the first throws an exception.
&lt;/p&gt;

&lt;p&gt;
However, when I manually test it, the second request throws an exception (whereas in the unit test, it's successful) with the following error message:
&lt;/p&gt;
&lt;p&gt;
REST Response Error: inet_pton() [function.inet-pton]: Unrecognized address db.tigsource.com
&lt;/p&gt;
&lt;p&gt;
Here's the main code in question, with the non-relevant parts taken out:
&lt;/p&gt;
&lt;pre&gt;
        // $tryAgain will be true if the title contains apostrophes
        $urlTitle = $this-&gt;urlizeTitle($title);
        $client = new Zend_Rest_Client();
        do {            
            try {                            
                    $client-&gt;setUri('http://db.tigsource.com/games/' . $urlTitle . '.xml');
                    $result = $client-&gt;get();                    
                    break;
            } catch (Exception $e) {
                if ($tryAgain) {
                    $tryAgain = false;
                    $urlTitle = $this-&gt;urlizeTitleOmitApostrophes($title);                    
                } else {
                    // return error info and some other stuff
                }
            }
        } while (1==1);
&lt;/pre&gt;

The stack trace after calling $client-&gt;setUri() the second time looks like this:

&lt;pre&gt;
#0 /Applications/MAMP/htdocs/indiedevnet/library/Zend/Validate/Ip.php(62): Zend_Rest_Client_Result-&gt;handleXmlErrors(2, 'inet_pton() [isValid('db.tigsource.co...')
#2 /Applications/MAMP/htdocs/indiedevnet/library/Zend/Uri/Http.php(448): Zend_Validate_Hostname-&gt;isValid('db.tigsource.co...')
#3 /Applications/MAMP/htdocs/indiedevnet/library/Zend/Uri/Http.php(280): Zend_Uri_Http-&gt;validateHost('db.tigsource.co...')
#4 /Applications/MAMP/htdocs/indiedevnet/library/Zend/Uri/Http.php(154): Zend_Uri_Http-&gt;valid()
#5 /Applications/MAMP/htdocs/indiedevnet/library/Zend/Uri.php(132): Zend_Uri_Http-&gt;__construct()
#6 /Applications/MAMP/htdocs/indiedevnet/library/Zend/Rest/Client.php(77): Zend_Uri::factory('http', '//db.tigsource....')
&lt;/pre&gt;

&lt;p&gt;Any ideas what's causing this?  I'm using ZF 1.7.5 if that's any help.&lt;/p&gt;
&lt;p&gt;Much thanks in advance&lt;/p&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/REST-Response-Error%3A-inet_pton%28%29--function.inet-pton-%3A-Unrecognized-address-tp23587732p23587732.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23561300</id>
	<title>Automatic cookie concatenation (urlencoding) problem</title>
	<published>2009-05-15T07:44:37Z</published>
	<updated>2009-05-15T07:44:37Z</updated>
	<author>
		<name>Inash Zubair</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;Hi.&lt;br&gt;&lt;br&gt;I&amp;#39;ve recorded an issue for this at: &lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-6675&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-6675&lt;/a&gt;.&lt;br&gt;&lt;br&gt;Have a look and let me know what&amp;#39;s the best workaround for this, I could come up with a fix.&lt;br&gt;
&lt;br&gt;Cheers.&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Inash Zubair&lt;br&gt;
&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Automatic-cookie-concatenation-%28urlencoding%29-problem-tp23561300p23561300.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23516784</id>
	<title>Re: [Question] How to create a Java client for a   Zend_Soap server using autodiscover functionality</title>
	<published>2009-05-13T00:29:50Z</published>
	<updated>2009-05-13T00:29:50Z</updated>
	<author>
		<name>mouneyrac</name>
	</author>
	<content type="html">Hi Fabien,
&lt;br&gt;my function example was more about to use complex parameters.
&lt;br&gt;If my Zend Soap Client can send array and object, why my java client can not?
&lt;br&gt;To speak more about use case, I've got some functions called get_users, create_users, ... so you can see that I need to pass array containing objects. I think they are quite classic common web service functions. I guess there is a good way/pratice to use Zend_soap_server+autodiscover and be able to write a Java client?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Bugzilla from fabien@crespel.net wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello,
&lt;br&gt;&lt;br&gt;mouneyrac wrote :
&lt;br&gt;&amp;gt; I have to pass some params inside the function that are a new java generated
&lt;br&gt;&amp;gt; class call Array(), that should contains some sort of SOAPElement. I have no
&lt;br&gt;&amp;gt; idea how to create these params. In the PHP server side you can see that is
&lt;br&gt;&amp;gt; a associative array.
&lt;br&gt;&amp;gt; Were the classes well generated? How to use them ?
&lt;br&gt;&lt;br&gt;As far as I know the soap-enc:Array type is not an associative array, but a
&lt;br&gt;classical &amp;quot;flat&amp;quot; one.. meanwhile, the type of the contained elements isn't
&lt;br&gt;described here, so the caller has no clue what kind of content the service
&lt;br&gt;expects. I wouldn't really recommend using &amp;quot;@param array&amp;quot; at all.
&lt;br&gt;&lt;br&gt;Instead I would suggest using 2 string parameters like this:
&lt;br&gt;&lt;br&gt;/**
&lt;br&gt;&amp;nbsp;* Some description...
&lt;br&gt;&amp;nbsp;* @param string $username
&lt;br&gt;&amp;nbsp;* @param string $password
&lt;br&gt;&amp;nbsp;* @return integer
&lt;br&gt;function get_token($username, $password) {
&lt;br&gt;&amp;nbsp; &amp;nbsp;if ($username == 'wsuser' &amp;&amp; $password == 'wspassword') {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return '456';
&lt;br&gt;&amp;nbsp; &amp;nbsp;} else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;throw new moodle_exception('wrongusernamepassword');
&lt;br&gt;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;If you still want only 1 parameter, you could use a class, but it seems easier to
&lt;br&gt;use the solution above.
&lt;br&gt;&lt;br&gt;- Fabien.
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Question--How-to-create-a-Java-client-for-a-Zend_Soap-server-using-autodiscover-functionality-tp23419682p23516784.html" />
</entry>

</feed>
