2015-02-05 7 views
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 { 

    }  

답변

0

문제는 원자 파싱이 '외설 그것에 text/html와 유형 태그가 공급이다 t는 atom spec에 있기 때문에 abdera는 위의 오류를 발생시킵니다.

사양에 따르면

존재하는 값 는 "텍스트", "HTML"중 하나, 또는 "XHTML"

는 당신에게 피드가이다 확실이어야한다 원자 피드와 위와 같은 MIME 유형을 가진 인클로저를 지원하는 RSS 피드가 아닌가?

+0

웹 페이지에서 오는 유효한 것입니다. 나는 그것이 ibm 특정 네임 스페이스를 가지고 있다고 생각한다. 나는 그것을 자바 스크립트를 사용하여 수동으로 분석했다. – Ayub

+0

웹 스피어에서 올지도 모릅니다. 당신이 할 수있는 일은 아무것도 없지만 유효하지 않은 원자는 제 요점이었습니다. 그래서 abdera는 처음 수정 될 때까지 사용할 수 없었습니다. – ShaneQful