CSM 10.2.2 Documentation

Home

URLs for RSS Feeds

To read the content of an RSS Feed, provide an appropriate URL to the reader. For example:

http://MyServer/CherwellService/rss.xml?u=Henri&p=password&bo=Incident&q=Open%20Incidents

The first portion of the URL is the address for all RSS Feeds:

http://MyServer/CherwellService/rss.xml

Use https if the server is appropriately configured for SSL. MyServer should be replaced with the address of the Cherwell Server.

After the address, the rest of the URL (the query string) provides details on the account to use and the data to retrieve. Query strings are a standard web mechanism for providing arguments as part of a URL. To specify query string arguments, there must first be a question mark (?) after the main address, followed by value pairs. The argument name is bo (short for Business Object) and the argument value is Incident. It is very common for argument names to be only one or two characters long to avoid running into length limits. For example:

bo=Incident

With the entire URL, it would look like this:

http://MyServer/CherwellService/rss.xml?bo=Incident

Note: The question mark should be in front of the first value pair.

To add multiple values, add an ampersand (&) between each value pair:

bo=Incident&q=MyRecords

Here is the full query:

http://MyServer/CherwellService/rss.xml?bo=Incident&q=MyRecords

Certain characters are not allowed in query strings. Use a simple web search for assistance to find how to encode other characters. Some examples are:

  • Spaces are not allowed, along with most punctuation. To get around this limitation, the query string must be URL Encoded to replace illegal characters.
  • Spaces should be replaced with the sequence "%20" – which indicates the code for a space:

    bo=Change%20Request


Was this article useful?