You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@olingo.apache.org by "Michael Bolz (JIRA)" <ji...@apache.org> on 2014/09/01 09:20:21 UTC

[jira] [Resolved] (OLINGO-410) Function invocation with parameters using reflection fails due to reordering of the parameter list when parsing the metadata

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

Michael Bolz resolved OLINGO-410.
---------------------------------
       Resolution: Fixed
    Fix Version/s: V2 2.0.1

Fixed and pushed it for testing into [this branch|https://git-wip-us.apache.org/repos/asf?p=olingo-odata2.git;a=shortlog;h=refs/heads/OLINGO-410_SortedFunctionImportParameterNames].


> Function invocation with parameters using reflection fails due to reordering of the parameter list when parsing the metadata
> ----------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OLINGO-410
>                 URL: https://issues.apache.org/jira/browse/OLINGO-410
>             Project: Olingo
>          Issue Type: Bug
>          Components: odata2-core
>    Affects Versions: V2 2.0.0
>            Reporter: Antonis Theocharides
>            Assignee: Michael Bolz
>             Fix For: V2 2.0.1
>
>
> In order to call a function import method, reflection is used by getting the parameter list from the metadata and calling the Class.getMethod(String name, Class<?>... parameterTypes).
> The problem occurs in EdmFunctionImportImplProv. buildFunctionImportParametersInternal method where a hashtable is used to temporarily store the parameter list and then retrieve them from the EdmFunctionImportImplProv.getParameterNames function. Using a hashtable to store them means that depending on the name of the parameter their order might change when retrieved by an iterator. In result. When getParameterNames is called and passed into the Class.getMethod method if the order of the parameters is wrong an exception is thrown because the signature we are looking for does not exist.
> Proposed solution might be
> @Override
>   public List<String> getParameterNames() throws EdmException {
>     if (parametersList == null) {
>       parametersList = new ArrayList<String>();
>       if(functionImport.getParameters() != null){
>         for (FunctionImportParameter functionImportParameter : functionImport.getParameters()) {
>           parametersList.add(functionImportParameter.getName());
>         }
>       }
>     }
>     return parametersList;
>   }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)