source2wsdd:和XDoclet的wsee任务类似,根据在程序里面设定的标记来生成web-services.xml。也就是WSDL。
- @wlws:webservice,used in the Javadoc for the class that implements your Web Service.
- @wlws:operation, used in the Javadoc for a method that you want to expose as a Web Service operation.
- @wlws:part partname, used in the Javadoc for a method that has been exposed as an operation and you want to customize the description of its parameters and return values
即使你不使用任何标记,source2wsdd任务也会自己分析源代码进行猜测。例如servicename等。
****************************************************************************************
autotype:Generates the serialization class, Java representation, XML Schema representation, and data type mapping information for non-built-in data types used as parameters or return values to a WebLogic Web Service.
- weblogic.ant.taskdefs.webservices.autotype.AutoTyper?
- webservices.jar
****************************************************************************************
clientgen:Generates a client JAR file that contains a thin Java client used to invoke a Web Service.
- weblogic.ant.taskdefs.webservices.clientgen.ClientGenTask
- webservices.jar
****************************************************************************************
wsdl2service:Generates the components of a WebLogic Web Service from a WSDL file. The components include the web-services.xml deployment descriptor file and a Java source file that you can use as a starting point to implement the Web Service.
- weblogic.ant.taskdefs.webservices.wsdl2service.WSDL2Service
- webservices.jar
****************************************************************************************
wsdlgen:Generates a WSDL file from the EAR and WAR files that make up the Web Service.
- weblogic.ant.taskdefs.webservices.wldlgen.WSDLGen
- webservices.jar
****************************************************************************************
wspackage:Packages the components of a WebLogic Web Service into a deployable EAR file.
- weblogic.ant.taskdefs.webservices.wspackage.WSPackage
- webservices.jar
****************************************************************************************
posted on 2005-08-24 11:13
Smokingcat 阅读(303)
评论(0) 编辑 收藏 所属分类:
java