0
apache abdera를 사용하여 나머지 호출 후 websphere portal에서 수신 한 응답 아톰 피드를 구문 분석하려고합니다. 그러나 구문 분석 할 때 아래 오류가 나타납니다. 어떤 사람들은 그 문제가 무엇인지 알려 줄 수 있습니까?FOMUnsupportedTextTypeException : 지원되지 않음 텍스트 유형 : text/html
org.apache.abdera.parser.stax.FOMUnsupportedTextTypeException : 지원되지 않는 텍스트 유형 : text/html과
Abdera abdera = new Abdera();
AbderaClient abderaClient = new AbderaClient(abdera);
Factory factory = abdera.getFactory();
Cookie[] cookies=request.getCookies();
org.apache.commons.httpclient.Cookie ltpaCookieHttpCommons = new org.apache.commons.httpclient.Cookie();
RequestOptions options = new RequestOptions(true);
List<String> cookieStrings = new ArrayList<String>();
options.setHeader("Cookie", (String[])cookieStrings.toArray(new String[cookieStrings.size()]));
ClientResponse resp = abderaClient.get("http://localhost:10039/wps/contenthandler/!ut/p/digest!W9TQFjuU7ADCwtSkxDsxHg/searchfeed/search?queryLang=en&locale=en&resultLang=en&query=test&scope=com.ibm.lotus.search.ALL_SOURCES&start=0&results=10&output=application/xml", options);
System.out.println(resp.getType());
if (resp.getType() == ResponseType.SUCCESS) {
System.out.println("!!!!!!Response success!!!!!!");
Document<Feed> docFeed = resp.getDocument();
// JSON Output
Writer writer = abdera.getWriterFactory().getWriter("json");
try {
Feed feed=docFeed.getRoot();
abdera.getWriterFactory().getWriter("json").writeTo(feed, System.out);
} catch(Exception e) {
e.printStackTrace();
}
} else {
}
웹 페이지에서 오는 유효한 것입니다. 나는 그것이 ibm 특정 네임 스페이스를 가지고 있다고 생각한다. 나는 그것을 자바 스크립트를 사용하여 수동으로 분석했다. – Ayub
웹 스피어에서 올지도 모릅니다. 당신이 할 수있는 일은 아무것도 없지만 유효하지 않은 원자는 제 요점이었습니다. 그래서 abdera는 처음 수정 될 때까지 사용할 수 없었습니다. – ShaneQful