Create RSS

hello I am focusing on creating a RSS file to be pointed by URL on a page .
After a search on the web I found that managing RSS with java meaning to use ROME api.
Is true? or does exist other api/project?
If someone is using ROME api , can help m,e to understand how add to SyndFeed object some specific tag of RSS (feed type=RSS) ,for example <textInput> tag, as SyndFeed class don't have any method to do this?
thakns

Hello Adam,
Ok, how about this one?
Attribute validation error for the CFFEED tag.
I have the <cffeed> tag set up as:
<cffeed action="create"
query="#TournamentList#"
columnMap="#columnMapStruct#"
outputFile="AdvancedTutorialsFeed.xml"
overwrite="yes"
xmlVar="myXML">
> You have a CFML-style comment in the middle of your
CFScript block.
>
> Usually when you get that error, keep an eye out for a
stray CFML
> statement, comment, or angle bracket.
>

Similar Messages

  • Creating RSS feeds

    How do you create RSS feeds? I am building a school site that
    would like to use RSS feeds.
    Thanks!
    -Dan

    Not sure what you mean exactly.
    1) Do you want to create and publish RSS feeds which people
    can subscribe
    to?
    Or 2) do you want to have RSS news feeds appear on your web
    site?
    If 1)
    How to Create an RSS Feed with Notepad, a Web Server and a
    Beer - the beer
    is optional :-)
    http://www.downes.ca/cgi-bin/page.cgi?post=56
    RSS Specifications - everything you need to know about RSS:
    http://www.rss-specifications.com/display-rss.htm
    FeedForAll - feed generating software for win/mac:
    http://www.feedforall.com/
    If 2)
    Feed Roll - javascript generator for including news feeds in
    websites:
    http://www.feedroll.com/rssviewer/
    Google Ajax feedfetcher - requires you to have a Google API
    key#
    http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • Create RSS feed from HTML DB?

    I've been using a streaming RSS feed extension in Firefox for several months now and get feeds from all over including asktom.oracle.com and http://www.oracle.com/technology/products/database/htmldb/index.html. Very cool.
    Recently I've installed HTML DB and have begun creating some basic reports - nothing very dramatic as I'm just learning. Now I'd like to begin sending out RSS feeds from my HTML DB application to my RSS extension in my Firefox browser but can't find an easy way to do it.
    I see several posts of others wishing to do the opposite (read RSS feeds into their HTML DB application) but nothing that shows how to create a feed from HTML DB.
    I looked at Tom's description of his method at http://asktom.oracle.com/~sdillon/rss.html but this seems very cumbersome to me - is there an easier way?
    I would think that there should be a "create RSS" feed button somewhere in the HTML DB interface when I'm defining the page's attributes.
    Thanks in advance for any advice/suggestions.

    Actually, Tom's method is not as hard as it looks.
    You can really just copy it all into your own procedure and replace the inner query.

  • Create rss feed in iview

    hi experts,
    how can we create rss feed in iView.
    Thanks And Regards
    Trilochan

    Hi,
    Check this:
    http://help.sap.com/saphelp_nw04/helpdata/en/0c/1c4af4da4043bbaf0effd45b93f6d8/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/94/4f7f04f22646b59310904b910e733c/frameset.htm
    A Look at XML iViews in SAP Enterprise Portal 6.0 SP Stack 04
    Implementing A RSS Feed Reader In The Portal
    Easy XML/XSLT transform using apis provided by SAP
    Regards,
    Praveen Gudapati

  • Create RSS feeds from KM News

    Hi all,
    is it possible to create RSS feeds from the standard News items created with Form Based Publishing (XML Forms builders)? In other words, instead if just displaying those news items in the portal, can they be displayed in an RSS reader as well?
    Since it's all XML I would say it is possible, right?
    please advice
    Marcel

    Hi Marcel,
    jRSS - Simple Java RSS Feed Generator
    A simple java API to produce Really Simple Syndication (RSS) documents following the specification version 2.0
    http://sourceforge.net/projects/jrss/
    http://cephas.net/blog/2003/09/07/creating-rss-using-java/
    So generate the RSS in the KM folder where your XMLForm datas are saved.
    After that create a component that accesses this RSS and shows it. You can use RSS Viewer librarys to achieve this:
    http://sourceforge.net/projects/rssview/
    So steps are:
    1. Create RSS and save as resource in KM.
    <b>Create a Repository Service, which creates this RSS and also updates it when contents in the folder changes.</b>
    2. Read this resource using a component and create IView from this component.
    I am sure that there are lots of other approches to implement this solution.
    Greetings,
    Praveen Gudapati
    [Points are always welcome for helpful answers]

  • Error in creating rss using pl/sql

    Hi everyone
    I am using below PLSQL to create an rss , this procedure getting compiled very well but when i try to execute it giving below errors
    CREATE OR REPLACE PROCEDURE sp_rssfeed(
    p1 IN NUMBER DEFAULT NULL
    ) AS
    v_xml blob;
    v_user VARCHAR2(100);
    BEGIN
    SELECT user
    INTO v_user
    FROM dual;
    WITH a AS(
    SELECT *
    FROM (
    SELECT owner, count(1) num_tabs
    FROM all_tables
    GROUP BY owner
    order by count(1) desc
    WHERE rownum <= 5
    SELECT
    XMLElement("rss",
    XMLAttributes('2.0' as "version"),
    XMLElement("channel",
    XMLElement("title",
    'Title: APEX test RSS Feed, User:= '||v_user),
    XMLElement("link",
    'http://www.oracle.com/global/de/community'),
    XMLElement("description",
    'Description: APEX test RSS Feed, p1:='||p1),
    XMLElement("language", 'en-us'),
    XMLElement("copywrite", 'Copyright '||
    to_char(sysdate, 'YYYY')||' Rich Murnane'),
    XMLAgg(
    XMLElement("item",
    XMLElement("pubDate",
    to_char(sysdate - rownum,
    'DAY, DD MON YYYY HH24:MI:SS')),
    XMLElement(
    "title",
    'The DB user named: '||a.owner||' has '||
    a.num_tabs||' table(s)'
    XMLElement(
    "link",
    'http://richmurnane.blogspot.com'
    ).getblobval(nls_charset_id('AL32UTF8')) into v_xml
    from a;
    owa_util.mime_header('text/xml');
    wpg_docload.download_file(v_xml);
    dbms_lob.freetemporary(v_xml);
    END;
    Error
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "SYS.OWA_UTIL", line 356
    ORA-06512: at "SYS.OWA_UTIL", line 404
    ORA-06512: at "RECOPS.SP_RSSFEED", line 55
    ORA-06512: at line 6
    Please help me out how to resolve this errors
    Regards
    Sandeep

    difficult to reproduce. But it might be a data conversion problem.
    e.g. try
    to_char(a.num_tabs)If that's not the error comment out certain lines or xmltags and test which one is the reason for the error.
    Edited by: Sven W. on Sep 9, 2011 3:13 PM - typo correction

  • Create RSS feed for Narrow casting

    We are using narrow casting and we can stream content to it using an RSS-feed.
    We want to do the following: - Create an rss feed of an exchange (mailbox or calendar) using a script. I think it is just like this link. Or as shown below: 
    ###Code from http://poshcode.org/?show=669
    # Creates an RSS feed
    # Parameter input is for "site": Path, Title, Url, Description
    # Pipeline input is for feed items: hashtable with Title, Link, Author, Description, and pubDate keys
    Function New-RssFeed
    param (
    $Path = "$( throw 'Path is a mandatory parameter.' )",
    $Title = "Site Title",
    $Url = "http://$( $env:computername )",
    $Description = "Description of site"
    Begin {
    # feed metadata
    $encoding = [System.Text.Encoding]::UTF8
    $writer = New-Object System.Xml.XmlTextWriter( $Path, $encoding )
    $writer.WriteStartDocument()
    $writer.WriteStartElement( "rss" )
    $writer.WriteAttributeString( "version", "2.0" )
    $writer.WriteStartElement( "channel" )
    $writer.WriteElementString( "title", $Title )
    $writer.WriteElementString( "link", $Url )
    $writer.WriteElementString( "description", $Description )
    Process {
    # Construct feed items
    $writer.WriteStartElement( "item" )
    $writer.WriteElementString( "title", $_.title )
    $writer.WriteElementString( "link", $_.link )
    $writer.WriteElementString( "author", $_.author )
    $writer.WriteStartElement( "description" )
    $writer.WriteRaw( "<![CDATA[" ) # desc can contain HTML, so its escaped using SGML escape code
    $writer.WriteRaw( $_.description )
    $writer.WriteRaw( "]]>" )
    $writer.WriteEndElement()
    $writer.WriteElementString( "pubDate", $_.pubDate.toString( 'r' ) )
    $writer.WriteElementString( "guid", $homePageUrl + "/" + [guid]::NewGuid() )
    $writer.WriteEndElement()
    End {
    $writer.WriteEndElement()
    $writer.WriteEndElement()
    $writer.WriteEndDocument()
    $writer.Close()
    ### end code from http://poshcode.org/?show=669
    ## Get the Mailbox to Access from the 1st commandline argument
    $MailboxName = $args[0]
    ## Load Managed API dll
    Add-Type -Path "C:\Program Files\Microsoft\Exchange\Web Services\1.2\Microsoft.Exchange.WebServices.dll"
    ## Set Exchange Version
    $ExchangeVersion = [Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2010_SP1
    ## Create Exchange Service Object
    $service = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService($ExchangeVersion)
    ## Set Credentials to use two options are availible Option1 to use explict credentials or Option 2 use the Default (logged On) credentials
    #Credentials Option 1 using UPN for the windows Account
    $psCred = Get-Credential
    $creds = New-Object System.Net.NetworkCredential($psCred.UserName.ToString(),$psCred.GetNetworkCredential().password.ToString())
    $service.Credentials = $creds
    #Credentials Option 2
    #service.UseDefaultCredentials = $true
    ## Choose to ignore any SSL Warning issues caused by Self Signed Certificates
    ## Code From http://poshcode.org/624
    ## Create a compilation environment
    $Provider=New-Object Microsoft.CSharp.CSharpCodeProvider
    $Compiler=$Provider.CreateCompiler()
    $Params=New-Object System.CodeDom.Compiler.CompilerParameters
    $Params.GenerateExecutable=$False
    $Params.GenerateInMemory=$True
    $Params.IncludeDebugInformation=$False
    $Params.ReferencedAssemblies.Add("System.DLL") | Out-Null
    $TASource=@'
    namespace Local.ToolkitExtensions.Net.CertificatePolicy{
    public class TrustAll : System.Net.ICertificatePolicy {
    public TrustAll() {
    public bool CheckValidationResult(System.Net.ServicePoint sp,
    System.Security.Cryptography.X509Certificates.X509Certificate cert,
    System.Net.WebRequest req, int problem) {
    return true;
    $TAResults=$Provider.CompileAssemblyFromSource($Params,$TASource)
    $TAAssembly=$TAResults.CompiledAssembly
    ## We now create an instance of the TrustAll and attach it to the ServicePointManager
    $TrustAll=$TAAssembly.CreateInstance("Local.ToolkitExtensions.Net.CertificatePolicy.TrustAll")
    [System.Net.ServicePointManager]::CertificatePolicy=$TrustAll
    ## end code from http://poshcode.org/624
    ## Set the URL of the CAS (Client Access Server) to use two options are availbe to use Autodiscover to find the CAS URL or Hardcode the CAS to use
    #CAS URL Option 1 Autodiscover
    $service.AutodiscoverUrl($MailboxName,{$true})
    "Using CAS Server : " + $Service.url
    #CAS URL Option 2 Hardcoded
    #$uri=[system.URI] "https://casservername/ews/exchange.asmx"
    #$service.Url = $uri
    ## Optional section for Exchange Impersonation
    #$service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress, $MailboxName)
    # Bind to the Contacts Folder
    $folderid= new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Inbox,$MailboxName)
    $Inbox = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service,$folderid)
    $psPropset = new-object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::FirstClassProperties)
    #Define ItemView to retrive just 50 Items
    $ivItemView = New-Object Microsoft.Exchange.WebServices.Data.ItemView(50)
    $fiItems = $service.FindItems($Inbox.Id,$ivItemView)
    [Void]$service.LoadPropertiesForItems($fiItems,$psPropset)
    $feedItems = @()
    foreach($Item in $fiItems.Items){
    "processing Item " + $Item.Subject
    $PostItem = @{}
    $PostItem.Add("Title",$Item.Subject)
    $PostItem.Add("Author",$Item.Sender.Address)
    $PostItem.Add("pubDate",$Item.DateTimeReceived)
    $PostItem.Add("link",("https://" + $service.Url.Host + "/owa/" + $Item.WebClientReadFormQueryString))
    $PostItem.Add("description",$Item.Body.Text)
    $feedItems += $PostItem
    $feedItems | New-RssFeed -path "c:\temp\Inboxfeed.xml" -title ($MailboxName + " Inbox")
    But it is a Exchange Management Shell script an we would like to execute it like a .php file.
    Can anyone help me with this please?
    I would like to thank you in advance.
    Kind regards,
    Jordi Martin Lago

    That's not a Exchange Management Shell script its just a normal powershell script that uses the EWS Managed API
    http://msdn.microsoft.com/en-us/library/dd633710(v=exchg.80).aspx . So you can run it from any workstation or server where you have powershell and the Managed API library installed.
    You will need to update the line
    Add-Type -Path
    "C:\Program Files\Microsoft\Exchange\Web Services\1.2\Microsoft.Exchange.WebServices.dll"    
    To
    Add-Type -Path
    "C:\Program Files\Microsoft\Exchange\Web Services\2.0\Microsoft.Exchange.WebServices.dll"    
        To cater for the latest version of the Managed API.
      You can scheduled powershell scripts to run using the Task Scheduler eg
    http://community.spiceworks.com/how_to/show/17736-run-powershell-scripts-from-task-scheduler
    Cheers
    Glen

  • Possible to create Rss example with only localhost?

    Hi, I am totally new to RSS and I'm reading EasyCfm tutorial
    at:"
    http://tutorial208.easycfm.com/",
    however currently I don't have a public website to work with, how
    can I create a sample RSS example with only localhost with this
    example? My apologies for any confusion,I'm using this article as
    reference. If possible, code examples are greatly appreciated !
    Thank you so much,
    C

    There's nothing magic to RSS: it's just an agreed-on
    "standard" of XML.
    If you make a CFM template output RSS-compliant XML (just as
    usually you
    might output XHTML-compilant mark-up for your website), you
    can comsume it
    with your RSS-reading CFM file.
    Read this:
    http://en.wikipedia.org/wiki/RSS
    (and any appropriate
    references).
    Adam

  • Create RSS feed for iTunes

    Hi! I'm a PC-user. I need to create an RSS feed for iTunes. What program do I need to use?
    Thanks,
    Charley

    RSS Feed apps at Versiontracker.com
    Did you read you other post here? -> http://discussions.apple.com/message.jspa?messageID=3063466#3063466

  • Creating RSS News Feed of a BC Blog

    Hey guys,
    Thanks to these forums and Liam Ive been able to learn so much about webdesign, but became stuck again (at another very obvious thing I believe).
    The thing is, Ive got my blog on BC up and running and the RSS feed also, but how do I go about creating an RSS News feed and displaying the newest posts in an iframe?
    I am aware of some third party services that are able to do that, but i'd like to learn another way.
    Thanks!

    Thanks for the replies guys,
    So sorry I wasn't clear enough:)
    What I am trying to achieve is that I made a blog with BC catalyst and would like to show the newest post in some sort of News frame on my site (made in Muse) which would update automaticaly (and I understand this is done with the help of the blog's RSS feed?).
    I have been able to do that with a third party online service, but they always show "Powered by ...." or some other stuff, which isn't ideal.
    Take care!
    Martin
    EDIT: Also, if it would be possible, I am using the Blank Widget Composition in Muse which shows a frame and a number of tabs below it. The frame shows a content and changes depending on which tab U click. Now Im probably asking too much, but do U guys think it would be possible to show the newest post by clicking on the first tab, second newest post by clicking on the second tab, etc?
    The only thing I could think of would be to tag number the posts and then somehow substract 1 from the newest post. So let's say the newest post is 150-1=149 so after clicking on the second tab it would show 149 and so on for other tabs.

  • Business Catalyst Help | Create RSS feeds

    This question was posted in response to the following article: http://helpx.adobe.com/business-catalyst/partner/add-content-rss-feed.html

    Thank you for the fast reply, Mario!
    I did look at the blog details page as the help page indicated and i did have the RSS check box checked, however under the Site Settings the RSS page had no channels in it. So I had to create a new channel so I can have a link to the blog RSS. When I created the chanel and selected to populate it with BLOG POSTs it gave me that ugly 2 box fields where you move the blog posts from left box to the right box. So essentially you have to do this for the blog posts as well. Unless I'm missing something but I spent almost an hour trying to figure this out in the Admin. Whcih is a rediculous amount of time to spend on something that comes pre-built to any other system.

  • How to create RSS portlet?

    hi,guys.
    I want to create a rss portlet,any doc. ?
    I am using jsr168,may i have sample?
    if can,pls give a hand,need some doc. or sample,thank you
    regards
    aris

    Check out this thread. It should give you some information you are looking for.
    How to Implement a portlet to display data from RSS Feed ?

  • How to create RSS?

    Hey everyone
    How do I create an RSS feed with iweb without .mac?
    Thanks
    Bevan James Eyles

    Hi I am having a problem with 'RSS Subscribe' button on http://www.childreninchina.org on all browsers except Safari The website is not published to .mac. The 'RSS Subscribe' button is on the "news & info" page which uses the blog template. The RSS icon appears on the bottom of the page in Firefox and this works - so should I delete the RSS button and leave a text message informing subscribers to look for the RSS icon on their browser? Or is there a fix for a non HTML literate person like me! Cheers
    Graham.
    iBook G4   Mac OS X (10.4.6)  
    iBook G4   Mac OS X (10.4.6)  

  • Creating RSS feeds to iTunes U for the public or other portals to use

    I looked in the documentation but was unable to see any information on setting up RSS feeds for course content.
    Is there a way to view the RSS feed address for a podcast like - http://itunes.stanford.edu/rss.html? They have addresses like - http://deimos3.apple.com/WebObjects/Core.woa/Feed/itunes.stanford.edu.1291405182 .01291405187

    davpoind wrote:
    On the off chance that posting this will get me banned from the board,
    David, to be honest, I seriously doubt this gets you banned. Or reprimanded.
    I think "the big notion" behind iTunes U is the Apple is allowing us to
    take part in the synergy that exists between iPod/iPhone and iTunes
    and apply it to our educational purposes. But I do not think that using
    iTunes (the application) is a requirement ... it is more of the reason to
    do iTunes U. It's not a "must", it's a "why" ... if you follow me.
    iTunes U is about portable and asynchronous access to content ... it's about
    brushing up on, say, a WWDC session while I'm on the "el" on my way to work.
    While I might, conceivably, be able to wrangle WWDC sessions using something
    other than iTunes, I'm never going to have the same ease-of-use experience
    that I would just using iTunes to do everything.
    davpoind wrote:
    Now, a few caveats here...that file must be publically accessible, meaning the "all" credential must have download privileges. If it does not, you will get a Forbidden restriction error.
    I suspect it'd work if "Unauthenticated" also had download access to the file.
    The good news there is that, as you point out, Apple continues to
    enforce our security policies no matter how the file is accessed (iTunes,
    NetNewsWire, etc.).
    You've found an interesting little hack ... it's something to know.

  • Create RSS feed in Dreamweaver CS6

    Is there a tutorial or other documentation describing how to add an RSS  feed to a page in Dreamweaver (CS6)?
    Thanks,
    Chick

    Let me explain, the link to the RSS shows a demonstartion of an RSS feed that originates from this forum. The reason why you did not see your post anymore is because there are (were) newer posts that replaced yours.
    This demonstration page was made using Dreamweaver and the markup can be seen when you right click the page and choose View Source or similar.
    The demo site was hand coded, but there is very little to it if you have a look at the source code.
    I also suggested an alternative if you do not know how to hand code.
    If this is not what you want, then please explain what it is that you do want.
    Gramps

Maybe you are looking for