google search appliance - GSA return symbol ? for double quote -
i getting gsa search result xml , parse xml show result along other contents.
i have noticed double quote(") or special character returned question mark (?). tested using postman on chrome , xml looks correct. using resttemplate fetch result. code snippets looks follows
string gsasearchurl = "http://xxx.yyy.com/search?client=maintenance_frontend&filter=0&getfields=*&q=frequent&site=default_collection&start=0&num=10&sort=date:d:l:d1";
httpheaders headers = new httpheaders(); mediatype mediatype = new mediatype("application", "xml", charset.forname("utf-8")); headers.setcontenttype(mediatype); //search(gsasearchurl); resttemplate.getmessageconverters().add(0, new stringhttpmessageconverter(charset.forname("utf-8"))); responseentity<gsp> response = resttemplate.exchange(gsasearchurl, httpmethod.get, new httpentity<string>(headers), gsp.class); gsp = response.getbody();
are sure you're query string encoded before it's sent gsa? example, query param "sort" should following:
sort=date%3ad%3al%3ad1
Comments
Post a Comment