Tagged Questions
The zend-soap tag has no wiki summary.
2
votes
1answer
74 views
how to use Zend_Soap_Client in windows server
I downloaded Zend framework, to my windows server...
now I tried to use it with this code:
// generate secret auth token
require_once 'Zend/Soap/Client.php';
$soapClient = new ...
2
votes
1answer
269 views
Zend_Soap : How to define return type struct in doc block?
I have a Web service set up using Zend_Soap, and some public methods in that Web service.
The fact is i want to return a complex type.
For instance, if i want to return a bidimensional array, like a ...
1
vote
1answer
24 views
Create SOAP request with element attribute using Zend_Soap_Client and stdObject
I'm calling a service witch among many other parameters demands an entry like (Taken from soapUI):
<v110:ReadWorkerRequest>
<v111:Key v111:type="INITIALS">RKM</v111:Key>
...
1
vote
1answer
61 views
Zend soap call for method with hyphen
I rewrite soap client file using Zend framework.
This is old method. it is working.
function getBassaService(){
global $service;
$h="127.0.0.1";
$p="8000";
if($service==null){
...
1
vote
1answer
58 views
How to use dependency injection with Zend_Soap_AutoDiscover
I'm trying to use a dependency injection container for the first time in a project, but I just discovered a problem that I'm not sure how to address.
The project provides a SOAP web service, which is ...
1
vote
3answers
652 views
Zend_Soap_Client error calling ASP.net web service: '…not set to an instance of an object'
I'm trying to use Zend_Soap_Client to communicate with an ASP.net web service. Here's my client call:
$client = new Zend_Soap_Client(null, array(
'location' => ...
1
vote
1answer
506 views
Can't handle errors in PHP's SoapServer->handle() method
I've created a WSDL-based SOAP web service using PHP 5.3. I'm using Zend Framework to handle the service, and ZF in turn is layered atop PHP's built-in SoapServer class.
In testing with SoapUI, I ...
1
vote
5answers
1k views
nuSoap or Zend Soap? [closed]
I would like to know the differences between nusoap and ZendSoap, which is the best? what benefits and disadvantages of each? Anyone who has used both technologies could make this comparison?
Thank ...
0
votes
1answer
72 views
modifying Zend_Soap_Server response
I want to modify the response that is sent when I am implementing a SOAP server using Zend_Soap_Server. I want to change the response that will be sent back because I am implementing the SOAP server ...
0
votes
1answer
601 views
How to send raw xml to SOAP server using Zend_Soap_Client?
I'm traying to send a raw request to a SOAP server. The only way I found to do this is creating a redundant Zend_Soap_Client_Common in order to invoke _dorequest. Is really that necessary? Is there ...
0
votes
0answers
111 views
Error when overriding Zend Framework Soap Client __call method
I am overriding Zend_Soap_Client's __call method just to allow me to do some mundane data preparation before I call the SOAP method but I keep getting an Exception from the server. If I make the same ...
0
votes
2answers
576 views
Set Timeout SOAP client (Zend Framework)
I'm requesting a webservice using SOAP for which I need to set a request timeout.
new Zend_Soap_Client(http://www.aaa.com/ws/Estimate.asmx?wsdl",
array('encoding' => ...
0
votes
1answer
136 views
Zend_Soap client and SoapServer UTF-8 encoding problem
The site works on one server and DB on the other server. When I enter on site text to submit to DB on non english letters, it saves and ther render corect. For example if I enter "Привет Всем" I will ...
0
votes
1answer
782 views
Zend Soap Server with wsdl autodiscovery doesn't work as expected
I'm trying to create a web service with Zend_Soap_Server in wsdl autodiscovery mode, but I obtain very strange effects... here the code:
server:
<?php
require_once('Zend/Soap/AutoDiscover.php');
...
0
votes
2answers
1k views
SOAP - nillable=“true”
I am building a web service using the Zend Framework. I am using the Zend_Soap_AutoDiscover class for the generation of my WSDL. I am using various complex type in this web service form example:
...
0
votes
1answer
173 views
receiving this msg from zend: 'Zend_Soap_Client_Exception' with message 'Invalid URN'
does anyone know what this means
im doing a pretty simple call here in my indexAction -
private $wsdl = "https://mywsdlserver.com/open?wsdl";
$options = array(
...
0
votes
3answers
860 views
How to generate a wsdl using zend soap
I'm trying to generate a wsdl file using the autodiscover class from the Zend framework. The resulting definition doesn't seem to become available and subsequent functionality doesn't work.
Below is ...
0
votes
1answer
67 views
Zend_Soap_Client switch from WAMP to LAMP and params won't set properly
All the required libraries are set for soap. I'm using standard WSDL. Moved my code to the LAMP (RedHat Enterprise).
$params = array(
'test1'=>'Testing',
'test2'=> '1'
);
...
0
votes
2answers
384 views
Zend SOAP Server - Implementing a pre-existing WSDL to support a client
QuickBooks Web Connector is a Windows client that can communicate with a SOAP server to synchronize QuickBooks data. They supply a QuickBooks Web Connector WSDL file which defines the functions ...
0
votes
3answers
375 views
How change name in WSDL generated by Zend_Soap_AutoDiscover
I am trying connecting PHP soap server with client written in C#.
WSDL is created in that way:
$autodiscover = new Zend_Soap_AutoDiscover('Zend_Soap_Wsdl_Strategy_ArrayOfTypeComplex');
...
0
votes
1answer
440 views
Return object with Zend_Soap
I would like to return an object using Zend_Soap. I also want the object given in the WSDL file. But I can't get both to work together. It's either one or the other.
1. WSDL working, but object not ...
0
votes
2answers
858 views
Zend_Soap - Error parsing WSDL: Start tag expected, '<' not found
For the same WSDL, which is totally valid, I am able to access it properly using PEAR SOAP like this:
$WSDL = new SOAP_WSDL($this->wsdlUrl);
$proxy = $WSDL->getProxy();
But not able to make ...
0
votes
1answer
751 views
Zend Soap Client error: Failed to enable crypto
Hey guys, I'm using the Zend Soap Client library to consume a webservice, like this:
$wsdl = "path_to_wsdl_file";
$client = new Zend_Soap_Client($wsdl);
$client->nfeRecepcaoLote();
And I'm ...
0
votes
0answers
622 views
Zend Soap Server - complextype
I'm using the Zend Framework's Soap Server module and I'm looking to return a complex type that looks like the below, but for the life of me, I can't figure out how to do this...
Desired Output
...
0
votes
1answer
370 views
How to enable SOAP on a web-hosting that don't support SOAP
In my php5 web-application i use zend mailMerge for constructing doc/pdf files from user data. Unfortunately, when i write a code, browser throws me an error:
"Uncaught exception ...
0
votes
0answers
323 views
Zend_Soap_Client call not working bu service works in plain php
Hi I am trying to use SOAP for the first time. I have searched for and found tutorials that explain it well and I was able to make it work in plain PHP. However building this into my Zend Project ...
0
votes
1answer
576 views
PHP - Zend Soap Request to .NET SOAP Server
I'd like a little bit of assistance here.
I am trying to send a request to a .NET SOAP server from PHP with Zend.
I have the WSDL file but it does not contain any header information.
Though I have ...
0
votes
1answer
622 views
Working with Zend Soap classes and auto WSDL
Something very strange.
WSDL file generates fine. Here is source simple class
class SoapTest
{
/**
* Prapapapapapapap
* @return string Bls bls
*/
public function getList()
...
0
votes
2answers
755 views
How do I remove the namespaces in Zend_Soap?
I am trying to use the tranlsation webservice from MyMemory: http://mymemory.translated.net/doc/spec.php
Unfortunately, Zend_Soap_Client does generate an XML reqest object that is not recognized by ...
0
votes
1answer
2k views
zf 1.9.6 zend_soap: Function (“doString”) is not a valid method for this service
I'm trying to work with Zend_Soap using zend framework 1.9.6 and php 5.3.1.
soap.php (wsdl generator)
<?php
require_once('Zend/Soap/Server.php');
require_once('Zend/Soap/AutoDiscover.php');
...
0
votes
1answer
1k views
SoapFault exception: [VersionMismatch] PHP Zend
I'm getting this error while I was implementing and testing PHP webservice using Zend Soap.
I'm testing the same codes under 2 different protocols(http & https) in 2 different web servers.
http ...
-1
votes
3answers
167 views
PHP script ending prematurely
My site has a php page that prints out XML, for some reason though it's being truncated to 8KB in size, I've never encountered this before and all the other pages on the site remain un-truncated.
...