I have a service that accepts a request object that inturn contains an array of Strings. I generated the wsdl using java2wsdl provided in the base_51 runtime of RAD 6.0. From the WSDL i then generated client and server stubs, serialization classes using wsdl2java again from the same runtime bin. I did not tinker around with options, just used the defaults...
I invoke the web service with request containing array of 6 strings, but when the control reaches my service implementation, there is only one string in the array. Has anybody faced a similar scenario? What could be going wrong here?
So from client
When the control reaches the service implementation i see that the length of codes string array is 1 instead of 3 at runtime.
What could i be doing wrong?