Questions tagged [soapserver]
154 questions
1
vote
1 answer
Errors while implementing SOAP Web service with PHP
I have to implement a SOAP Web Service using PHP.
I did it by using the SoapServer class and all works fine.
I need to use a specific format for the request: they have to contain a "Header" tag with an "Authentication" tag in which there is a token…

J.G.
- 13
- 3
1
vote
0 answers
I'm using moodle with WSDL and Nusoap but I cannot connect because I have errors in my code
obtenerDatosCentro.php code

wondo1996
- 11
- 1
1
vote
0 answers
How to check JAX-WS output from the URL
I create a jax-ws service for get some data.I user tomcat 8.5.11.. The web service works fine and when I put the URL the WSDL shows and it previews all web methods... But it doesn't preview the output(XML) of each methods. How can I preview the…

vidarshana
- 80
- 3
- 12
1
vote
0 answers
PHP SoapServer - Multiple return values
I have a SOAP server with a method that returns a boolean indicating success and a string indicating an error message (empty on success). The WDSL file defines this as follows:

Virus721
- 8,061
- 12
- 67
- 123
1
vote
2 answers
Call multiple methods in mongosoft soap server in yii2
Hi all please help me to do this
I create a controller in yii2 for soap server. I am using mongosoft soap server for this. I can call a sing function using this and my requirement is to call multiple method call using same controller.
Here below i…

Vinai Raj
- 151
- 2
- 15
1
vote
3 answers
SOAPUI error: does not close tag
When starting a SOAPUI SOAP project (from my local computer) using the following URL (on a server in my own network):
http://myinternaldomainname/test2?wsdl
The following error occurs:
Error loading [http://myinternaldomainname/test2?wsdl]:
…

Arthur
- 921
- 3
- 13
- 25
1
vote
2 answers
WSSE Security PHP SoapServer- Header not understood
I have a client call with a WSSE Security Header:

Mutatos
- 1,675
- 4
- 25
- 55
1
vote
0 answers
Zend framework 2 Soap Server doesnt return response
I am trying to create a soap server with zend but when i try to make a request with Postman, I always receive 'Could not get any response'. In non-wsdl mode it works fine.
Please help!
public function wsAction()
{
if (isset($_GET['wsdl'])) {
…

natso17
- 11
- 1
1
vote
0 answers
node-soap how to response a mesage(from server) using soap version 1.2
I'm using node-soap library.
my project working with soap version 1.2 from the server side.
The problem is when im response a message to the client.
I made a debugging in node-soap library and i saw that the namespace of soap was built hard…

ariel netanya
- 11
- 3
1
vote
0 answers
php soapserver: Can't import external schema
I am implementing a PHP SOAP server using a third party wsdl. The included xsd has an reference to the external schema as bellow:

GBhat
- 37
- 6
1
vote
0 answers
org.xml.sax.SAXException: Deserializing parameter 'req': could not find deserializer for type {http://localhost:1111/WebService}Request
I created a java application (using quickserver) that will run a soap web service without an application server. I successfully created one and was able to access the wsdl file http://localhost:1111/WebService?wsdl on my browser, but when I use…

R.S. Abarro
- 67
- 1
- 2
- 12
1
vote
1 answer
PHP class constructor argument provided by the client soap
I have a bunch of SOAP servers serving a php class and a client accessing those servers. The served php class makes connection to a local database and this connection is setup in the construtor method.
I saw you can set arguments to the constructor…

Luiz de Andrade
- 33
- 6
1
vote
0 answers
Symfony - Besimple issue with a complex type
I recently beginning to develop with symfony. I just create a soap server with besimple.
This is my code.
config.yml - Server
be_simple_soap:
services:
Gremios:
namespace: http://att/app_dev.php/ws/Gremios
…

jotamolas
- 11
- 4
1
vote
1 answer
Mindbodyonline Checkoutshoppingcart API
I am getting some issue in mindbodyonline API , While intigrating CHECKOUT Shoping CART API,
Here is my API Code
$mbResult = $mb->CheckoutShoppingCart(array(
'Test' => false, // Here
'ClientID' => 100015377,
// …

Niraj Kumar
- 69
- 7
1
vote
1 answer
Multidimensional array as one of parameter for SOAP request
How to use multidimensional array as on of parameters in SOAP-client for making soap-request ? For my work i used NuSOAP v1.123.
Code that below works fine with simple array, but with multidimensional does not.
So my code in…

L6go1as
- 39
- 9