You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Benson Margulies (JIRA)" <ji...@apache.org> on 2008/05/01 18:34:55 UTC

[jira] Assigned: (CXF-1533) Clients generated with CXF from java using Aegis DataBinding and SimpleFrontEnd sends the header SoapAction empty. This prevent interaction with oracle soa products wich depends on this header to execute correctly.

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

Benson Margulies reassigned CXF-1533:
-------------------------------------

    Assignee: Benson Margulies

> Clients generated with CXF from java using Aegis DataBinding and SimpleFrontEnd sends the header SoapAction empty. This prevent interaction with oracle soa products wich depends on this header to execute correctly.
> ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: CXF-1533
>                 URL: https://issues.apache.org/jira/browse/CXF-1533
>             Project: CXF
>          Issue Type: Bug
>          Components: Aegis Databinding
>    Affects Versions: 2.0.5
>            Reporter: Simon Paredes
>            Assignee: Benson Margulies
>
> it could be added to org.apache.cxf.service.factory.DefaultServiceConfiguration this implementation of the function getAction():
> public String getAction(OperationInfo op, Method method) {
>         String action = op.getName().getLocalPart();
>         if(StringUtils.isEmpty(action)){
>         	action = method.getName();
>         }
>         return action;
> }
> Wich is a first aproach, of course, but for the simple case it works.
> Actually org.apache.cxf.service.factory.DefaultServiceConfiguration has no implementation for getAction and org.apache.cxf.service.factory.AbstractServiceConfiguration returns null.

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