Questions tagged [zend-soap]

Questions about the SOAP functionality packaged with Zend Framework: Zend_Soap_Server, Zend_Soap_Client etc.

Zend Framework ships with classes designed to simplify the setup, configuration and utilization of web services with PHP. The classes include Zend_Soap_Server, Zend_Soap_Client and Zend_Soap_Autodiscover, and provide:

  • WSDL file generation and auto-discovery,
  • WSDL and non-WSDL modes for Soap clients
  • a variety of member methods to map and manipulate SOAP headers and content

Zend Framework provides documentation for these classes at http://framework.zend.com/manual/1.12/en/zend.soap.html. The documentation is a great starting place, but may not answer questions from all use-cases. Use this tag to ask your question here.

70 questions
0
votes
1 answer

Zend_SOAP can't generate WSDL with 2 PHP classes with the same name

I must generate a PHP class for the SOAP following a WSDL specification, and this WSDL has 2 different complex types like this (one is called "method1" and the other "Method1"):
user1695700
  • 71
  • 2
  • 12
0
votes
1 answer

Zend_Soap_Server or Zend_XmlRpc_Server

I need to implement webservice for a mobile application. I am using Zend Framework. I know we have Zend_Soap_Server and Zend_XmlRpc_Server. Which should I prefer. Client is concern about security. After reading here I think it is SOAP. But when to…
Kiren S
  • 3,037
  • 7
  • 41
  • 69
0
votes
2 answers

zf 1.9.6 zend_soap: Function ("doString") is not a valid method for this service

Duplicate of this question I'm trying to work with Zend_Soap using zend framework 1.9.6 and php 5.3.1. soap.php (wsdl generator)
ufk
  • 30,912
  • 70
  • 235
  • 386
0
votes
1 answer

Zend Soap Autodiscovery Allow Array - Web Service

I am new to WebServices in General, and so far I have developed a Web Service SoapServer using Zend/Soap. I have been able to use it just fine, the problem is, that i want the client to be able to send the data as and array . So far this is what i…
dazuaz
  • 23
  • 5
0
votes
3 answers

Zend SOAP Server SOAP-ERROR:Parsing WSDL: Couldn't load from 'X' : failed to load external entity 'X"

WSDL SOAP-ERROR: Parsing WSDL: Couldn't load from…
aaronp
  • 23
  • 1
  • 7
0
votes
1 answer

PHP SoapClient nor Zend_Soap_client return nothing

I am trying to build a simple webservice, and am running accross a situation. I don't know what I am doing wrong so that I can't grab the values returned by soap server. I have a Zend_Soap_Server and a Zend_Soap_Client inside my…
Gilberto Albino
  • 2,572
  • 8
  • 38
  • 50
0
votes
1 answer

Zend SOAP with Doctrine 2.1 Problems FLush , Soap__ unknown error

i made a soap client and server and have added a sample class, that returns results from doctrines find by methods. however, when i change this to persist or flush objects, the error: my soap server: (soap controller) public function server() { …
dean jase
  • 1,161
  • 5
  • 23
  • 38
0
votes
1 answer

Reading data with Zend_Soap_Client

I am new to Zend_Soap_Client. I have the following code as an example, and I try to understand what is behind it. Do I understand correctly that it connects to remote server and reads specified data? Finally, as far as I understand, it is supposed…
Klausos Klausos
  • 15,308
  • 51
  • 135
  • 217
0
votes
1 answer

Zend WebService SOAP, fetching data from Model raise an exception

I have implemented a webservice using ZF (tutorial : http://benjaminprevot.fr/2010/06/16/produire-un-webservice-soap-avec-zend-framework/ [french]) the original tutorial works fine, but I dont know why when i call getDetections() in the server side…
Salem
  • 331
  • 1
  • 7
  • 21
0
votes
1 answer

How to add the namespace to all elements that get returned WSDL / SOAP

I'm fairly new to the SOAP and WSDL world. What do I have to do, to make sure that the namespace will always be in the return-element?
Kel
  • 309
  • 1
  • 8
  • 25
1 2 3 4
5