Thanks a lot Sagara for the update. I got one couple of questions as below :
1. When I create a .aar file using Service Archiver plugin version 1.3.0 (generating service xml automatically) , it is adding the service name before my exception name. For example: My servcie name is AwardServcie, Exception it throws is InvalidInputException. In WSDL fault name is becoming AwardServcieInvalidInputException. Is there a way to avoid adding service name in front of fault name? 2. I created a stub from the generated WSDL using code generator plugin 1.3.0 and it is adding exception0 at the end of name of exception, so my final exception name is becoming AwardServcieInvalidInputExceptionException0 in the stub. Is there any way to avoid this ? Thanks in advance, Hari From: Sagara Gunathunga [mailto:sagara.gunathu...@gmail.com] Sent: Monday, December 12, 2011 8:09 PM To: java-user@axis.apache.org Subject: Re: Array List support in AXIS2 Now Axis2 trunk fully support for Java Collection API and this will be available on 1.7.0 release. You can try with latest snapshots. Thanks! On Tuesday, December 13, 2011, Sathunuri, Hariprasad (US - Arlington) <hsathun...@deloitte.com<mailto:hsathun...@deloitte.com>> wrote: > Hell Everyone, > > > > I have class defined as follows : > > > > public class StateBean { > > public StateBean() > > { > > } > > public String stateName; > > public String stateCode; > > public ArrayList<CountryBean> countryList1; > > public final ArrayList<CountryBean> getCountryList() { > > return countryList; > > } > > public final void setCountryList1(ArrayList<CountryBean> countryList) { > > this.countryList1 = countryList; > > } > > public String getStateName() { > > return stateName; > > } > > public void setStateName(String stateName) { > > this.stateName = stateName; > > } > > public String getStateCode() { > > return stateCode; > > } > > public void setStateCode(String stateCode) { > > this.stateCode = stateCode; > > } > > } > > > > My wev service returns the list of state beans. > > > > I created an AAR file and deployed in tomcat but in my wsdl definition type > of countryList1 is <type:anytype> instead of countryBean. > > > > If I convert the arraylist to array it is working fine. > > > > Please let me know if AXIS2 supports arraylist with in a bean ? > > > > Thanks, > > Hari > > > > > > > > > > This message (including any attachments) contains confidential information > intended for a specific individual and purpose, and is protected by law. If > you are not the intended recipient, you should delete this message. > > Any disclosure, copying, or distribution of this message, or the taking of > any action based on it, is strictly prohibited. > > v.E.1 > > > > > >