You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "nathanleewei (JIRA)" <ji...@apache.org> on 2013/12/19 14:10:08 UTC

[jira] [Updated] (CXF-2866) add "Request" as suffix for getInputMessageName()

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

nathanleewei updated CXF-2866:
------------------------------

    Description: 
in org.apache.cxf.service.factory.DefaultServiceConfiguration, there're 2 funtions: getInputMessageName & getOutputMessageName 

  @Override
    public QName getInputMessageName(OperationInfo op, Method method) {
        return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() );
    }

 @Override
    public QName getOutputMessageName(OperationInfo op, Method method) {
        return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() + "Response");
    }
the getOutputMessageName will append a suffix --  "Response" by default, while getInputMessageName append nothing.

Can we append "Request" as suffix by default?

@Override
    public QName getInputMessageName(OperationInfo op, Method method) {
        return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() + "Request"); /*modified by nathan*/
    }

So that, the generated wsdl looks nicer :)


  was:
in org.apache.cxf.service.factory.DefaultServiceConfiguration, there're 2 funtions: getInputMessageName & getOutputMessageName 

  @Override
    public QName getInputMessageName(OperationInfo op, Method method) {
        return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() );
    }

 @Override
    public QName getOutputMessageName(OperationInfo op, Method method) {
        return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() + "Response");
    }
the getOutputMessageName will append a suffix --  "Response" by default, while getInputMessageName append nothing.

Can we append "Request" as suffix by default?

@Override
    public QName getInputMessageName(OperationInfo op, Method method) {
        return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() + "Request"); /*modified by nathan*/
    }

So that, the generated wsdl will looks nicer :)



> add "Request" as suffix for getInputMessageName()
> -------------------------------------------------
>
>                 Key: CXF-2866
>                 URL: https://issues.apache.org/jira/browse/CXF-2866
>             Project: CXF
>          Issue Type: Wish
>          Components: JAX-WS Runtime
>    Affects Versions: 2.2.5
>            Reporter: nathanleewei
>            Priority: Minor
>             Fix For: Invalid
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> in org.apache.cxf.service.factory.DefaultServiceConfiguration, there're 2 funtions: getInputMessageName & getOutputMessageName 
>   @Override
>     public QName getInputMessageName(OperationInfo op, Method method) {
>         return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() );
>     }
>  @Override
>     public QName getOutputMessageName(OperationInfo op, Method method) {
>         return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() + "Response");
>     }
> the getOutputMessageName will append a suffix --  "Response" by default, while getInputMessageName append nothing.
> Can we append "Request" as suffix by default?
> @Override
>     public QName getInputMessageName(OperationInfo op, Method method) {
>         return new QName(op.getName().getNamespaceURI(), op.getName().getLocalPart() + "Request"); /*modified by nathan*/
>     }
> So that, the generated wsdl looks nicer :)



--
This message was sent by Atlassian JIRA
(v6.1.4#6159)