0

I have a soapui project that uses a jws endpoint.

I want to try to automate and run the api testing outside of soapui.

Is there a python module that can test jws endpoint?

Vivian Yung
  • 79
  • 1
  • 9

1 Answers1

0

Use the requests module to post the xml requests:

example:

requests.post(
    '<url>.jws',data='<Webservice XML requests>',
     headers={'content-type':'text/xml'}
)
dckuehn
  • 2,427
  • 3
  • 27
  • 37
Vivian Yung
  • 79
  • 1
  • 9