Questions tagged [atompub]

AtomPub is a protocol for the exchange of Atom documents. It is based on and extends the Atom Syndication Format. It is widely held to follow the Representational State Transfer architectural style.

The Atom Publishing Protocol (AtomPub) is an application-level protocol for publishing and editing Web resources. The protocol is based on HTTP transfer of Atom-formatted representations. The Atom format is documented in the Atom Syndication Format.

33 questions
1
vote
2 answers

OData AtomPub formatting: application/xml vs. application/zip

While looking at responses from some OData feeds I saw that their structures are slightly different depending on wether they have content type set to application/xml or application/zip. Here are two examples: application/zip
Vagif Abilov
  • 9,835
  • 8
  • 55
  • 100
1
vote
1 answer

wcf - customizing service document

I am new to WCF programming and its syndication classes etc. I am trying to produce a AtomPub service document programmatically when someone tries to access root address of my service. I am able to do that only to some extent using ServiceDocument,…
Mandar
  • 303
  • 4
  • 18
1
vote
1 answer

What does a consumer of a RESTful events atom feed have to remember?

I am researching Atom feeds as a way of distributing event data as part of our organisation's internal REST APIs. I can control the feeds and ensure: there is a "head" feed containing time-ordered events with an etag which updates if the feed…
user1305156
  • 201
  • 1
  • 10
1
vote
1 answer

How to extract value from AtomPub XML HTTP response in Javascript (for Google Apps Admin Settings API)

I am calling the Google Apps Admin Settings API from a Google Apps Script script (Javascript) to retrieve the maximum number of users in our Google Apps domain. A successful GET request returns the response in AtomPub XML format, like so:
Employee
  • 2,231
  • 3
  • 33
  • 60
1
vote
0 answers

CmisNotSupportedException when accessing /docushare/ds_mobile_connector/atom

The AtomPub CMIS URL for Xerox DocuShare is supposed to be: http://server/docushare/ds_mobile_connector/atom PROBLEM: When I open a browser at that URL, I get the following exception: HTTP Status 405 -…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
1
vote
1 answer

AtomPub multipart, more than one Media Part?

In draft-gregorio-atompub-multipart-04.txt chapter 3, third paragraph it says : A multipart/related POST to a Media Collection MUST be a valid multipart/related representation as defined by [RFC2387] and MUST contain two body parts. One,…
Max Value
  • 183
  • 8
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
1
vote
1 answer

AtomPub - What's your recommendation?

I'm looking to create a service (based on .NET Fx 3.5 or 4.0) that exposes data via Atom and enables AtomPub (so that I can update using Windows Live Writer). There looks to be two options: Use ADO.NET Data Services. From what I can tell this is…
Simon Guest
  • 2,112
  • 1
  • 15
  • 21
0
votes
1 answer

Eventstore HTTP API, Subscription response with unexpected content type

i am using the eventstore http api to get events from an persistent subscription. It works, but the response give me an xml structure instead of json. Can anyone tell me what's wrong with my request? > GET…
0
votes
1 answer

curl query to check out a document using CMIS

I am trying to checkout a document using the REST-based CMIS protocol, but I get an error from the server (Alfresco). Am I misusing curl? Or am I missing something in my request? curl --user admin:admin -F "atomentry=@atomentry.xml"…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
0
votes
1 answer

Does consuming an Atom feed require AtomPub?

I would like to create a simple endpoint which generates an Atom 1.0 or RSS 2.0 feed. My understanding is that as long as the output is valid Atom or RSS XML, browsers and feed readers should be able to access and use this. Is this correct? Does my…
user2297996
  • 1,382
  • 3
  • 18
  • 28
0
votes
1 answer

Java framework for ATOM pub server

What Java framework/libs should I use in 2017 for implementing ATOM pub server. Our technology stack on existing apps are Spring Framework (Spring Boot) and Java 7, so I preferr an framework that works nicely with Spring. I have looked at ATOM…
Ismar Slomic
  • 5,315
  • 6
  • 44
  • 63
0
votes
0 answers

Create custom OData previouslink in WebAPI

I have a WebApi OData API. I want to perform some pagination. I have managed to fill the nextlink since it exists in OData. public IQueryable Get(int min=0,int max=0) { this.Request.ODataProperties().NextLink = new…
X.Otano
  • 2,079
  • 1
  • 22
  • 40
0
votes
2 answers

Live feeds via Atom protocol

I have to create a consumer that consumes feeds from an Atom service. The feeds should be consumed as and when anything is published on the atom server. Currently I am using camel-atom protocol which polls the atom server every 60 seconds by…
RichaS
  • 219
  • 3
  • 14
0
votes
1 answer

"CmisObjectNotFoundException" when uploading a file to Alfresco

this is my scenario: I'm trying to upload a file on an Alfresco (version 4.2.0 Community) using DotCMIS 0.6. This is my code: Dictionary properties = new Dictionary(); properties.Add("cmis:name", "name.pdf"); //other…
Albirex
  • 283
  • 1
  • 2
  • 13