Questions tagged [apache-abdera]

Tag for questions related to the Apache Abdera project, an implementation of the Atom Syndication Format and Atom Publishing Protocol specifications.

Introduction

"The goal of the Apache Abdera project is to build a functionally-complete, high-performance implementation of the IETF Atom Syndication Format (RFC 4287) and Atom Publishing Protocol (RFC 5023) specifications."

source

What questions should have this tag?

Questions that use this tag should be related specifically to the Apache Abdera implementation of the above specifications. Questions more generally directed to the specifications themselves should use the atom and atompub tags.

More Information

19 questions
5
votes
1 answer

Why isn't google api client library built on top of Apache's Abdera framework?

First of all I want to give many thanks to Google GData API's engineers for their good work and I'd like to mention that this question is not meant to criticize anything. It just pointing out things. Could anybody please explain that to me? As far…
lisak
  • 21,611
  • 40
  • 152
  • 243
5
votes
1 answer

Creation of Abdera Client fails

Creating the apache Abdera client is failing Part of my code is Abdera abdera = new Abdera(); AbderaClient abderaClient = new AbderaClient(abdera); This is throwing me... java.lang.RuntimeException: java.lang.NoSuchMethodException:…
Vinay Veluri
  • 6,671
  • 5
  • 32
  • 56
4
votes
1 answer

Chunked Transfer Encoding problem with Apache Abdera

I'm using Apache Abdera to POST atom multipart data to my server, and am having some odd problems that I can't pin down. It looks like an issue with chunked transfer encoding, but I'm insufficiently experienced to be certain. The problem manifests…
Richard J
  • 6,883
  • 4
  • 22
  • 27
4
votes
1 answer

How to use Abdera atom client to send content and attachment

We are using Abdera to interact with the IBM Connections API, but our problem is mostly related to Abdera itself. I think there is a bug in Abdera that does not allow you send an Entry that contains content and attachments in a single request. As a…
Driss Amri
  • 1,805
  • 2
  • 20
  • 28
4
votes
1 answer

Apache Abdera Client - Posting/Putting

Looking for help using the Apache Abdera Atom Client. I am trying to post and put files to a feed but I am getting a 400 error saying that the content type must be application/x-www-form-urlencoded or multipart/form-data
user25894
  • 71
  • 1
  • 4
2
votes
1 answer

Avoiding character encoding in Apache Abdera

I'm working to write a simple article editor which will be used with a CMS system which offers an Atom API to add/edit articles. To communicate with the CMS, I am using the Apache Abdera library. But I'm running into a problem with character…
Knut
  • 136
  • 9
2
votes
1 answer

Apache Abdera Client giving No credentials available for NTLM @proxy.tcs.com:8080

I have seen many forum posts for this and tried several suggestions but still I am not able to solve this. The code works good at my home system, but behind the organization firewall it gives a exception message : No credentials available for NTLM…
CodeHard
  • 105
  • 1
  • 11
1
vote
0 answers

Read on closed stream error from apache HttpClient

I am trying to parse a response from the Apache HttpClient (3.1) response like this: try { int code = mclient.executeMethod(method); if (code == Status.OK.getCode()) { st = method.getResponseBodyAsStream(); XMLBean el =…
1
vote
1 answer

Invalid UTF-8 start byte 0x8b (at char #2, byte #-1)

I am trying to parse the atom document from the url 'http://self-learning-java-tutorial.blogspot.in/atom.xml'. While parsing the document, I am getting the error 'Invalid UTF-8 start byte 0x8b (at char #2, byte #-1)'. Abdera abdera = new Abdera(); …
user4311153
1
vote
2 answers

Getting an error trying to parse an atom feed from connections using abdera

I receive the following error when trying to parse an atom feed. org.apache.abdera.parser.ParseException: java.lang.ArrayIndexOutOfBoundsException at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:128) at…
Bitwyse1
  • 339
  • 3
  • 18
1
vote
1 answer

How to post status update in to ibm connections using abdera?

How to post status update in to ibm connections using abdera? I am trying to post status in to ibm connections using fallowing code. public class PostStatusUpdate { public void postStatus(String username, String password, String feedURL) throws…
1
vote
0 answers

Retrieve more than 19 results with AbderaClient? (pagination issue I guess)

The manual query in the browser gives 1305 results: http://www.gahetna.nl/beeldbank-api/opensearch/?q=Leiden But my code with Abdera (below) returns just 19 results. This must be due to pagination. How do I access all the pages of results? Thx! …
seinecle
  • 10,118
  • 14
  • 61
  • 120
1
vote
1 answer

query with search terms in specific elements in opensearch?

Just starting with Opensearch, to retrieve content from the Nationaal Archief from the Netherlands. The example they provide is: http://www.gahetna.nl/beeldbank-api/opensearch/?q=Arnhem My question is, how to search for "Arnhem" in specific…
seinecle
  • 10,118
  • 14
  • 61
  • 120
0
votes
1 answer

Abdera SSLHandshakeException

I have a litte problem with the SSL Handshake, with I try to launch a GET request, the server return me java.lang.RuntimeException: javax.net.ssl.SSLHandshakeException. I'm using Abdera for the connection with the Connections Server, and on…
A. Serrano
  • 19
  • 5
0
votes
1 answer

AbstractMethodError due to Apache Abdera Dependency

I am using following Apache Abdera dependency for consuming an Atom feed. org.apache.abdera abdera-parser 1.1.3 After I add…
Halil
  • 1,795
  • 1
  • 24
  • 39
1
2