Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
48 views

I plan to use gSoap in my project to fetch a file (located at an endpoint + URI) from an Interplay Web Services instance. Is there a best practice to go about this? I notice there are several plugins ...
Danny Brent's user avatar
-1 votes
1 answer
83 views

I'm a complete newbie and trying to get data from a SOAP service via SQL query. I tried it first on reqbin.com, there I get the response, it works ok (see pic). With SQL I don't get any data. Does ...
Marcel Lucansky's user avatar
0 votes
1 answer
1k views

I am struggling with trying to register an older SOAP reference in a NET 8 Web API. I added the service reference WCF Reference now I am trying to use it and having some issues. The trouble I am ...
user2208746's user avatar
0 votes
1 answer
31 views

I am implementing the OTA_ReadRQ / OTA_ResRetrieveRS message pair and I have hit a problem. All the other messages I have implemented as paired messages EG: OTA_HotelAvailRQ / OTA_HotelAvailRS I have ...
Steve Farmer's user avatar
0 votes
1 answer
52 views

I want to log information INSIDE of a soap api, using NLOG. But all I am finding is how to setup NLOG so the external website makes a call to the api and it uses NLOG to log the data. I need to see ...
SDanks's user avatar
  • 711
0 votes
0 answers
79 views

I am trying to make a successful call from my "Spring Boot Application" to a SOAP API on the "Azure API Manager". I have defined a WSDL <?xml version="1.0" ...
Skip's user avatar
  • 6,591
0 votes
2 answers
153 views

I'am in a project spring boot with web service soap when i run my application i have this error APPLICATION FAILED TO START Description: Parameter 0 of method getInfo in org.endpoint.EndpointConfig ...
developer's user avatar
0 votes
0 answers
254 views

I try to consume a SOAP WebService on an Android device and it shows the error "Connection failure". On iOS, the error is "dynamic code generation is not supported on this platform"...
Herick's user avatar
  • 1
1 vote
0 answers
22 views

When sending SOAP on php7.4 we had nicely namespaced elements, like this: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://blah/...
mikeyc7m's user avatar
  • 103
-1 votes
1 answer
66 views

I want to log all Request / Response data of a WS communication. I must do the logging (its more dumping the data into a RDBMS) asynchronous to not affect the performance of the WS communication ...
Olli's user avatar
  • 739
0 votes
0 answers
55 views

I'm currently working on integrating a SOAP service into my C# application and I'm having trouble implementing authentication using SOAP headers. I just want to read the username and password from the ...
Remy Sader's user avatar
0 votes
0 answers
45 views

I sent this JSON data to a soap service and it returns Runtime Type Mismatch error. { "username":"blabla", "password":"blabla" } I need to send this ...
imranjust14's user avatar
1 vote
1 answer
52 views

I need to access a web service using C# and so far everything has worked well. Recently they changed the security protocol to TLSV1.2 and so I can no longer access it with the following return: ...
DQL SISTEMAS's user avatar
0 votes
1 answer
1k views

In the Workday system, some integrations produce output files when they run. You can go into Workday's user interface to download these files manually, for example, by running the "Integration ...
DPB's user avatar
  • 23
1 vote
0 answers
50 views

I am executing a request with Node with many characters with a result of "413-Request Entity Too Large", but executing from the Soap UI IDE the result is OK. Tried using without success : ...
Cristian Rodrigo Zenteno's user avatar
1 vote
0 answers
232 views

Issue Summary: My synchronous implementation using the Zeep library works perfectly: from zeep import Client from zeep.transports import Transport import requests session = requests.Session() session....
Simon's user avatar
  • 11
1 vote
0 answers
77 views

I'm configuring a soap service in Django, but when running runserver, it gives me an error from the spyne.six.moves module. Has anyone had this problem or something similar that can help me? The ...
Mateus Epifanio Linhares's user avatar
0 votes
1 answer
65 views

I have a WCF SOAP service to upload documents. It is working fine when debugging it locally but when hitting it from Postman, it is giving error status- 413 Request Entity Too Large for documents of ...
Shikhar 's user avatar
1 vote
0 answers
33 views

For some context, I am using Make.com to send a SOAP API request that will send a fax programatically. I am trying to include an attachment within the XML request body using binary data and base64 ...
Justin Domingo's user avatar
0 votes
1 answer
41 views

I have below XML string which i got in the response of an SOAP API, which i want to convert as Object or Array to use, so i tried both ways, DOM and simplexml_load_string but it shows empty! Here is ...
Mohib Salahuddin Ayubi's user avatar
0 votes
0 answers
72 views

since years we have multiple SOAP interfaces running where the certificate is in .pem format installed in our app. The SOAP suite uses the .pem with the passphrase to connect. Recently the cert is no ...
MAX's user avatar
  • 53
2 votes
0 answers
207 views

I want to encrypt the body of the SOAP XML document. It works perfectly fine with SoapUI, where I use certificate, Subject Key Identifier as Key Identifier Type, AES256-CBC encoding and RSA 1_5 ...
francosy's user avatar
  • 153
1 vote
3 answers
75 views

I am trying to extract data from a SOAP file (XML format) which has many children. the XML_find_all is a great function to get the data from complex structure. However, it is unable to return missing ...
Marcelo's user avatar
  • 59
0 votes
2 answers
41 views

I created a SOAP server in Node.js const soap = require('soap'); const http = require('http'); const XMLWriter = require('xml-writer'); const service = { ImpDispatcherService: { ...
Wernfried Domscheit's user avatar
0 votes
0 answers
258 views

SOAP server requires request with multipart/related content type. Code using System; using System.Net.Http; using System.Text; using System.Threading.Tasks; public class MyController : Controller { ...
Andrus's user avatar
  • 28.2k