I need to convert a web api to web service for client's app to invoke, so i tried to use api management to convert the interface.
But when i tried to creat the web service by importing the wsdl file provided by client, it always fail and tell "invalid wsdl". While when i tried to import another wsdl generated by vs 2022, it was working.
I compared the difference between these two wsdl files, there are a lot of differences. The main difference is there is like "xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" in the one generated by vs 2022, while the similar line in the one provided by client is "xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/".
So i suspect the version provided by client is too old, and api management just support the newest 1.2.
I have tried to search the answer in Microsoft's documentation, but it doesn't mention what is the wsdl version the api management supports.
So can anyone tell me what the reason is?