Problem when passing a String array through a proxy service
-----------------------------------------------------------

                 Key: SYNAPSE-431
                 URL: https://issues.apache.org/jira/browse/SYNAPSE-431
             Project: Synapse
          Issue Type: Bug
    Affects Versions: 1.1.1
            Reporter: sumedha rubasinghe


I have a proxy service(MyServiceProxy), which calls an Axis2 Service.
My Axis Service(POJO) implementation is as follows:

MyService{
  public String dosomething(String[] params)
   ....
   ....
  }
}

Point to note is the operation which accepts a String array. 
I issue a REST call to this service using following URL (going directly to Axis 
Server) & it works.

http://<IP>:6060/services/MyService/dosomething?params=ABC&params=XYZ&params=PQR

Take a note of same http parameter name(params) being used with different 
values. This is how Axis2 REST implementation allows us to pass values to an 
array of simple types.

Now I call this service through my proxy service as follows.

http://<IP>:8080/services/MyServiceProxy/dosomething?params=ABC&params=XYZ&params=PQR

Now the service implementation only gets value "PQR". First two values (ABC & 
XYZ) are not coming into Axis2 Service level through Proxy Service.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to