Flex 2 RSS

Hello, im building a website for a company that would like
the use of RSS feeds in a flex app. However, I created the flex app
perfectly fine, and it works on my computer.
But when I upload it to my webserver and run it, the flex
loads, but the RSS doesnt load.
I've done some research regarding this, and all i've found
was Cross-Domain issues, but crossdomains.xml doen't work for me at
all.
I really really need some help in this area.
if anybody could assist, that would be great!
Thanks! :D

quote:
Originally posted by:
AwesomeDigital3
The RSS feed is on a differnt domain?
If so, the RSS domain needs to add the crossdomains.xml to
allow you to use their feed
What is the URL of the RSS domain (If you don't mind
sharing?)
Absolutly not,
heres the feed (from blogger)
http://grahamtt.blogspot.com/feeds/7215873460884966921/comments/default
I later converted it from Atom to RSS, which wouldent effect
anything. It still worked on my computer.
And heres my crossdomain.xml file :)
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy
SYSTEM "
http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="www.blogger.com" />
<allow-access-from domain="
http://blogspot.com" />
</cross-domain-policy>

Similar Messages

  • RSS Feeds in Flex

    i have a page that displays live rss feeds. The thing is that, it works correctly when the project is just a Flex Project and run as a flex application. But when i create a Flex project that runs on a server (Tomcat 5.5) with Blaze DS, the rss feeds are not available any more.
    Thanks Ravi

    Hi there,
    I think that you are missing a crossdomain.xml file. It's a policy file that tells the application that "it's ok to read data from location X". Read up here:
    http://labs.adobe.com/wiki/index.php/Flex:Accessing_Data
    http://www.cflex.net/showFileDetails.cfm?ObjectID=287&Object=Fi
    With best regards,
    Barna Biro
    Blog: http://blog.wisebisoft.com

  • Flex 2 Wordpress Blog RSS

    I find it EXTREMLY hard to belive, that wordpress doesn't
    support the use of Flex2 RSS.
    The only reason I find this, is because whenever I try to
    call data from my wordpress blog it won't work.
    MY OBJECTIVE IS SIMPLE!!!!!
    Get the RSS From -
    http://grahamtt.wordpress.com/feed/
    Parse it into a simple Flex Blog Reader/RSS reader app(All
    this is completly done)
    Whenever I try to run my app on my computer it works, but on
    my server IT DOESNT.
    Heres is my COMPLETE code:
    Link -
    http://pastebin.ca/586156
    The reason I use -
    http://atom2rss.semiologic.com/?atom=http%3A%2F%2Fgrahamtt.wordpress.com%2Ffeed%2F
    instead of -
    http://grahamtt.wordpress.com/feed/
    Is because Flex 2 doesn't read Atom (as far as I know). And
    that's the same thing, I just used the converter here:
    http://atom2rss.semiologic.com/
    Can somebody PLEASE explain to me how to set up a Proxy
    properly? And get my code working?
    It's crucial for my job that I find out how to read data from
    wordpress blogs in a Flex App.
    HELP ME PLEASE!!!!

    yea, I've tried that (too what I understand them saying) and
    it didnt work.
    I downloaded the proxy.php and uploaded it to the directory
    of my swf, but it still wont work. I also tried including the php
    in proxy.php into the actual page that used the swf, and nothing
    worked.
    :/

  • Need help in displaying a feed within my flex app

    Hello guys,
    I was hoping that someone can push me in the right direction. I am looking to display our feed within our Flex Application. I am using some of the sample from tour de flex
    This is what I have so far:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
         xmlns:mx="library://ns.adobe.com/flex/mx"
         width="960" height="850">
         <fx:Script>
         <![CDATA[
              import flashx.textLayout.conversion.TextConverter;
              import flashx.textLayout.elements.TextFlow;
              import spark.utils.TextFlowUtil;
              XML.ignoreWhitespace = false;
         ]]>
         </fx:Script>
         <fx:Style>
              @namespace s "library://ns.adobe.com/flex/spark";
              @namespace mx "library://ns.adobe.com/flex/mx";
              @namespace components "components.*";
              s|WindowedApplication {
                   background-color:#000000;
                   background-alpha:"0.9";
              s|ButtonBar s|ButtonBarButton:upAndSelected,
              s|ButtonBar s|ButtonBarButton:overAndSelected,
              s|ButtonBar s|ButtonBarButton:downAndSelected,
              s|ButtonBar s|ButtonBarButton:disabledAndSelected {
                   chromeColor: #00529c;
                   color: #FFFFFF;
              s|ButtonBar {
                   chromeColor: #053867;
                   color: #FFFFFF;
         </fx:Style>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
              <!--<s:HTTPService id="srv" url="http://feeds.feedburner.com/standforisrael/iWIn?format=xml" />-->
              <fx:XML id="srv" source="http://feeds.feedburner.com/standforisrael/iWIn?format=xml" />
         </fx:Declarations>
         <s:ButtonBar dataProvider="{myViewStack}" y="175" height="35" width="700" />
         <mx:ViewStack id="myViewStack" borderStyle="none" x="0" y="209" width="700" height="500">
              <s:NavigatorContent id="home" label="Home">
              </s:NavigatorContent>
              <s:NavigatorContent id="about" label="About Us">
              </s:NavigatorContent>
              <s:NavigatorContent id="rabbi" label="Rabbi Eckstein">
              </s:NavigatorContent>
              <s:NavigatorContent id="rabbiCom" label="Rabbi's Commentary">
              </s:NavigatorContent>
              <s:NavigatorContent id="programs" label="Our Blog">
                   <s:RichText id="rt5" width="280"
                        textFlow="{TextFlowUtil.importFromXML(srv)}" />
              </s:NavigatorContent>
         </mx:ViewStack>
    </s:WindowedApplication>
    Now when I run this I get a prompt that is telling me that if the program is already running to stop the program... I have no idea what program it is that i'm running that would prompt that type of dialogue box.
    I also get these errors:
    Unexpected processing instruction encountered and will be ignored. Found: type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css" IFCJ.mxml /IFCJ/src Unknown Flex Problem
    Unexpected processing instruction encountered and will be ignored. Found: type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl" IFCJ.mxml /IFCJ/src Unknown Flex Problem
    Is there anything that I am not doing right here?
    Any help would really be appreciated,
    Thank You

    I did try HTTPService but the problem that I was seeing was that I would need to push the information into a datagrid and that really doesn't help me witth presentation of the blog posts.
    What if I create a custom component that takes the RSS feed and parses it into sections like so:
    Title
    Description
    Link
    Where lets say the title is like so:
    [Bindable]
                public var title:String; <-- this is where I get stuck
    <s:Label x="0" y="80"
            text="{title}"/>
    I would like to also have that title wrapped in a url so that when the person is looking at our RSS they can click either the title or the read more link
    What else can i do?

  • Problem with running exe in flex

    Hi
    I have made an flex application which reads dynamic xml data
    through RSS feed.I tested the swf in browser its working fine and
    data is updated on the application at regular intervals, then i
    created its exe through flash player 9 and tested.
    It runs and initially shows the current data but it does not
    updated at regular intervals as was done in browser and thus does
    not reflect any changes at application.
    What should i do to make my standalone exe to show the
    changes in coming data on the application.
    pLease help.
    Thanks in advance.

    thanx for the nice explanation Jed, but it works fine in the
    case of browser but when i make the exe from the projector it it
    wont work properly. i.e xml data is not updated then.
    the object holding the xml data is xmllist and Http service
    is used for getting the xml data from the feed.also the xml file is
    at localhost.
    I'm also attaching the code and scores.xml .
    Thanks in advance

  • How to display a simple rss feed?

    Hi,
    I've build a simple application that has a httpservice called rss that calls "http://www.nytimes.com/services/xml/rss/nyt/GlobalBusiness.xml" and retrieves the rss feed. Under test operation I can see it returning the feed.
    When the init() function is called the httpservice is called and passed to a datagrid.
    However, when I run it I get the following fault.
    Security error accessing url
    Destination: DefaultHTTP
    In the console I get the following messeage:
    Warning: Domain www.nytimes.com does not specify a meta-policy.  Applying default meta-policy 'master-only'.  This configuration is deprecated.  See http://www.adobe.com/go/strict_policy_files to fix this problem.
    Error: Request for resource at http://www.nytimes.com/services/xml/rss/nyt/GlobalBusiness.xml by requestor from http://localhost:8888/Newsroom-debug/Newsroom.swf/[[DYNAMIC]]/4 is denied due to lack of policy file permissions.
    *** Security Sandbox Violation ***
    Connection to http://www.nytimes.com/services/xml/rss/nyt/GlobalBusiness.xml halted - not permitted from http://localhost:8888/Newsroom-debug/Newsroom.swf
    [Unload SWF] /Newsroom-debug/Newsroom.swf
    I have checked different posts online and in this forum describing crossdomain.xml and settings in the flash player global settings to resolve this issue, but I can for some reason not get it to work.
    I want to be able to take rss feeds from any site and display them in a simple datagrid?
    Any suggestions?
    Below is the application code.
    Br,
    Karsten!
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
              creationComplete="init();" xmlns:rss="services.rss.*">
    <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.events.FlexEvent;
                import mx.rpc.events.ResultEvent;
              protected function init():void
                    getDataResult.token = rss.getData();
            ]]>
        </fx:Script>
        <fx:Declarations>
            <s:CallResponder id="getDataResult"/>
            <rss:Rss id="rss" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
        </fx:Declarations>
        <mx:DataGrid id="rssGrid" width="500" dataProvider="{getDataResult.lastResult.channel.item}" >
            <mx:columns>
                <mx:DataGridColumn headerText="Feed" dataField="headline" />
                <mx:DataGridColumn headerText="description" dataField="description"/>
            </mx:columns>
            </mx:DataGrid>
    </s:Application>

    OK.
    Tried out your suggestion and it works!
    Thanks saisri2k2
    1) I created an http service which calls a php file:
    <mx:HTTPService
                id="rssNewYorkTimes"
                url="php/newyorktimes.php"
                result="rssNewYorkTimes_resultHandler(event)"
                resultFormat="e4x" />
    2) The php file then gets the feed and passes it back to the rssNewYorkTimes_resultHandler:
    <?php
      $feed = 'http://www.nytimes.com/services/xml/rss/nyt/GlobalBusiness.xml';
      $rawfeed = @file_get_contents($feed);
      print $rawfeed; 
    ?>
    3) the resulthandler then processes the feed and puts it in an arraycollection that can be passed to the datagrid:
    protected function rssNewYorkTimes_resultHandler(event:ResultEvent):void
                    var xmlList:XMLList = event.result.channel.item as XMLList;
                    for each(var item:XML in xmlList)
                        rssCollection.addItem({title: item.title, description:item.description, source:item.link});
                    buildRss();
    Thanks also to Chris Black for his post which explains in detail how this trick is done!
    http://www.blackcj.com/blog/2008/10/04/flexfeed-integrate-twitter-rss-feeds-into-flex/

  • A big newbie flex question.

    Where do I put it all?
    I've done many of the basic tutorials, I have a pretty good
    idea on how
    to create simple flex projects. I am now trying to design a
    real,
    functioning project based on one of our most important,
    internal, web
    applications.
    I find myself a little over my head. Any help would be
    greatly appreciated.
    I am building what is basically a calendar of events. I'm
    currently
    using flash remoting to pull the event data with ColdFusion
    from a
    database. I will have to main 'views' to start with. One is a
    full
    calendar display of all the events for a month. The second is
    a drill
    down that will display all the details of an individual
    event, with a
    panel on the left displaying other events on the same date.
    I've built most of the pieces of this, but I'm having trouble
    putting it
    together in a manageable layout. To date, I've pretty much
    put
    everything into a single MXML file but this is getting quite
    unwieldy.
    However when I try to pull pieces out into custom controls I
    start
    having great difficulty dealing with the data and the various
    view pieces.
    So, one has managed to wade through all that exposition, what
    is a good
    way to do this? Where do I put the data access logic. I
    presume in my
    root application file. But, if I do that, how do I access it
    from my
    various view pieces? How do I connect all the dots?

    peterent wrote:
    > The URL is in my signature (maybe that doesn't come
    through on a news reader):
    >
    http://weblogs.macromedia.com/pent
    >
    > Sorry!
    Nope, no signatures in what is sent to the RSS feeds for us
    newsreader
    folks.
    Thanks for the link. I have added it to the others I am
    trying to
    digest as quick as I can to get some understanding on how all
    the
    RPC-Flash Remoting Flex and ColdFusion stuff works.

  • Intergrating RSS Feeds into Flash Builder 4...

    I am very new to Flash builder 4 and I want to make an application where the app user can read through all the RSS Feeds and get updates everytime their connected to the internet. I am making this for the BlackBerry Playbook if that makes a difference and also can it be really simple instructions like I said I'm very new to this.

    Ok, I think you might have your message title worded wrong. I think you want RSS feeds in a FLEX application, not Flash Builder 4 itself??
    I, myself, am trying to implement an RSS feed into my application but have other priorities unfortunately.
    The only bookmark I find in my list is this:
    http://insideria.com/2009/04/flex-101-consuming-a-simple-rs.html
    ^ That might help you get started. I cant find any other examples in my bookmarks, but if I do I'll post them here.
    OR, if I get my own code up and working (which should be within the next week hopefully), I'll post that up too. Cheers!

  • Flex framework - software needed question

    hi, and thank you for your replies in advance.
    i'm a bit new to flex framework and flash.
    I want to know what software and languages I would need for the following website or web application
    I have some knowledge with programing and markup languages like:
    c/c++, java
    html/css/javascript
    php/sql
    Professional design experience with
    Photoshop/illustrator
    What i want to achieve is:
    Build a rich internet application.
    Unified layout that will start fast. very small loading time (less than 3 seconds including the background and menus).
    I need a search and category filter (get input text and check boxes and send them to database and retrieve the query)
    When an icon or button is clicked, data is dynamically retrieved and automatically updated (animation on the whole page or text/image area when an icon or button is clicked) (no page refresh)
    Some caching or background downloads when the site is idle, but give priority whenever an icon is clicked.
    Some animated charts and site stats.
    Some animated images where you can click on a portion of the image to trigger some text/images on to the image like tips and help
    Site updates send subscription members (rss, email, facebook, twitter)
    If there is an easy way to update the site, rss, email, facebook account, and twitter account at the same time
    Optional (I want to create a discussion board (forum like) integrated in the site)
    Sorry about the rambling.
    Now for the questions:
    If I already have Flash cs5, do I need:
    1-      Flex4 sdk
    2-      Flash builder 4 (does it offer something not included in flash cs5, or is it just a better interface for programing)
    3-      What does flash catalyst do
    4-      If I’m not streaming video do I need the flash servers
    5-      Do I need flash services
    6-      When I finish the web application. How much work would it take to make a mobile (Android or iPhone maybe) and a desktop (adobe air) versions. Is it as easy as making a file export in different format, or just minor tweaks to make it work?
    7-      Last thing, what references or books do I need?

    As a new Flex user maintaining part of an existing project, I would say to be very cautious.
    I haven't used robotlegs, but attempting to learn flex and robotlegs and convert part of an existing project to use it is a recipe for disaster.
    In my experience companies are interested in quick results when in maintenance mode on existing projects and won't be interested in excuses when the new developer messes up an existing project by trying to introduce a framework they know nothing about.
    Get comfortable with basic Flex. If you want to try RobotLegs, create a test project to play with.
    Don't add robotlegs to a live project when you are not sure of either flex or the framework. Or if you do, start looking for your next job!

  • Flex is slow

    Hi gyus
    i have around 16000 line of code
    which is already broke up in two mxml file and five class
    file
    still what ever i want to change in my application flex is
    taking time
    why so it is happening
    i turn off my auto refresh option ,auto built option
    Plz Help me out
    ThanX

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    XML (Flex 3):
    The XML class contains methods and properties for working
    with XML objects. The XML class (along with the XMLList, Namespace,
    and QName classes) implements
    Link:
    http://livedocs.adobe.com/flex/3/langref/XML.html
    Adobe - Flex Quick Starts: Using XML data:
    The ECMAScript for XML specification in Adobe Flex defines a
    set of classes and functionality for working with XML data. These
    classes and functionality are
    Link:
    http://www.adobe.com/devnet/flex/quickstart/accessing_xml_data/
    XML (Flex 2 Language Reference):
    RSS feed | Send me an e-mail when comments are added to this
    page | Comment Report. Current page:
    http://livedocs.adobe.com/flex/2/langref/XML.html
    Link:
    http://livedocs.adobe.com/flex/2/langref/XML.html
    Bruce Phillips' Blog: Using XML in Flex - Tutorial Part 4 -
    WebService:
    Bruce Phillips Flex and ColdFusion Tutorials: Using XML in
    Flex - Tutorial Part 4 - WebService.
    Link:
    http://www.brucephillips.name/blog/index.cfm/2006/10/22/Using-XML-in-Flex--Tutorial-Part-4 --WebService
    Working with XML -- Flex 2:
    With ActionScript 3.0, there is a new group of classes based
    on the ECMAScript for XML (E4X) specification (ECMA-357 edition 2).
    Link:
    http://livedocs.adobe.com/flex/2/docs/00001910.html
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • RSS feed for AMP missing Video 03?

    First off, thanks for a great, and free, service!
    However, is it just me or is the RSS feed missing Video 03,
    Creating a Flex Builder workspace and project? I can of course view
    this in the regular online player but would love to have it with
    the rest of my offline AMP content.

    Yes, video 3 is missing.
    Don't know if I am the only one here, but I downloaded ALL of
    them over a days time and guess what.... I only have 6 downloaded
    now. Happened twice.
    WTF?????? Why does AMP delete the vids??
    I have downloaded them and moved them out of the app
    data/adobe/local/...cache folder where they live so it don't get
    deleted again. I also have downloaded them with Flashgot.
    Here is the download link for number 3. Who knows when adobe
    will get them online and who knows how long AMP will keep them for.
    http://brightcove.vo.llnwd.net/d6/unsecured/media/1596741613/1596741613_1753265212_Flex-OD T---Video-3---Creating-Workspace-Project.flv?videoId=1601302232&lineUpId=&pubId=1596741613 &playerId=1681730258&playerTag=&affiliateId=#/Flex_in_a_Week_1596741613_1753265212_Flex_OD T_Video_3_Creating_Workspace_Project.flv

  • First time flexer long time flasher

    Hi im having a bit of trouble getting an xml file that uses
    namespaces parsed into my first flex app, the basic structure of
    the xml is as follows::
    <rss version='2.0' xmlns:IJKGD='
    http://www.betadesigns.co.uk/RSS/'>
    --------other stufff-------------contianer etc-----
    <item>
    <title>a title</title>
    <description>a description</description>
    <IJKGD:grammar>
    <IJKGD:grammarID>1</IJKGD:grammar>
    </IJKGD:grammar>
    </item>
    i can get the first two tags into the app ie title and
    description however i cant get the< IJKGD:grammar> tag to
    display this is the code i have attached to a text box
    <mx:TextArea x="20" y="235" width="400"
    htmlText="{dgGrammar.selectedItem.IJKGD:grammar.IJKGD:grammarID}"
    />
    however this throws up an error:: unfortunately it displays
    some characters in chinese dont know why.
    Severity Description Resource In Folder Location Creation
    Time Id
    2 1084: 应该有 rightparen (在 colon
    之前)。 IJKGD.mxml IJKGD line 17
    2006年8月6日 0:35:54 59
    Any help would be much appreciated thanks in advance

    Hi,
    I think you have to create a namespace to access that
    property
    something like
    var ns:Namespace = new Namespace("IJKGD", "
    http://www.betadesigns.co.uk/RSS");
    htmlText.selectedItem="{dgGrammer.selectedItem.ns::grammer.grammerID}"
    William Chan

  • Flex Charting

    I have recently purchased Flex Charting and added the serial
    number to the License Management section in Flex Builder 2 and now
    all of my charts that I have created previously are not displaying
    at all. I am getting an error telling me this
    "Severity Description Resource In Folder Location Creation
    Time Id
    1 Design mode: Error creating item ColumnChart in parent
    Canvas "Mortgage Calculator". Please choose Design > Refresh to
    refresh design mode. ProductDetails.mxml flexstore/productsView
    January 11, 2007 10:59:59 AM 2328"
    However the "refresh" option does nothing to solve the
    problem. Any idea what is wrong?

    What is the result format you're setting on your HTTPService
    request?
    "alice_data" <[email protected]> wrote in
    message
    news:g6novb$gpl$[email protected]..
    > Hi,
    >
    > I am wondering if anyone has tried to extract some
    information from the
    > database and make attempts of plotting it using Flex
    Charting. My code is
    > in
    > the following, and the database output brings back all
    the results I
    > desired,
    > but when I run the script, I was given the following
    error:
    >
    > ReferenceError: Error #1069: Property theta not found on
    > mx.rpc.http.mxml.HTTPService and there is no default
    value.
    This suggests that your HTTPService result is coming back in
    a format where
    you can't just get the properties off of it. You may need to
    set the result
    format to e4x, and since it is rss you may need to use one or
    more
    namespaces.
    HTH;
    Amy

  • Help with RSS

    Hi guys
    Basically, I would like to create a panel for Photoshop CS4
    getting an RSS feed of my video tuts. I know how to put the video
    window but I would like the RSS links to show the video once
    clicked. Kind of like what Scott Kelby did
    HERE
    but instead of showing the blog post, it would be the video that
    would play.
    On the back end, would I have to create a separate feed and
    blog page with direct video links?
    Thanks!

    If you know action script and MXML, you can modify the RSS
    sample in the Flex Builder.
    Use the VideoDisplay control show the video.

  • Reading XML with Flex

    Ok I've gone through Ed's awesome Flex tutorial in the wiki but for some reason I simply can't nail this one.
         <mx:Label y="10" text="Craig's Movie List" id="lblTitle" enabled="true" horizontalCenter="0" fontSize="19" fontFamily="Arial" fontWeight="bold" fontStyle="italic"/>
         <mx:HTTPService id="httpRSS" url="http://creator.zoho.com/ccmehil/rss/30/" resultFormat="e4x" />
         <mx:DataGrid id="entries" verticalCenter="11" horizontalCenter="0" width="480" dataProvider="{httpRSS.lastResult.channel.item}" height="230">
              <mx:columns>
                   <mx:DataGridColumn headerText="Name" dataField="title" width="300"/>
                <mx:DataGridColumn headerText="Rating" dataField="zc:Rating" width="50"/>
                <mx:DataGridColumn headerText="Type" dataField="zc:Genre"/>
                <mx:DataGridColumn headerText="Runtime" dataField="zc:Runtime"/>
              </mx:columns>
          </mx:DataGrid>
    The RSS looks like
    <item>
      <title>Winnie the Pooh - A New friend for Winnie Pooh</title>
      <link>http://creator.zoho.com/ccmehil/view/30/record/7987000000110023/</link>
      <description><b>Title</b> : Winnie the Pooh - A New friend for Winnie Pooh<br/><b>Genre</b> : Zeichentrick<br/><b>Rating</b> : G<br/><b>Director</b> : <br/><b>Year</b> : <br/><b>Runtime</b> : 65<br/><b>Status</b> : Available</description>
      <guid isPermaLink="true">http://creator.zoho.com/ccmehil/view/30/record/7987000000110023/</guid>
      <zc:Title>Winnie the Pooh - A New friend for Winnie Pooh</zc:Title>
      <zc:Genre>Zeichentrick</zc:Genre>
      <zc:Rating>G</zc:Rating>
      <zc:Director></zc:Director>
      <zc:Year></zc:Year>
      <zc:Runtime>65</zc:Runtime>
      <zc:Status>Available</zc:Status>
    </item>
    So why can't I access the zc elements? What am I missing?

    check this documentation on how to handle namespace
    http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=dataservices_099_17.html

Maybe you are looking for

  • Quits while importing; pictures in library folder don't show in window

    Quits while importing; photos are in iPhoto Library, but don't show up I have about 6500 photos in iPhoto 5.0.4. Everything worked well until this week when I went to import a series of new pictures. I import from a Scandisk card reader. The process

  • URGENT Macbook Pro not connecting to Airport Express!!

    Ok So The network is there and my room mates macbook can connect to it.. Whenever I try to and it asks for a password and i try to type it in it just makes the ok button unclickable and i tried doing it through settings and comes up invalid password

  • Photoshop Elements 10 - Proper Settings for Creating Graphic for Film

    Hi, I'm fairly new to Photoshop Elements. What would be the proper project settings and export settings when creating a quality graphic for using in a film? (I'm using Premiere for video editing.) Thank you so much for your time and patience. I've be

  • Type size and property presets?

    I ran across a video or article a while back and can't seem to find.  Here is what I'm trying to accomplish and maybe some tips/links from the Forum can help this fron-end designer out! building site pages via Photoshop for markup development, it suc

  • Sales Delivery Reports. Fields

    Dear All Experts. I making a Sales Order Reports. Using Following Tables. VBEP , VBAP ,  VBPA , VBKD , VBAK , LIKP , LIPS , KNA1 I successfully Search Other Fields. But i cant Find exact field for PENDING QTY, PENDING WEIGHT, ORDER QTY, PENDING VALUE