The developer who will interact with my web service will require a wsdl. As I understand it, wsdl is for the soap service, and wadl for my rest service. The web service has already been written. How can I get/generate this file?
So, you've just bumped the REST vs SOAP conundrum. =)
There is no practical way to generate a WSDL description for a REST service.
But again, there is not really a good reason to do that, since they're consumed differently.
Your options are:
In either case, you want to document and possibly give examples on how to consume the service. FastAPI already helps to do that with the /docs page, but you may need to better document how it's supposed to be used.
Good luck!
Read more