How to generate client PHP code for SOAP using SOAP UI?

23,232

soapUI will not generate PHP code.

Fortunately, in PHP there often isn't a need to generate proxy classes. Instead, use SoapClient and simply call the SOAP methods you need outright. You can find simple examples at various blogs.

If the service with which you're interacting uses lots of complex types, then you may indeed want to auto-generate some PHP code and make use of SoapClient's classmap option.

Share:
23,232
BruneX
Author by

BruneX

Updated on March 01, 2020

Comments