<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> Atom Publishing Protocol (APP) Server using Apache Wink <% /******************************************************************************* * Licensed Materials - Property of IBM * (c) Copyright IBM Corporation 2006. All Rights Reserved. * * Note to U.S. Government Users Restricted Rights: * Use, duplication or disclosure restricted by GSA ADP Schedule * Contract with IBM Corp. *******************************************************************************/ String serviceDocument = "blog"; String feedDocument = "blog/entries"; String specificEntry = "blog/entries/rail"; String IBM_document = "http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=/com.ibm.ajax.feed.samples.help/docs/GettingStarted_useage.html"; %>

ATOM Publishing Protocol support

Demonstrates the ability to create, retrieve, update, and delete ATOM content, using the ATOM Publishing Protocol (APP) support in Apache Wink.

Read the service document

The service document describes the available content on the APP Server - currently available feeds, and the URL at which they can be accessed. Click <%=serviceDocument%>

Read the available feed

View the feed, and use this operation to check on the contents of the feed following a create, update, and delete of specific entries in the feed. Click <%=feedDocument%>

Read a specific entry in the feed

An operation to view the discrete entries that compose a feed. Click <%=specificEntry%>

Create a new entry

Use the curl tool to perform the POST action, and view its result. Refer this documentation to understand how this can be done

Update an existing entry, using Atom Publishing Protocol

Use the curl tool to perform the PUT action, and view its result. Refer this documentation to understand how this can be done

Delete an existing entry

Use the curl tool to perform the DELETE action, and view its result. Refer this documentation to understand how this can be done