i found that my roller cant send trackback to lots site,
i think the http post code in trackback.java shoud change to this

original
        HttpMethod method = new PostMethod(trackbackURL);
        method.setQueryString(queryString);

new one
        PostMethod method = new PostMethod(trackbackURL);
        method.setRequestHeader("Content-Type",
"application/x-www-form-urlencoded; charset=utf-8");
        method.setRequestBody(queryString);

the spec says we need content-Type
and QueryString will occur an error when i post to other sites.
so i change it to setRequestBody, and it works well now


koji

Reply via email to