Hi,
I have a little problem(I hope!!!!) using multidimensional arrays of objects in C++.
Here is the description:
Using:
-- Apache Tomcat/4.1.18
-- JVM Version: 1.4.1_01-b01
-- JVM Vendor: Sun Microsystems Inc.
-- OS Name: Windows 2000
-- OS Version: 5.0
-- Axis 1.1
-- Systinet WASP Server for C++ (only to generate the C++ classes from an existing wsdl)
Problem:
Supose we have an array like this:
// [0] - "Some value"
// [1] - [0] - "Value-1"
// [1] - "Value-2"
// [2] - "kjhjkhsdkjfhs"
// [3] - "Value-3"
// [4] - [0] - "Value 4"
// [1] - "Value 5"
This structure is defined in java, deployed on axis and then retreived with WSDLC compiler in a C++ format.
When using this structure to "post" some data to the service the structure "hit" the java function with first subarray NULL:
// [0] - "Some value"
// [1] - NULL
I've tryed to get the structure initialized from the service and then "post" it back. SAME RESULT!!!
Any hint on this problem is very very very appreciated!!!
Best Regards |