Easy to use WSDL to PHP code generator. Just enter the address of the WSDL and the application will generate the library that you will use to write your code.
Features
- Easy to use Web Interface
- Object Oriented Classes
Follow Easy WSDL2PHP
Other Useful Business Software
MongoDB Atlas runs apps anywhere
MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
Rate This Project
Login To Rate This Project
User Reviews
-
This saved me from almost giving up, handling a SOAP call with complex types. While I was able passing simple array structures to a SOAP endpoint, I had no idea how to create a deep nested object with an element that was variable. The php docs about SOAP Client are too general, I didn't even know why simple arrays worked in the simple calls while many examples are using objects. With the little knowledge that the wsdl file makes it possible to autogenerate the calls for the methods I started searching for that and ended up with 3 different WSDL2PHP projects where one was vital and under development, but commercial, the other one was a commandline tool with some dependencies I wasn't able to meet and Easy WSDL2PHP which worked almost out of the box (the interface uses short tags that might not work on your server, but it was easy to fix) This script generates all methods and function calls from a WSDL file and after 3 hours trial and error (because I didn't use the Easy WSDL2PHP soap calls initially) I found out that using the generated classmap array, was the key to success. Thank you so so much!