Questions tagged [soapserver]

154 questions
0
votes
1 answer

How to transfer SESSION created in soap server to soap client code?

I've created a non-wsdl soap server with PHP to run functions from all servers I own. There are bunch of problems on this as you can see from my profile but this I hope is solvable. I cannot transfer SESSION data between server and client. Already…
ValDiMagra
  • 73
  • 1
  • 8
0
votes
0 answers

How to add namespace to SOAP response?

My SOAP server is returning the following response:
Sarvar Nishonboyev
  • 12,262
  • 10
  • 69
  • 70
0
votes
1 answer

PHP SOAP Server response in XML format

I'm creating SOAP web service using PHP. Here is my code.. SoapServer.php class server{ public function RegisterComplaint($strInputXml){ $str = "09865678"; …
Mak_091
  • 187
  • 1
  • 2
  • 14
0
votes
1 answer

PHP SoapServer return empty response on function without return

i have a soap with a method that return nothing class mySoapService { foo(){ } } $wsdl = ...; $soapService = new mySoapService(); $soapServer = new \SoapServer($wsdl); $soapServer->setObject($soapService); $soapServer->handle(); // write…
ar099968
  • 6,963
  • 12
  • 64
  • 127
0
votes
1 answer

PHP SoapServer return empty xml document (empty string)

handle() from SoapServer return empty xml document (empty string). My code is basically: $soapService = new soapService(); $soapServer = new \SoapServer('/path-to/my.wsdl'); $soapServer->setObject($soapService); …
ar099968
  • 6,963
  • 12
  • 64
  • 127
0
votes
1 answer

Returning array of array in nusoap

I'm developing a web service in PHP with NUSOAP and i have found the way to return an array. But what i'm trying to do his to return an array with array within. Example of array that i'm trying to return : $return = array( 'lastName' =>…
Jethro
  • 1
  • 4
0
votes
1 answer

How to use gowsdl to connect with soap server?

I'm just starting with golang and SOAP service. I want to connect with SOAP server using gowsdl. I've generated with gowsdl and got myservice.go. What do I need to do next?
0
votes
2 answers

Soap server return string

When i sending request by __doRequest (xml) method on return from soap server i get string string(490) " 0Message0000 " when i pass array by __soapCall i get exactly that i want, xml object object(stdClass)#2 (2) { ["Headers"]=> …
sebastian
  • 149
  • 1
  • 4
  • 13
0
votes
0 answers

SOAP Request data is not going to External System in SpringBoot

I am trying to send request data to external soap server but data is going to null in the request to External Soap Server. Please find the code as below: UserListResponse response = null; @PayloadRoot(namespace = NAMESPACE_URI, localPart =…
Rajeswari Reddy
  • 193
  • 1
  • 6
  • 24
0
votes
0 answers

PHP soap server strange behaviour when dealing with booleans

There is a strange behaviour we´re facing with a PHP soap server. The WSDL contains a simple xsd boolean element. A simple soap request with value false (only false!) for this field sometimes ends with null inside the std class/property that is…
DehMotth
  • 679
  • 3
  • 12
  • 21
0
votes
0 answers

"No adapter for endpoint" with class marked @XmlType as return type

I have problem with implementing SOAP Web service with spring-boot. I have class @Endpoint public class EndpointPortTypeImpl implements EndpointPortType { @PayloadRoot( namespace = "...", localPart = "getReq") …
talex
  • 17,973
  • 3
  • 29
  • 66
0
votes
0 answers

Why the SOAP server returns no values as they are specified in the function server

I have a function on the SOAP server that returns a two dimensional array example (A function which returns an associative array where one field is a two-dimensional array): function example_function($id_array){ $res = array("errors" => false,…
Zimovik007
  • 833
  • 2
  • 8
  • 16
0
votes
1 answer

Entity in the header of a SOAP message is interpreted as an operation

I need to implement a gateway in php that receives calls in SOAP. The WSDL of the web service is not very complicated. Next I expose an extract of the same one.
Sergio Sánchez Sánchez
  • 1,694
  • 3
  • 28
  • 48
0
votes
1 answer

How to dump SoapServer request for debug in laravel?

There is method getLastRequestHeaders() and getLastRequest() for soapClient.But how can i dump last request in my soapServer in laravel?
0
votes
1 answer

Create WSDL File For SoapServer EndPoint PHP File

i wanna create wsdl file for my php end point. this is my php end point class with two function: class server{ private $UserIdSender; private $UserIdReciver; private $Title; private $Body; private $BoardId; private $obj_ticket; private…