In a RestDataSource (with setDataFormat(DSDataFormat.XML)) I override:
protected void transformResponse(DSResponse response, DSRequest request, Object data)
But I can't seem to extract the full xml document of ht response, can u point me in the right direction to extract an ordinary com.google.gwt.xml.client.Document from a response? If I can get the XML is String form, it can obviously be parsed, but I can't seem to get the XML at all.
I've tried: XMLTools.selectNodes(data, "/");
thanks!
Bas
protected void transformResponse(DSResponse response, DSRequest request, Object data)
But I can't seem to extract the full xml document of ht response, can u point me in the right direction to extract an ordinary com.google.gwt.xml.client.Document from a response? If I can get the XML is String form, it can obviously be parsed, but I can't seem to get the XML at all.
I've tried: XMLTools.selectNodes(data, "/");
thanks!
Bas
Comment