27,123 questions
0
votes
1
answer
48
views
Using gSoap to fetch a file from an Interplay Web Services instance
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 ...
-1
votes
1
answer
83
views
SQL code check to work with SOAP, problem with getting data
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 ...
0
votes
1
answer
1k
views
How to register a SOAP web reference in .NET 8?
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 ...
0
votes
1
answer
31
views
SOAP XML WSDL with different input and output names in wsdl
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 ...
0
votes
1
answer
52
views
nlog INSIDE of a Soap Api
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 ...
0
votes
0
answers
79
views
Azure API Manager - SOAP pass-through - Base URL and WSDL - Spring Boot
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" ...
0
votes
2
answers
153
views
Parameter 0 of method getInfo in org.endpoint.EndpointConfig required a bean of type 'org.apache.cxf.Bus' that could not be found
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 ...
0
votes
0
answers
254
views
Webservice SOAP ASMX downt work in Android and iOS .net MAUI 8.0
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"...
1
vote
0
answers
22
views
SOAP namespaces missing after upgrade from php7.4 to php8.1
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/...
-1
votes
1
answer
66
views
Performance SOAPHandler handleMessage
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 ...
0
votes
0
answers
55
views
Authentication in SOAP header using C# and SOAP UI
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 ...
0
votes
0
answers
45
views
how to post JSON data to a soap service
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 ...
1
vote
1
answer
52
views
Why am I unable to connect a webservice with tlsv1.2 protocol?
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:
...
0
votes
1
answer
1k
views
Workday: is there an API or other programmatic way to download the output files from an integration event?
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 ...
1
vote
0
answers
50
views
Soap Node - Request Entity Too Large
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 :
...
1
vote
0
answers
232
views
Sync request WORKS Async NOT, SOAP Zeep, httpx and SSL cause sslv3 alert handshake failure (_ssl.c:1000)
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....
1
vote
0
answers
77
views
Error module spyne.six.moves, execute serve Django
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 ...
0
votes
1
answer
65
views
WCF SOAP service to upload documents with base64 string giving error- 413 Request Entity Too Large when hitting it from Postman for documents>50 kb
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 ...
1
vote
0
answers
33
views
Weird dots on page when attempting to create an attachment via fax SOAP API
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 ...
0
votes
1
answer
41
views
Parse simple XML string (SOAP) to PHP Object [duplicate]
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 ...
0
votes
0
answers
72
views
How to SOAP with cert without private key
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 ...
2
votes
0
answers
207
views
Encrypt SOAP XML message with X509SubjectKeyIdentifier in Python
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 ...
1
vote
3
answers
75
views
How to know if the data is missing when using XML find all function in R?
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 ...
0
votes
2
answers
41
views
How to return data in SOAP from Promise
I created a SOAP server in Node.js
const soap = require('soap');
const http = require('http');
const XMLWriter = require('xml-writer');
const service = {
ImpDispatcherService: {
...
0
votes
0
answers
258
views
How to create multipart/related request in ASP .NET
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
{
...