158 questions
0 votes
1 answer
30 views
Embarcadero SOAP Server TRemotable structure memory handling
I am using C++ Builder to build a SOAP Server Application. However, when calling the method, the server application keeps building up memory and I am not sure how to free the allocated memory after ...
1 vote
1 answer
111 views
remove XML from SOAP responses
I am trying to deploy a non-wsdl php soapserver, the code as follows is minimal: function notify($string) { return null; } $server = new SoapServer( null, array('uri' => "http://...
1 vote
0 answers
53 views
Change namespace definition location in SoapServer response
I'm building a web service with soapserver and in the response it shows me the namespace definitions in the envelope section, but the person consuming the web service says that the namespace ...
0 votes
0 answers
40 views
SoapServer parsing string '<' to < in the response while using SoapUI
I am working on a SOAP project and the response is not as expected instead I am getting in this format with < in place of '<' <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas....
0 votes
1 answer
39 views
Creating a SoapServer response to a SoapClient without a WSDL in PHP
In order to communicate with vending machine, I have to accept their SOAP requests and respond in the proper format. To dos this, I am using "soapServer" in PHP. My problem is I do not have ...
0 votes
2 answers
532 views
How do I get a client's IP address from inside a soap service?(nodejs)
I am written a soapService using the soap package, I'm passing an express server to it. The problem is that the server can get requests from 2 different network interfaces, and I want which one the ...
1 vote
1 answer
138 views
XML tags match but namespaces differ
I am trying to setup a Soap connection between a server in php and a client in C. My server is using a working wsdl file and a class to add these methods. I can confirm with Wireshark that my client ...
0 votes
1 answer
119 views
Unable to use ByteArray value received
I'm developing a soap web server with spyne. I've defined the following method inside a Service class: @rpc(String, String, String, String, String, DateTime, String, String, String, Integer32,...
1 vote
0 answers
93 views
add SoapHeader after SetClass in SoapServer in PHP
i have a class that set in $obj->setClass() to handle requests in SoapServer . but now i need to set some soapHeader inside that class. How i can set SoapHeader inside that class or access the ...
0 votes
0 answers
446 views
.Net WCF service with Soap 1.2, no addressing. How to force the SoapAction to be read from a different header node
We are working with .NET with a 3rd party which has requested that we expose a WCF Endpoint with SOAP 1.2 without addressing. They, however, indicated that it is a custom implementation which they ...
1 vote
1 answer
402 views
How do i set username and password in a soap server?
I need to add credentias for my soap server, but i don't have much experience in this. What i have to use for add the user and password? <?php require_once "vendor/econea/nusoap/src/nusoap.php&...
1 vote
1 answer
526 views
WebModule in Delphi SOAP Application Server
Given that the each request message spawns a separate thread, and separate instances of the Web module and its contents are created dynamically for each thread, I added a FDConnection and FDQuery to ...
0 votes
1 answer
494 views
php soap server inside docker does not return response
I have a php web service API working the last 5 years. I was asked to dockerize it. So I have setup my docker container. All the code works fine, except the response my soap server returns. All the ...
1 vote
0 answers
428 views
Uncaught SoapFault exception: [soap:Server] Server was unable to process request
i use this PHP Code : <?php ini_set("soap.wsdl_cache_enabled", "0"); $AccountShabaCode = "123456789012345678900000"; $WorkTitle = "Example"; $...
0 votes
0 answers
17 views
PHP SoapServer - get caller's IP [duplicate]
I got the following problem - I am trying to make a web service in PHP, which needs to find out from which IP the request was done and store it. Right now, code looks like this: function ...