You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Amila Chinthaka Suriarachchi (JIRA)" <ji...@apache.org> on 2009/01/30 06:37:59 UTC

[jira] Resolved: (AXIS2-4223) RPC Message receiver does not populate arguments properly if one is absent

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

Amila Chinthaka Suriarachchi resolved AXIS2-4223.
-------------------------------------------------


applied the patch

> 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: Axis 2.0 (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.