Convert / Use API written for C # / Java with PHP

I have access to an API that I would like to use, but it only has C # / Java documentation. I do not know any of these languages ​​and would like to use the API in PHP. I have access to the WSDL API and I was wondering how can I do this?

I have heard various other ways, such as SOAP calls or converting WSDL to PHP classes. Any information is very helpful. Thank!

+3
source share
1 answer

Until I used Soap's own functions, I used NuSoap with a WSDL document created from a Java system. In general, he worked pretty flawlessly; the only problem was that they changed the authentication methods and I had to make some changes manually. Other than that, I just needed to update the WSDL when they make updates.

If I had a newer version, I would probably just use my own php functions.

+1
source

Source: https://habr.com/ru/post/1788632/


All Articles