You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Glen Mazza (JIRA)" <ji...@apache.org> on 2010/10/25 17:17:24 UTC

[jira] Updated: (CXF-3093) WSDLDocumentation annotation, Placement.BINDING not working

     [ https://issues.apache.org/jira/browse/CXF-3093?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Glen Mazza updated CXF-3093:
----------------------------

             Component/s: Core
             Description: 
For the WSDLDocumentation annotation, documentation added at the binding level is not working--the first two WSDL comments below will appear but the "My binding doc" meant for the wsdl:binding will not.

package service;

import javax.jws.WebService;
import org.apache.cxf.annotations.WSDLDocumentation;
import org.apache.cxf.annotations.WSDLDocumentationCollection;


@WebService
@WSDLDocumentationCollection(
      {
              @WSDLDocumentation("My portType documentation"),
              @WSDLDocumentation(value = "My top level documentation",
                                 placement = WSDLDocumentation.Placement.TOP),
              @WSDLDocumentation(value = "My binding doc",
                                 placement = WSDLDocumentation.Placement.BINDING)
          }
      )                        
public interface DoubleItPortType {
   public int doubleIt(int numberToDouble);
}


       Affects Version/s: 2.3.0
    Estimated Complexity: Moderate
                 Summary: WSDLDocumentation annotation, Placement.BINDING not working  (was: WSDL )

> WSDLDocumentation annotation, Placement.BINDING not working
> -----------------------------------------------------------
>
>                 Key: CXF-3093
>                 URL: https://issues.apache.org/jira/browse/CXF-3093
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.3.0
>            Reporter: Glen Mazza
>            Priority: Minor
>
> For the WSDLDocumentation annotation, documentation added at the binding level is not working--the first two WSDL comments below will appear but the "My binding doc" meant for the wsdl:binding will not.
> package service;
> import javax.jws.WebService;
> import org.apache.cxf.annotations.WSDLDocumentation;
> import org.apache.cxf.annotations.WSDLDocumentationCollection;
> @WebService
> @WSDLDocumentationCollection(
>       {
>               @WSDLDocumentation("My portType documentation"),
>               @WSDLDocumentation(value = "My top level documentation",
>                                  placement = WSDLDocumentation.Placement.TOP),
>               @WSDLDocumentation(value = "My binding doc",
>                                  placement = WSDLDocumentation.Placement.BINDING)
>           }
>       )                        
> public interface DoubleItPortType {
>    public int doubleIt(int numberToDouble);
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.