URGENT : Consuming apachesoap:Map complex datatype in webservice using .net with webservice methods
- by aaaaaa
web service methods written in java & a method return type is map
how can i get value from map type?
when i call getDetails then it return result properly but
when i call getCit method it return a nothing in response because of map type.
i .net there is no data type like map type
Dim objweb As New WebRef.FetchService
Dim oht As WebRef.Pat
Dim ohtm As New WebRef.Map
oht = objweb.getDetails("17")
ohtm = objweb.getCit(New String() {"21"}, aa, 1)
thx