Consume ATOM feed via ODI - possible?

Hi,
I'd like to have ATOM feed consumed by our DWH via ODI. I'd appreciate if somebody can help with answers of these questions:
- is it possible for ODI to consume XML from some HTTP URL, calculated while the inport script is running?
- is it possible for ODI to POST an xml to predefined location and keep the response in some temporary variable for later use
- is it possible to use HTTP headers with ODI when doing a GET?
BR,
Georgi

For HLS Streaming, the video codec should be H.264 and audio codec should be AAC/HE-AAC. So, if you are publishing from your webcam using flash player then you will have to encode camera feed to H.264 codec and if you are publishing from FMLE then you will have to select video format as H.264 and audio format as AAC.
For more details about converting camera feed to H.264 codec using flash player, you can check the following link:
http://www.adobe.com/devnet/adobe-media-server/articles/encoding-live-video-h264.html

Similar Messages

  • "We had difficulty reading this feed. null" Atom feeds no longer work?

    Hi - our Audioboo feeds used to work fine when submitting as a podcast (eg http://audioboo.fm/users/4705/boos.atom). It seems like they stopped working recently - maybe in the past couple of days - and just report "We had difficulty reading this feed. null" when you try to submit them.
    I'm beginning to suspect that the use of atom rather than rss is the cause. Can anyone confirm?
    -Jonathan

    This feed can be subscribed to manually in iTunes (from the 'Advanced' menu) - actually I'm rather surprised it works because it isn't a valid podcast feed (though it is a valid Atom feed).
    It has the iTunes 'declaration' and some itunes tags, although the former is contained in a 'feed' tag whereas it should be a 'rss' tag: there is no 'channel' tag enclosing the podcast data, no 'item' tags enclosing each episode, and no 'enclosure' tags within each episode containing the media URL. I'm not surprised you can't submit it as a podcast, and as I say it's a but surprising that the iTunes application recognizes it.
    In order to get it accepted in the iTunes Store you need to create a feed in the correct format: this page contains a sample basic feed so you can see how it should look:
    http://www.wilmut.org.uk/pc
    If the feed contains the valid iTunes format it can also contain atom tags, which iTunes will ignore.

  • How to call a shell script via ODI

    Hi,
    I need suggestion on following issues:
    1) How to call a shell script via ODI?.. I tried using OSCommand utility .inspite of the execution being successful the data is not written into the new file in the desired format. After processing new file is created in the mentioned location but its empty.
    2) I'm calling a procedure in ODI to load data into my fact. But once the fact gets loaded i want to update the log details (num of rows processed,num of rows inserted,num of rows rejected etc) in my log table. I'm planning to use a proc for updating but need to know from where can i find these details. Is there a table in work rep which gives me these info like how we get if we execute an interface.?
    Please help me out.. Its urgent
    Regards
    Surabhi

    Hello,
    Question 1 appears a little vague, please elaborate. If you're looking to capture a return value from the command execution, you will need to pipe the return value to a file, then read from there.
    The execution information is stored in the SNP_STEP_LOG table in the Work Repository. You will need to do a series of joins to retrieve the exact table that was updated. Good luck with this...

  • Retrieving the new entries of an updated ATOM feed/API

    I am using Java servlets to read several ATOM feeds.while reading those feeds below is the problem which i encountered
    An illustration of the problem .....................
    Suppose
    At 9:00 AM
    Feed entries are
    X
    Y
    At 9:10 AM
    Feed entries are
    a
    b
    c
    X
    Y
    newly added entries are a,b,c
    i read the feed at 9:00am and noted down the entries X,Y
    after 10 minutes again i read the feed
    using Etag (or) id method i detected that the feed has changed....................
    now how to retrieve those newly added entries of a feed at 9:10 Am?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    i thought of following the below approach
    at 9:00 Am notedown the entry id of latest entry...............................
    at 9:10 Am (it is modified) read the feed entries until you get the entry who id is equal to the entry which we stored at 9:00Am
    These entries which we read here are newly added ones...............
    is this the right approach to get the newly added entries of a feed?
    (or) is there any efficient approach ?
    --rama
    Edited by: Ramaa on Oct 17, 2008 5:51 AM

    I am using Java servlets to read several ATOM feeds.while reading those feeds below is the problem which i encountered
    An illustration of the problem .....................
    Suppose
    At 9:00 AM
    Feed entries are
    X
    Y
    At 9:10 AM
    Feed entries are
    a
    b
    c
    X
    Y
    newly added entries are a,b,c
    i read the feed at 9:00am and noted down the entries X,Y
    after 10 minutes again i read the feed
    using Etag (or) id method i detected that the feed has changed....................
    now how to retrieve those newly added entries of a feed at 9:10 Am?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    i thought of following the below approach
    at 9:00 Am notedown the entry id of latest entry...............................
    at 9:10 Am (it is modified) read the feed entries until you get the entry who id is equal to the entry which we stored at 9:00Am
    These entries which we read here are newly added ones...............
    is this the right approach to get the newly added entries of a feed?
    (or) is there any efficient approach ?
    --rama
    Edited by: Ramaa on Oct 17, 2008 5:51 AM

  • How to Transform POJO to ATOM Feed entry

    Hi,
    I have a Java Object which I need to use in order to construct an ATOM Feed Entry.
    The Entry should look like this:
    <entry>
        <title>Details</title>
        <content type="application/xml">
          <ooo:information xmlns:ooo="http://test.company.com">
            <ooo:type>var_ConfigType_00</ooo:type>
            <ooo:ID>var_InstanceID_00</ooo:ID>
            <ooo:properties>
              <ooo:property name="abc.1" value="xyz.1" />
              <ooo:property name="abc.2" value="xyz.2" />
              <ooo:property name="abc.3" value="xyz.3" />
              <ooo:property name="abc.4" value="xyz.4" />
              <ooo:property name="abc.5" value="xyz.5" />
            </ooo:properties>
          </ooo:information>
        </content>
      </entry>I am using abdera like this:
    Abdera abdera = new Abdera();
            Factory factory = abdera.getFactory();
            Entry entry = factory.newEntry();
            entry.setTitle("Details");Now what should I do to set the contents so that my entry looks like above.
    Thanks
    SAM

    you may try some XML binding tool instead of DOM. (e.g. http://xstream.codehaus.org/tutorial.html).
    There is no problem generating DOM. Its about generating oracle.xdb.XMLType using java api. Could you show a code snippet that would generate XMLType using xstream or other XML binding tools ?
    2) you may use DBMS_XDB.CREATERESOURCE to create a resource from varchar2 or clob parameter.
    Could you show a code snippet that inserts into Secure Binary XMLType table using CreateResource ? Im not using schema. Also Varchar supports 32kb. Conversion from Java String XML to CLOB is expensive ( because Oracle uses jdbc connection)

  • Displaying Release Date from Atom Feed

    When using an atom feed with iTunesU, we find that the Release Date field does not show meaningful data. The field contains the value of today in every
    instance. I wonder if there is any way to make Release Date show the contents of the <updated/> element, or to otherwise modify the feed to enable use of the Release Date field?
    The feed is here:
    http://www.cs.washington.edu/events/colloqvidcast.xml
    Thanks, Fred

    I can attempt to offer just a bit of assistance; however, I don't and haven't used Atom for feeds, so my experience is limited to RSS only.
    The Release Date field in the iTunes U Store and iTunes application rely on the pubDate tag in the iTunes xml namespace.
    For details, please see the following link:
    http://www.apple.com/itunes/store/podcaststechspecs.html#rss
    The page explicitly mentions RSS, but does not explicitly say that ATOM will not work, so YMMV.
    Hope this gives you a starting point.
    ~David

  • ITunesU cannot update atom feed

    Hi: Running Podcast Producer 2 in a Snow Leopard machine, and the Podcast Library is stored on the same computer. Without any changes, we are getting the bellow messages for all of ours atom feeds on iTunesU.
    Is anyone else experiencing the same problems.
    I can access the Podcast Producer library from a public computer and all content is there. For whatever reason, iTunesU don't seem to be able to update.
    Thanks,
    Dear iTunes U administrator, instructor, or course manager,
    Your 'CLASS OF 2014 FALL SEMESTER 2010' course in your umich.edu iTunes U site populates its track list automatically from an Atom feed, based on the podcast Atom feed URL and details you specified. iTunes U encountered the following error while trying to access the podcast Atom feed:
    iTunes U could not update the content because iTunes U could not download the specified feed (http://servername.x.x.x.x:8171/podcastproducer/atomfeeds/730B3E46-7282-4E53-A349-8897412A9535). Until the issue is resolved, iTunes U continues to display the last downloadable version of the content. Verify that the feed specified in the feed URL field and the resource are available, and then try again.
    To check your iTunes U podcast Atom feed URL and details, Atom Feed Settings located at Michigan > Schools and Colleges > Dental School > Dental Students > Class of 2014 > CLASS OF 2014 FALL SEMESTER 2010.
    Sincerely,
    The iTunes U Team

    We're getting this message as well, but it's from an RSS feed, not an atom feed. See below.
    As far as I know, this happens when iTunes U tries to refresh a feed, but encounters a timeout getting the new RSS/Atom XML document.
    I'd love to know if we can suppress these notices, if they are just a notification. Our faculty get these emails because we add their email when we register their RSS feed in iTunes U.
    Anyone have any ideas?
    Dear iTunes U administrator, instructor, or course manager,
    Your 'Swahili - Journals' course in your indiana-public iTunes U site populates its 'Feed' group track list automatically from an RSS feed, based on the podcast RSS feed URL and details you specified. iTunes U encountered the following error while trying to access the podcast RSS feed:
    iTunes U could not update the content because iTunes U could not download the specified feed (https://deimos.apple.com/WebObjects/Core.woa/Feed/indiana.edu.2945205213.0294520 5222/[email protected]/004b2663f4213d4e468bf00d735d7d0f628f10b8c80d118f7a5470ace 59f1f658821275071). Until the issue is resolved, iTunes U continues to display the last downloadable version of the content. Verify that the feed specified in the feed URL field and the resource are available, and then try again.
    To check your iTunes U podcast RSS feed URL and details, edit your Course page group located at Indiana University > CATEGORIES > Education > Education > Swahili - Journals > Feed.
    Sincerely,
    The iTunes U Team

  • [new] akregator RSS/Atom feed reader

    akregator 1.0 beta 10 allows you to browse through thousands of internet feeds without the hassle of using a web browser.
    PKGBUILD
    pkgname=akregator
    pkgver=1.0_beta10
    pkgrel=1
    pkgdesc="akregator RSS/Atom feed reader"
    license="GPL"
    url="http://akregator.sourceforge.net/"
    source=(http://dl.sourceforge.net/sourceforge/akregator/akregator-1.0_beta10.tar.gz)
    md5sums=('fa4e9ba5e14f0f537d2c4060be62f383')
    build() {
    cd $startdir/src/akregator-1.0_beta10
    ./configure --prefix=/opt/kde
    make || return 1
    make prefix=$startdir/pkg/opt/kde install
    http://www.linux-blog.de/download/arch- … pkg.tar.gz

    I am new to dreamweaver and have undertaken the cd training, however I am unable to find information on how to add an rss feed reader to my site and which extension is most appropriate. I would really appreciate if someone could advise me how i go about adding the feed reader to my site so I can show content generated by Feeds from other websites. I would also appreciate any advice on which reader is most compatible with CS5
    I went to the Adobe Exchange for Dreamweaver and search on "rss" and got 14 hits:
    http://www.adobe.com/cfusion/exchange/index.cfm?searchfield=rss&search_exchange=3&search_c ategory=-1&search_license=&search_rating=&search_platform=0&search_pubdate=&num=25&startnu m=1&event=search&sticky=true&sort=0&rnav_dummy_tmpfield=&Submit=
    Maybeone of the Dreamweaver Extensions does what you want.
    Hope this helps,
    Randy

  • What is Newsstand Atom Feed?

    Pardon me for asking more of an Apple question, but can anyone explain what Newsstand Atom Feed is in iTunes Connect>Manage Newsstand? I've read the iTunes documentation and still don't understand it.
    https://itunesconnect.apple.com/docs/NewsstandAtomFeedSpecification.pdf
    Is Atom Feed something that we should be integrating into our DPS apps? What exactly does it do?
    Thanks,
    Steve

    The metadata you specify in Atom Feed appears in the App Store and in iTunes when users are looking at your app details. DPS Newstand apps themselves ignore the images and metadata you specify in Atom Feed. For DPS apps, the cover image in Newsstand is initially the image you specify in App Builder, and then it changes to the portrait cover image of the most recent folio after a push is sent.

  • Weird: cannot process atom feed, because server return 200

    I submitted an atom feed to newsstand, and the second day I found this in my inbox.
    Does anyone know what is going on? Server returns 200 should mean "OK"…

    Thanks, I checked the URL and the data, no problem was found so far…
    And I also tailed the server log, turns out that only some of the data were visited. My server is in China, so it looks more like an «operation time out» now.
    Now I'm putting those data on a server based in US, hopefully it will work.

  • SSRS Atom feed as JSON format

    Is there anyway to get tablix data in JSON format from Atom Feed generated by an SSRS report?
    Tried HTTP header Accept:application/json, but didn't work. the server still returns XML.

    No, Reporting Service offers only an Atom feed, no other data services.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Atom feed error message

    I have a Mac Book Pro which I have just received and installed ilife 09 and 10.5.6.
    I have two accounts on this computer, one for myself and one for my wife.
    We both have .mac accounts.
    When I subscribe to my mobile me gallery iphoto starts up and creates a new subscription folder and all is working fine.
    When I log out of my account and use my wifes account to do the same thing I get an error message about an atom feed.
    Can anyone help??
    Many thanks in advance!!

    I have the same error when I post my pictures to the ME gallery with iPhoto '09. If you take a look at the link that it is pointing to when you subscribe to the gallery on the other Mac, you will see that it points to the mac.com domain, if you change that to the me.com domain it resolves the issue and lets you subscrive without the error. I have not found a permanent solution to this and will need to contact Apple to see if they have one.

  • ATOM Feed parsing in Flex

    I need to parse an Atom Feed and display it into a Flex UI.
    As part of UI I am providing navigation links such as:
    Next Page, Previous Page, First Page and Last Page.
    The Feed looks like this:
    <feed xmlns="http://www.w3.org/2005/Atom">
      <title>Alert Feed</title>
      <link rel="self" type="application/atom+xml" href="/alerts?page=1" />
      <link rel="next" type="application/atom+xml" href="/alerts?page=2" />
      <link rel="last" type="application/atom+xml" href="/alerts?page=4" />
    </feed>
    How can I read the next page href value when the user clicks on Next Page navigation link?
    Thanks,
    SAM

    I'll bet if you search the forum history you'll find other questions and
    answers on this topic.

  • Maintain attribute dimensions in Hyperion Planning, via ODI

    How can I move/maintain attribute members in Hyperion Planning, preferably via ODI?
    I have been loading an attribute dimension into Hyperion Planning, via ODI. The problem is that some children have been previously loaded to incorrect parents. However, a reload does not seem to move the children to their rightful place in the hierarchy.
    There are no errors being generated.
    Cheers

    Are you definitely sure it is not on the planning side the issue lies, I would create a file and then use the outline loader to compare load times to see where the issue is first.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Consume RSS feed in Portlet

    Hi all,
    I am looking to display RSS feeds in Portlet. I am aware of use of OmniPortlet to achieve the same. I want to look at some other open source standard options to go about doing the same.
    Can some please throw some ideas for displaying RSS feeds without using OmniPortlet?
    Your help would be greatly appreciated.
    Dipal

    i tried to consume RSS feed through the portlet, but i am getting the following error:
    Utility.pingWebClipTestPage: Loading of Web Clipping Provider failed: HTTP Response code = 500
    After giving the proxyinfo in both webclipping and omniportlet provider.xml files.
    thanks

Maybe you are looking for

  • My 24" iMac is dead!! Who do I call here in Singapore?

    My 24" iMac is dead!! Who do I call if I have AppleCare and I am staying here in Singapore? Dead as in I can't even switch it on from it's sleep. Tried everything, unplugged everything, waited for 10 mins, tried to switch it on again but no response!

  • Dynamic internal table column issue

    Hi i have ALV report with dynamic internal table.after i build the internal table and fieldcatalog i have problem  i.e. when grid is displayed then one of the column value is coming in the next column.i populated col_pos in field catalog also and in

  • Extra Line

    When I was typing my paper, I notices at the bottom of my second page the bottom margin is HUGE! It seems that there is an extra line after my last line of text but there isnt. I have tried everything please help!

  • Really?!?!? Uhhh help please

    So I'm unable to download anything because of a balance that was due, that was just found out upon contacting apple earlier, now I'm trying to update my payment info with a valid credit card so it can be charged for the balance and let me download ap

  • Zen Vision M to

    I recently tried connecting my vision m to the tv and it doesn't work. Firstly, i was using an AV cable that i got from my friends Samsung camcorder. It appears to be a standard av cable (red yellow white etc). He tried the same cable with his ipod a