Hello,
I am using compiled code from the CVS, with the request to GDS I filter by e-mail.
.getFrom() - returns null for any e-mail.
How can I get e-mail body?
part of the code is:
Results results = q.execute();
List list = results.getResult();
for (Iterator iter = list.iterator(); iter.hasNext();) {
ResultsTypeImpl.ResultTypeImpl rt = (ResultsTypeImpl.ResultTypeImpl) iter.next();
rt.getFrom() - gives null
Thanks in advance.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I am using compiled code from the CVS, with the request to GDS I filter by e-mail.
.getFrom() - returns null for any e-mail.
How can I get e-mail body?
part of the code is:
Results results = q.execute();
List list = results.getResult();
for (Iterator iter = list.iterator(); iter.hasNext();) {
ResultsTypeImpl.ResultTypeImpl rt = (ResultsTypeImpl.ResultTypeImpl) iter.next();
rt.getFrom() - gives null
Thanks in advance.
Hello,
Thanks for your help.
GDS API is based in a XML Schema. It was wrong beacause Google DesktopV2 has changed some specifications.
New schema is now commited in CVS.
I hope that it works well.
Email Body is not retrieved from GDS in its xml SDK. You can use "snippet" property.
Thanks again,