RSS Feed XML iView Suffix

Hi,
we created a XML iView for a RSS Input. Out problem is, if the rss - feed ends upon .xml everything work fine. Unfortunatly our RSS - feed URL does not end with .xml and so the iView produces only an error message.
Does anyone know how to configure the iView to run without the xml suffix? (We are not able to manipulate the RSS feed)
Greetings

sorry bur i don't know!
Edited by: ludovic roux on Apr 3, 2008 2:23 PM

Similar Messages

  • 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

  • Proxy settings for RSS-fees xml iView in portal v 7.0

    Hi,
    I have created an xml iView for RSS-feed and continue to receive this error when I want to preview the iview:
    "Error while using XML iView, please contact your system administrator"
    My proxy settings have been changed in
    System-Configuration --> Service Configuration --> Applications --> com.sap.portal.ivs.httpservice
    "HTTP Proxy Host" =(value both "proxy" and the IP-Adress of the proxy has been tried)
    "HTTP Proxy Port"  = value "8080"
    HTTP JVM Settings = value "true"
    Restarted the portal, but no result.
    Any tips / hints how I can solve this?
    Thankx,
    hilde

    I think that the RSS iview works the same as the URL iview in that it is actually going from your browser to the URL rather than from the portal to the URL - so proxy settings should not make any difference.
    I have found the RSS feed functionality to be very picky on what XML works and what doesn't - so it may be that.
    Paul

  • Rss feed, xml, dreamweaver and updating newsletters

    Hello
    Ok.. tell me if I'm wrong but I am under the impression that
    somehow I can subscribe to an RSS Feed or download an xml current
    news story almost straight into an HTML(ASP, COLD FUSION?) file(s)
    and upload to my companies FTP to give our customers a current
    customized newsletter.. is this so? is it a spry data set type
    importing thing? My company is looking for me to streamline the was
    we process new news stories..
    Thanks
    Rob

    sorry bur i don't know!
    Edited by: ludovic roux on Apr 3, 2008 2:23 PM

  • AS3 RSS FEED XML Namespace

    AS3 - FLASH 10
    Hello,
    I'm having some trouble understanding how can I access a tag in a xml RSS Feed 2 format. Some tags have, what I think to be, namespaces that just ignore my request when accessing such tag. Here is an example:
    // XML LOADED
    <rss>
    <channel>
    <item>
        <title>POST TITLE</title>
        <link>http://domain.org/blog/2009/08/post-name/</link>
        <comments>http://domain.org/blog/2009/08/post-name/#comments</comments>
        <pubDate>Mon, 31 Aug 2009 21:39:40 +0000</pubDate>
        <dc:creator>admin</dc:creator>
        <category><![CDATA[CATEGORY]]></category>
        <category><![CDATA[CATEGORY]]></category>
        <guid isPermaLink="false">http://domain.org/blog/?p=3</guid>
        <description><![CDATA[DATA[...]]]></description>
        <content:encoded><![CDATA[DATA]]></content:encoded>
        <wfw:commentRss>http://domain.org/blog/2009/08/post-name/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>
    </item>
    </channel>
    </rss>
    // FLASH CODE
    trace ( xml.channel.item.title ) // Output POST TITLE
    trace ( xml.channel.item.content ) // Output undefined or “”
    … same for wfw and slash tags.
    Any help?
    Regards

    One of the ways is to use regular expressions and replace all the unwanted namespaces with pure tags:
    1. Get the xml data as string:
    var xmlString:String = [write the data here]
    2. Pattern for the tags with namespaces is something like this:
    var exp:RegExp = /<\\|(\w+):(\w+)>/gi;
    3. This is just to demostrate what it outputs: - is not needed in the final code
    var tagsArray:Array = xmlString.match(exp);
    var currentOccurance:Array;
    for (var i:int = 0; i < tagsArray.length; i++) {
         currentOccurance = tagsArray[i].split(":");
         trace("left = " + currentOccurance[0] + "; right = " + currentOccurance[1]);
    It outputs something like this:
    left = content; right = encoded>
    left = content; right = encoded>
    left = wfw; right = commentRss>
    left = wfw; right = commentRss>
    left = slash; right = comments>
    left = slash; right = comments>
    4. Depending on what side you want to use in the final tag:
    a. If left:
    xmlString = xmlString.replace(exp, "$1");
    It will make the following changes:
    From:
    <content:encoded>....</content:encoded>
    <wfw:commentRss>...</wfw:commentRss>
    To:
    <content>....</content>
    <wfw>...</wfw>
    b. if right:
    xmlString = xmlString.replace(exp, "$2>");
    It will make the following changes:
    To
    <encoded>....</encoded>
    <commentRss>...</commentRss>
    The final code is actually 4 lines only (assuming you use complete event):
    var xmlString:String = e.target.data;
    var exp:RegExp = /<\\|(\w+):(\w+)>/gi;
    xmlString = xmlString.replace(exp, "$1");
    var myXML:XML = new XML(xmlString);
    Viola! You can parse xml regular way.

  • Rss Feeds XML Parsing

    Hi,
    I'm working on the example on Rss Feed which needs to integrated to our website.Hence below link i'm using for my reference purpose.
    http://www.vogella.com/articles/RSSFeed/article.html
    When i run the program the below exception is displayed.
    Please do the needful.Thanks in advance
    Exception in thread "main" java.lang.RuntimeException: java.net.ConnectException: Connection timed out: connect
         at de.vogella.rss.RSSFeedParser.read(RSSFeedParser.java:146)
         at de.vogella.rss.RSSFeedParser.readFeed(RSSFeedParser.java:61)
         at de.vogella.rss.ReadTest.main(ReadTest.java:13)
    Caused by: java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at java.net.URL.openStream(Unknown Source)
         at de.vogella.rss.RSSFeedParser.read(RSSFeedParser.java:144)
         ... 2 more

    Hi,
    I'm working on the example on Rss Feed which needs to integrated to our website.Hence below link i'm using for my reference purpose.
    http://www.vogella.com/articles/RSSFeed/article.html
    When i run the program the below exception is displayed.
    Please do the needful.Thanks in advance
    Exception in thread "main" java.lang.RuntimeException: java.net.ConnectException: Connection timed out: connect
         at de.vogella.rss.RSSFeedParser.read(RSSFeedParser.java:146)
         at de.vogella.rss.RSSFeedParser.readFeed(RSSFeedParser.java:61)
         at de.vogella.rss.ReadTest.main(ReadTest.java:13)
    Caused by: java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at java.net.URL.openStream(Unknown Source)
         at de.vogella.rss.RSSFeedParser.read(RSSFeedParser.java:144)
         ... 2 more

  • I figured out the XML RSS feed to webpage but..

    Hello All
    I finally figured out how to get and rss feed xml to my
    webpage(s) via the Spry xml data set etc.. when I previewed in IE
    it was fine but I uploaded it and I get an error
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct
    the error and then click the Refresh button, or try again later.
    Only one top level element is allowed in an XML document.
    Error processing resource '
    http://www.michaelsondesign.com/Spry/r...
    I just want to show my boss that I have been working on this
    and would love to show him an example of this awesome technology is
    there something Im not uploading? What does this error mean?
    Thank you
    Rob

    Hi,
    I am trying to display an RSS feed on my website as well. I
    haven't figured it out.
    Can you help?
    Thanks,
    H.J.D.
    [email protected]

  • The system Pages library and its RSS feed do not work properly in SharePoint 2010

    This question is about RSS feed for the system 'Pages' library in SharePoint 2010.
    Now there are 5 'News' pages in the system 'Pages' library. In each news page there is one field called 'Title' for the news title. One of the news page is named 'FileNamePage5.aspx', and the news title is 'This is the title of page5'.
    I have enabled RSS in Site Settings, and configured RSS Settings for the 'Pages' library from the Communications section via Document Library Settings. I selected a few columns to display in the RSS description, including the 'Title' column. In the RSS feed
    (XML file) of the system 'Pages' library, I checked the XML source code, and found the news page file name appearing in the <title> tag below within the feed (XML source code).
     <title>FileNamePage5</title>
    and the original news title 'This is the title of page5' was appearing in the <description> tag in the feed (XML sorce code)
     <description><![CDATA[<div> ... This is the title of page5... </div>]]></description>.
    This would make it hard to extract ONLY the original news title (This is the title of page5) out of the feed via XSLT, because the data within the <description> tag in the feed also contains data from all other selected columns defined via the RSS
    Setting. If I did not select the 'Title' column via RSS Setting above, I even could not find the orinigal news title in the RSS feed.
    This is happening for all other news pages in the system 'Pages' library. Is this what SharePoint 2010 normally does? or is something wrong with the settings for site or the system 'Pages' library?
    How to display ONLY the original news title (This is the title of page5) in the <title> tag in the RSS feed. Please Help me to resolve this issue.
    谢亚军@Sydney

    Hi,
    According to your description, my understanding is that you want to display the value in Title column of Pages library in title tag in RSS Feed in SharePoint.
    I tested the same scenario per your post, the title tag in RSS Feed displayed the value of Name column in libraries and displayed the value of Title column in lists.
    It is by design and there is no OOB way to change the default column mapping in RSS Feed.
    I recommend to customize your own RSS Feed style sheet to make the title displays the value of Title column in SharePoint libraries.
    Here is a link about customizing the RSS Feed for document library for you to take a look:
    http://markeev.com/Articles/sharepoint-blog-rss.aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • RSS Feed on Apex

    Does anyone know how to show an RSS feed in APEX ? I have seen examples showing shredded items in a report. I want to show the RSS Feed XML as you can see at this link:
    http://www.oracle.com/rss/rss_ocom_pr.xml (try the link with Firefox and not with IE)
    Anything I do in Apex, it shows as text stripping XML tags.

    First, there's a setting in the report attributes to enable / disable HTML tags in your report.
    Second, I'm not sure what you're trying to achieve is going to work. I believe (but have not tried) that browsers such as Firefox will render complete XML files, such as an RSS feed, with a default stylesheet. I don't think they'll render XML that is part of and HTML document. IMHO, you should confirm this, perhaps with a simple HTML file with some embedded XML before you start writing a bunch of SQL / PL/SQL to test this.
    Third, what is your end goal? If users need a particular browser render this feed, are you perhaps expecting too much of your end users?
    Tyler

  • Using xml iView to get data from URL generating rss feeds

    hi,
    I have a URL
    http://xml.weather.yahoo.com/forecastrss?p=USCA1116
    from the yahoo weather site.
    It opens XML data.
    I then created an XML iView in the following way:
    In step 3 in XML source; i typed the above URL. Clicked on Next.
    In Step 4 for Selected XML translation format I chose MY_RSS_TO_XHTMLB.
    When I preview it gives the message : Error while using XML iView, please contact your system administrator.
    I have Portal SP14.
    So as mentioned before in a forum, I went to System Administration -> System Configuration -> Service Configuration -> Applications -> com.sap.portal.ivs.httpservice-> proxy
    and changed "HTTP Proxy Host" to "proxy" and "HTTP Proxy Port" to 8080.
    Then to re start I right clicked com.sap.portal.ivs.httpservice, went to Administrate and restarted the services.
    But I still get the same message
    Error while using XML iView, please contact your system administrator.
    Can you please let me know if these 2 settings are correct.
    thx.

    Hi,
    Could you please let me know if you were able to solve this issue. Inspite of all the suggested configuration we are still getting the same error, as stated by you.
    Anyone able to overcome this issue, please reply. Also let me know if we need to consider any specific versions of portal & browser, JRE etc..
    Thanks,
    KSK

  • Download RSS feed as xml file from Sharepoint Online using PowerShell

    Hello
    Our company sharepoint (Office 365) contains also several RSS feeds.
    How it is possible to download xml file out of this feed (website) using PowerShell?
    I can authenticate with sharepoint using CSOM but do not what to do next.
    As service user is not administrator I cannot use "SPOService".
    This script works OK for standard website, but not for Sharepoint.
    $doc = New-Object System.Xml.XmlDocument
    $doc.Load("http://www.{CompanySite}.com/feed/")
    $doc.save("C:\temp\feed.xml")
    I am getting this error when using for company Sharepoint:
    "The remote server returned an error: (403) Forbidden."
    Thanks for your time considering this question.
    Jozin

    Hi Scott,
    thanks for advice.
    Combination of WebClient and Sharepoint Credentials is working OK:
    $client = New-Object System.Net.WebClient 
    $client.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($User, $SecurePassword)
    $client.Headers.Add("X-FORMS_BASED_AUTH_ACCEPTED", "f")
    $client.DownloadFile($SiteURL, $file)

  • Newbie here trying to load an rss feed thru xml in Flash AS 2.0

    I have never looked into RSS feeds before, I now have someone that wants  Yahoo rss newsfeed  embedded in his main.fla. I have an AS 2.0 rss newsreader he sent to me, knowing nothing about RSS I started to look around and eventually got to a point where I went to a Yahoo RSS feed and copied the source page and dropped it in the xml file that came with the feedreader. When saved, published and uploaded to the server the file displays the feed from yahoo fine, but it never update the stories. I would think this has to do with the xml as it is embedded in the page so it can't change so my question is how do I get an rss feed converted to xml to update???
    I gotta be missing something here, I hope this isn't too dumb of a question.
    RD

    Yep, as I suspected a dumb question. All I had to do was replace the xml file name with rssurl and it worked.
    sorry guys. I have another question regard this I will post separate.
    rd

  • How to create an XML/RSS feed from a SQL recordset?

    I've been trying to find either a tutorial or extension that will allow me to take a SQL recordset, and create my RSS feed on the fly.  Not having much luck... anyone out there have a suggestion??

    Thanks PC!
    I made it work using:
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();
    factory.setIgnoringComments(true); // We want to ignore comments
    // Now use the factory to create a DOM parser
    DocumentBuilder parser = factory.newDocumentBuilder();
    //TransformThisStringBuffer is a string buffer wich contain the 'XML document (String)'
    InputStream in = new ByteArrayInputStream(TransformThisStringBuffer.toString().getBytes());
    // Parse the InputStream and build the document
    Document document = parser.parse(in);
    But which one is faster InputSource or InputStream, were would you put the "new InputSource(new StringReader(yourString))" in the above code?

  • Using xml rss feeds in dreamweaver

    I used dreamweaver to configure a rss feed in my webpage.
    One thing led to another and I was forced to reinstall my php
    server via
    xampp
    Now when I load the page on my computer I have this error:
    Fatal error: Call to undefined method domdocument::loadXML()
    in
    N:\INETPUB\xampp\htdocs\1purpose_bethel\includes\MM_XSLTransform\MM_XSLTransform.class.ph p
    on line 303
    I checked the includes folder and I do have the class file
    MM_XSLTransform.class.php
    but what I am wondering is if there is a place in my php.ini
    file that needs
    to modified to allow for the RSS feed? Or is there something
    else that I am
    over looking?
    any insight would be greatly appreciated
    thank you
    Kevin

    Hi, I'm also having the same error. I found in some other
    forums that I should do the following (I think its you David who
    suggested it):
    comment the line --> $xml =
    DOMDocument::loadXML($content);
    then add these two lines
    $doc = new DOMDocument();
    $err = $doc->loadXML($content);
    Well, actually when MM_XSLTransform.class.php was created it
    was already updated. But I'm still getting the error.
    I'm still a baby in PHP and I've been trying to figure it out
    for 2 days and nothing is happening.
    Please, please...your response will be highly appreciated.
    Kind regards,
    Jeng

  • Metadata on iPod from RSS feed (podcast) - ID3 tags or XML-generated?

    Hi,
    Does the metadata on an iPod come from the ID3 tags or from the XML-generated content in the RSS feed?
    Thanks!

    Afterthought:
    My experience is generally with tweaking tags to get iTunes to merge feeds but if you are downloading podcasts directly to the iPod it may concentrate on the feed information. Short of running tests with deliberately different information in the feed & the tag it is hard to say.
    tt2

Maybe you are looking for

  • Return/exchange policies?

    I find the potential for problems with the new MB overwhelming. I don't think I could live with a MB with problems. What happens if you get a MB that you think has something wrong with it? What can you do? What if you have one that makes a noise and

  • Cannot load on 64-bit, Windows 7 (permissions)

    Configuration: Windows 7 Professional, 64-bit Installed Adobe CS6 Beta Extended on different drive (not C:) drive.  In my case, I used the W: drive (an NTFS drive). When opening either 32-bit or 64-bit versions of Photoshop, I get the following error

  • Does the iphone support the use of a wildcard certificate?

    Does the iphone support the use of a wildcard certificate? Our exchange infrastructure utilises a wildcard (*.companyname certificate) from Godaddy. - Connects fine and authenticates - Can manually sync and pull emails - Can Send and Delete emails Ho

  • Best way to handle cliet disconnection

    hello my friends. im working on a project that there is one server and it runs always and it should receive clients connection requests and handle their disconnection. i wrote my disconnect code on clients like below: private void button2_Click(objec

  • Acer T232HL touchscreen Monitor not working w HP Pavilion HPE.

    I want to run two monitors, one being a touchscreen. I have the HDMI and the USB cables plugged in, but there is no port for the 15-pin VGA. Would that be the same as the DVI port? I have two DVI ports, but they are both covered up. So my main questi