I am converting a SOAP toolkit 3 Vb web service to a .Net web service. I have a requirement where in I want to pass a two dimensional variant array to vb client. I tried the following
1. I looked into the xml produced by the SOAP toolkit 3 for the vb web serive and tried to produce the exact same xml as vb produced in the .Net web service. For some reason Vb did not understand this.
2. I thought of converting the 2 - d array to a single dim array and then convert it back to a 2 d array in the client side. The problem here is the I can pass string[] to vb but not object[]. I need a variant array in vb.
Any suggestions... Jai