Schema Validation of SOAP in Postman

Hello Everyone, I am using Postman for few months for testing REST API. Now we have a requirement for testing SOAP requests/responses.

I wanted to know whether we have any way to validate the schema of the SOAP responses?

Like the same way we do for any REST like below:

pm.test(‘Schema is valid for the generated Test Data’, function(){
pm.response.to.have.jsonSchema(schema);
});

Appreciate the responses :slight_smile:

1 Like

@odanylewycz Do you have any idea on this?

Hi @bpricilla,

To my knowledge, there isnt a direct way to validate SOAP Schema in Postman. It’s utilized more around JSON services, so you won’t see many things around XML.

However, since Postman is built off node.js, you might be able to use a node.js library thats not included in Postman. Below is a node.js library that could be used to validate xml schema. I have not personally used it, but I searched npm and its what I found.

I have also not tried to use different external libraries that are not within Postman, so I am not sure how this would work (or even it if would work), but figured I’d throw around the idea.

Hope this helps!

Orest

1 Like

Thanks for your effort :slight_smile: Will check this out!!

1 Like

@bpricilla Hi There, did you find any solution to validation schema validation of SOAP in postman. Please help me if you find any.

TIA

@bpricilla , Have you found a way to do XML schema validation in postman? Please help to reply