简体   繁体   中英

Associated Class files with a WSDL

Is there a way to get a list of associated class files used to build a web service, using Eclipse, or other utilities?

The service type is a top down java bean web service

I want to know how the WSDL knows what classes to create. And I'm not sure what files to look at.

What I eneded up doing was

  1. Open the .WSDL file in WebContent/WEB-INF/wsdl/
    This allows you to view source, or design view of the WSDL.
  2. Then you click on the desired input or output arrow next to the chart in design view. This will oppen the associated XSD file.
  3. Within the XSD Files, if I find <xs:complexType name="classNameWillBeHere"> tags, these are what the generated classes would have been called.
  4. From there I do a Navigate/Find Type - using the className from the complex type.
  5. The class is returned in the project src folder. (assuming you've already built the web service from the WSDL)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM