2,255 questions
1 vote
1 answer
145 views
How to load an SSL key from string for PHP SoapClient? [duplicate]
I need to load a PEM SSL key to my SoapClient php class. Currently I have to make a temporary file, store the key inside, open the client with the path of the key file and then clean the temp file at ...
1 vote
1 answer
77 views
Extra characters on php soapclient request XML
Yet another problem with PHP soapclient, I hope someone can show me the correct way of doing this: Here is a portion of the parameter array to keep things simple: $params = array ( '...
0 votes
1 answer
88 views
PHP SoapClient using white spaces [duplicate]
The WSDL requires the following parameters: <soapenv:Body> <cai3:Set> <cai3:MOId> <gsm:param1>?</gsm:param1> </cai3:MOId> <cai3:...
0 votes
2 answers
70 views
PHP SoapClient doesn't receive all SoapFault data
When I send a request to a Webservice using SoapUI, it will occassionally throw various SoapFault errors, i.e. when the searched for customer doesn't exist. In the XML these usually include a <...
0 votes
1 answer
86 views
Flutter Dart SOAP service: UK NationalRail OpenLDBWS envelope generation
Please excuse my shallow knowledge of WSDL and SOAP, this is the first time I'm working with it. I'm trying to send a query to UK's National Rail live train timetable (https://realtime.nationalrail.co....
0 votes
1 answer
54 views
Unable to create envelope from given source Sabre GetElectronicDocumentRQ Request
I am trying to make a SOAP client for GetElectronicDocumentRQ Sabre. Edit : Request works in postman This is the C# code I'm trying to use: try { // No more boilerplate needed with top level ...
1 vote
1 answer
51 views
Missing header 'entityType' for method parameter type [class java.lang.String]
I'm migrating an existing java 8 application to java 21. This app calls a web service via a client. After migrating the main app and the client to java 21, I got the following error when the app is ...
0 votes
0 answers
34 views
JAXWS and ApacheAxis2 not able to colive in dependencies
Due to some unavoidable reasons, I have both JAXWS-2.3.1 and ApacheAxis2-1.6 in my dependencies. I have written code using JAXWS to call SOAP API. I’m encountering an issue when trying to call a SOAP ...
0 votes
0 answers
29 views
Soap Login with PHP
I have check and read a lot of questions and answers about how to make a soap login, but I don't get work my code. I have try with php SoapClass $context = stream_context_create([ 'ssl' => [...
0 votes
0 answers
126 views
HttpClientConnectionManager connection not reusing tcp connection when connecting to https endpoint
I am connecting to a SOAP service using a client built with Spring WebServiceGatewaySupport. However, I noticed that the TCP connection is closed after every request/response cycle. Upon further ...
0 votes
0 answers
120 views
How can I filter with a datetime a Sage X3 Soap Webservice export?
I'm doing data export with a Sage X3 SOAP Webservice. I can add "I_TCRITERE" into my request and I'd like to export only recently updated rows, but I'm not able to find the right X3 syntax ...
0 votes
0 answers
22 views
PHP SoapClient acting different when decoding local file vs remote URL of same WSDL file
<?php $services = array( 'AccessManagement', 'UsageReporting', 'RemoteRecorderManagement', 'UserManagement', 'RemoteRecorderManagement', 'SessionManagement' ); ini_set("soap....
2 votes
2 answers
125 views
How to add Authorization header to SOAP request with THTTPRIO in Delphi XE7?
I use THTTPRIO in Delphi XE7 to get data from a SOAP server. I try the request with SoapUI without a problem. POST /ClientServices/ClientServPort.svc HTTP/1.1 Accept-Encoding: gzip,deflate Content-...
0 votes
0 answers
69 views
Calling SOAP API using java
Hi I'm trying to call a SOAP Api from java, which tries to connect using tenantid, username, password, roles. package com.virima.test; import javax.xml.soap.*; public class SOAPClient { public ...
1 vote
0 answers
568 views
How to set soap version to 1.2 for a web service client using spring-ws-core?
My client is using org.springframework.ws:spring-ws-core:4.0.11, which internally relies on Jakarta XML Web Services (JAX-WS). I need to generate a client proxy for a web service that supports both ...