Tagged Questions
0
votes
0answers
134 views
SoapUI - invoking web service with abstract class
Is there any way to make SoapUI work with abstract definitions in my WSDL XSD?
I'm trying to define some test cases for WS we've developed, I'm receiving "Cannot instantiate abstract class ...
1
vote
1answer
608 views
How to access xsd file from a http wsdl url?
I have wsdl URL. But testing it by code is a big ask. So found SoapUI and thought it could mock up data for calling it easily and find the right set of parameters. I saved the wsdl url output from ...
1
vote
1answer
220 views
soapui - warning - No grammar constraints (DTD or XML schema) detected for the document
In my soapui xml, following are the first 2 lines (with whitespace added for legibility).
<?xml version="1.0" encoding="UTF-8"?>
<con:soapui-project name="Project_sample"
...
1
vote
2answers
393 views
XSD validation expects element that it's complaining about
I am having a weird problem on a SOAP response validation. I've hacked down the response and the XSD to the minimum required to reproduce the error. The XSD:
<?xml version="1.0"?>
<xs:schema ...
1
vote
3answers
9k views
soapUI failed to load url error when loading wsdl
I am new to SoapUI and I keep having some weird problems: The main one is that I keep getting the following error when trying to add a WSDL to a new project:
Error loading [https://.../token?wsdl]: ...
-1
votes
1answer
502 views
Removing all namespaces in the xml and valid per wsdl
Again I am back with a question related to the same wsdl, this time wanted to remove all namespaces in the request, and conforming to the wsdl.
The same wsdl tripservice wsdl from the link ,simply ...
1
vote
1answer
999 views
WADL: complex type from external xsd
I need to test authentication procedure using the wadl file below:
<application xmlns="http://research.sun.com/wadl/2006/10"
xmlns:sis="http://sis.thecompany.com/" >
<grammars>
...
0
votes
1answer
1k views
SOAP UI: Can I add assertion to validate with local XML Schema file?
I have created a Web Service (with Java, Axis). Depending on the content of the request, the response may have a different XSD. So, the WSDL only specifies that the response is of a generic XSD, and ...
2
votes
1answer
7k views
SOAPUI: Validate response against xsd schema file
How can I validate a SOAP response against an XSD file that defines the response schema. the web service I'm calling has an XMLDocument as input and output, so can't use WSDL for response schema ...