[ 
https://issues.apache.org/jira/browse/AXIS2-4223?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12802867#action_12802867
 ] 

gp commented on AXIS2-4223:
---------------------------

Hello everybody,

Does anyone  have any idea why I got parameterNames null ? (this makes this fix 
not to work : "while ((parameterNames != null) && ...")
thanks.
 

> RPC Message receiver does not populate arguments properly if one is absent
> --------------------------------------------------------------------------
>
>                 Key: AXIS2-4223
>                 URL: https://issues.apache.org/jira/browse/AXIS2-4223
>             Project: Axis2
>          Issue Type: Bug
>            Reporter: Amila Chinthaka Suriarachchi
>         Attachments: adb.txt, integration.txt
>
>
> deploy a POJO service which has a method like this.
> public String echoString(String param1, String param2, String param3){
>         System.out.println("Param1 ==> " + param1);
>         System.out.println("Param2 ==> " + param2);
>         System.out.println("Param3 ==> " + param3);
>         return "OK";
>     }
> Invoke the service using browser like this (or using an stub class without 
> giving one argument)
> http://localhost:8080/axis2/services/POJOService/echoString?param1=test1&param3=test3
> this gives an output like this
> Param1 ==> test1
> Param2 ==> test3
> Param3 ==> null
> So RPCMessage receiver does not populate parameters properly

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

Reply via email to