Web services 在WSDL文件中启用SyncMapping-我应该把它放在哪里?

Web services 在WSDL文件中启用SyncMapping-我应该把它放在哪里?,web-services,wsdl,jax-ws,Web Services,Wsdl,Jax Ws,这是我第一次创建异步Web服务客户端。我有我的wsdl文件,但我不知道放在哪里: true 根据研究,这是如何添加的: <bindings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" wsdlLocation="AddNumbers.wsdl" xmlns="http://java.sun.com/xml/ns/jaxws

这是我第一次创建异步Web服务客户端。我有我的wsdl文件,但我不知道放在哪里:

true

根据研究,这是如何添加的:

<bindings
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    wsdlLocation="AddNumbers.wsdl"
    xmlns="http://java.sun.com/xml/ns/jaxws">
    <bindings node="wsdl:definitions">
        <package name="examples.webservices.async"/>
        <enableAsyncMapping>true</enableAsyncMapping>
    </bindings>
</bindings>

真的
这应该是一个单独的文件还是什么?我读过绑定文件,但仍然不知道如何使用它

或者它可以放在同一个WSDL文件中吗

我正在使用wsimport命令生成客户机类