9,183 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
64
views
Username error with several WSDLs SupportingTokens in Apache CFX / STSClient
I have the following STS-WSDL service part:
<sp:SupportingTokens>
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<sp:UsernameToken wsu:Id="...&...
0
votes
0
answers
43
views
SAP SoapFault without details
a java client send SOAP requests to SAP (ABAP).
In case a field does not match WSDL, the error looks like this:
org.apache.cxf.binding.soap.SoapFault
(UTC-timestamp xxxx; Transaction-ID ...
0
votes
0
answers
42
views
Savon wsdl inclusion breaking Workday SOAP calls
I noticed after updating from savon 2.12.1 -> 2.15.1 that suddenly we started to hit namespace errors, specifically.
(SOAP-ENV:Client.validationError) Validation error occurred. Namespace not found:...
0
votes
0
answers
52
views
How can the classes generated from schema and wsdl files be used in other .NET projects?
I am working on a .NET 3.5 framework project with a WCF service. I generated classes from klm.xsd and abc.wsdl files using the xsd.exe and wsdl.exe tools respectively.
These tools generated the ...
0
votes
0
answers
87
views
All requests made to Spring Boot SOAP web service fail
I have developed a Spring Boot SOAP web service program. It builds and deploys without error. But attempting to send a request to this program always returns an error, and the program logs also do not ...
0
votes
1
answer
203
views
JAXB-maven-plugin Skipping Executions Past Beyond First
Stumbled onto some odd behavior with the org.jvnet.jaxb:jaxb-maven-plugin:4.0.8 plugin, related to multiple executions to generate classes for multiple WSDLs. Each individual WSDL generates classes ...
0
votes
0
answers
65
views
Resolving imports in WSDL for code generation
I'm trying to generate a service from a WSDL that uses imported XSDs. The message types are defined within those imports, but seemingly not taken into account.
I was able to generate code with svcutil....
1
vote
1
answer
123
views
How to convert this WSDL requirement to an OpenAPI schema definition
So I had this wsdl type
<xsd:element name="studentMarks" minOccurs="0"
maxOccurs="1">
<xsd:simpleType>
...
0
votes
0
answers
18
views
Cannot generate "Connected Service" in Visual Studio with the given XML
There's an endpoint for a SOAP connection that gives me this XML. (It's too large to paste into this question.) I'm unable to use this XML to create a "connected service" in Visual Studio ...
0
votes
1
answer
45
views
Problem trying to upgrade AXIS2 to CXF process for creating java objects from WSDL
Trying up upgrade our procedure of generating jar file from wsdl.
We were using AXIS2 and would like to start using CXF with then upgrading of Java on our system.
Using the command line: Caused by {...
0
votes
0
answers
39
views
Having issue with incorrect Content-Length value when using SoapCore
I'm using SoapCore in .Net wsdl service hosted on Azure as app-service.
Client that is consuming it claims it sends incorrect Content-Length value (lower than actual content length), therefore they ...
0
votes
0
answers
36
views
Soap Input validation failure to be reported to host application
xsd contents is as below
<xsd:element name="Tag" minOccurs="1" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base=&...
0
votes
0
answers
21
views
How to manage additional requests in SOAP UI
I received a WSDL file from another team containing a service named Service1. I imported it into SOAPUI, created the request body, and completed the testing.
After a few sprints, the other team added ...
0
votes
1
answer
42
views
Getting node-soap to work with tradetracker soap api
I'm trying to make the SOAP api of tradetracker to use with typescript node-soap. Thus far, I only managed to connect and authenticate using their authenticate method. But as soon as the second ...
4
votes
1
answer
223
views
Why does default XmlSerializer requires dynamic code generation for deserialization?
I have an inserting story with a not less of an interesting question.
So. I am currently making a tool for my company that parses data received from MEX endpoint of a WCF service. Everything is okay ...