DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14844>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14844 SOAP Array deserialization bug [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From [EMAIL PROTECTED] 2002-12-03 13:48 ------- Tried the GlobalWeather service just now...(info http://www.capescience.com/webservices/globalweather/index.shtml) using latest axis cvs. Works fine. ------------------------------------------------------------------------------- GlobalWeather_ServiceLocator locator = new GlobalWeather_ServiceLocator(); StationInfo info = locator.getStationInfo(); com.capeclear.www.Station[] stations = info.searchByCountry("India"); for(int i=0;i<stations.length;i++){ System.out.println("Station["+ i +"]:=" + stations[i].getName()); } ------------------------------------------------------------------------------- Thanks, dims