Amogha Varsha
Amogha Varsha

Reputation: 129

XML test messages validation against custom schema using Soap UI

I have in house developed custom schemas and test messages that are needed to be validated against these schemas in SoapUI, all the research I have done so far hints at SoapUI only validating responses from web services against WSDLs.

I need to know if SoapUI is capable of performing a simple XML vs XSD validation, if yes, How?

Upvotes: 0

Views: 288

Answers (1)

martijn
martijn

Reputation: 495

SoapUi is not the proper tool to perform these tasks. SoapUi can validate request and response xml but it uses the wsdl that was used to create the project. there is no option to just create a xml and assign a xml schema to it.

If you need a freeware xml schema creator / validator tool there several online options or you can download. you can use for instance Eclipse https://www.eclipse.org/webtools/community/tutorials/XMLValidation/XMLValidationTutorial.html

Upvotes: 1

Related Questions