Hi Axis,

I have a WSDL generated class 

    public SearchResult(
           org.apache.axis.types.Id identifier,
           int versionID,
           java.util.Calendar versionDateTime,
           java.lang.String title,
           java.lang.String location) {
           this.identifier = identifier;
           this.versionID = versionID;
           this.versionDateTime = versionDateTime;
           this.title = title;
           this.location = location;
   }

and have created a Model class in my system to save this information

public class ExchangeContent  {
        
        private Long id;
        private String  contentId;
        private Date    date;
        private String  title;
        private String  location;

}

How do I map the org.apache.axis.types.Id identifier to private String
contentId;

What type should contentId be to achieve this or how is it done. If I
just at

searchResult.getIdentifier().toString();

I do not get the correct value as populated in
searchResult.getIdentifier() during the web service call.

Thanks

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to