[fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Tamer Higazi
Hi people! I have set up a Soap Server as well I do generate the WSDL File with the generator. The WSDL Generator generates me only the input messages, but I need the ouput messages created on the fly either, and I am not getting smart. General: http://toplay.higazi.net/?wsdl generates the WSDL F

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Jan Pieper
You need to add PHPDoc comments to your methods of "MeineKlasse". Zend_Soap_AutoDiscover will use its content to generate input and output messages for your WSDL file. -- Jan Original-Nachricht > Datum: Tue, 29 Jun 2010 12:22:23 +0200 > Von: Tamer Higazi > An: fw-general@list

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Tamer Higazi
I did as you told me, but nothing happened :( Here's the URL: http://toplay.higazi.net/soaps/app/MeineKlasse.phps Can you give me more advises?! Tamer Am 29.06.2010 12:27, schrieb Jan Pieper: > You need to add PHPDoc comments to your methods of "MeineKlasse". > Zend_Soap_AutoDiscover will us

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Andrew Ballard
On Tue, Jun 29, 2010 at 7:30 AM, Tamer Higazi wrote: > I did as you told me, > but nothing happened :( > > Here's the URL: > http://toplay.higazi.net/soaps/app/MeineKlasse.phps > > Can you give me more advises?! > > > Tamer > > > Am 29.06.2010 12:27, schrieb Jan Pieper: >> You need to add PHPDoc c

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Jan Pieper
I don't know whether Zend_Soap_AutoDiscover or rather Zend_Server_Reflection is able to handle single-line comments for phpdoc. Try using multi-line comments instead: /** * @param string $ein * @return string */ public function MeineFunk($ein) { ... } -- Jan Original-Nachricht

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Tamer Higazi
Hi Andrew, No I am not using any accelerator extensions. Tamer Am 29.06.2010 16:01, schrieb Andrew Ballard: > On Tue, Jun 29, 2010 at 7:30 AM, Tamer Higazi wrote: > >> I did as you told me, >> but nothing happened :( >> >> Here's the URL: >> http://toplay.higazi.net/soaps/app/MeineKlasse.ph

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Tamer Higazi
Same result: http://toplay.higazi.net/?wsdl I updated the files. Any ideas anymore?! Tamer Am 29.06.2010 16:54, schrieb Jan Pieper: > I don't know whether Zend_Soap_AutoDiscover or rather Zend_Server_Reflection > is able to handle single-line comments for phpdoc. Try using multi-line > com

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Jan Pieper
Use /** instead of /* to start your multi-line comment. -- Jan Original-Nachricht > Datum: Tue, 29 Jun 2010 17:47:12 +0200 > Von: Tamer Higazi > An: fw-general@lists.zend.com > Betreff: Re: [fw-general] Zend_Soap_Discover don\'t create WSDL return > messages and everything xsd

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread George Secrieru
Remember to clear your PHP's WSDL cache before your new tests. Regards, George On Tue, Jun 29, 2010 at 1:00 PM, Jan Pieper wrote: > Use /** instead of /* to start your multi-line comment. > > -- Jan > > Original-Nachricht > > Datum: Tue, 29 Jun 2010 17:47:12 +0200 > > Von: Tam

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime

2010-06-29 Thread Tamer Higazi
wsdl cache is disabled: http://toplay.higazi.net/soaps/web/index.phps And I solved it now. Look at the answer message I posted to Jan! Thank you for your kind support Tamer Am 29.06.2010 18:09, schrieb George Secrieru: > Remember to clear your PHP's WSDL cache before your new tests. > > Rega

Re: [fw-general] Zend_Soap_Discover don't create WSDL return messages and everything xsd:anytime (SOLVED)

2010-06-29 Thread Tamer Higazi
Hi Jan! You were absolutely right. I attached the samples in this mail, that you don't have to repeat yourself for the same returning problem. Thank you Tamer Am 29.06.2010 18:00, schrieb Jan Pieper: > Use /** instead of /* to start your multi-line comment. > > -- Jan > > Original