I’m using the globus toolkit for a project. In my service i have a resource: a string array. I want to get this resource from an Android client. How can I do that? How can I describe in the wsdl file the type “array of string”?
Thank you.
I’m using the globus toolkit for a project. In my service i have a
Share
I guess you’re looking for this
Source: http://www.activebpel.org/samples/samples-2/BPEL_Samples/Resources/Docs/arrays.html
UPDATE:
I’ve done a test using NetBeans 7.0.1. The results were this:
Declare a method that receives a String[] parameter:
The WSDL generated a complex type for my method with a String array element
In the client, the IDE generated a
List<String>to consume it:And a method to consume the service
I’ve uploaded both projects in this address