Problem generating Java SOAP web services client with JDK tool wsimport from a WSDL generated by a .NET 2.0 application

前端 未结 4 2058
夕颜
夕颜 2021-01-30 08:49

I\'m trying to generate a client for some SOAP web services using the JDK 6 tool wsimport. The WSDL was generated by a .NET 2.0 application. For .NET 3.X applicatio

4条回答
  •  死守一世寂寞
    2021-01-30 09:19

    You are possibly generating all the classes from the WSDL file in the same package. If that is the case, try specifying a different target package for each WSDL file with the -p option of wsimport.

提交回复
热议问题