Rendering XML Bug?

This is the most strange issue...
I'm generating XML and returning it to the page for output. I've got 4 pages that do the exact same thing with the exact same code... variables are the only things that change.
For 3 of the pages, the XML data render in the browser and looks wonderful in View Source.
For 1 elusive page, the XML data does not render in the browser, but the XML is clearly there in View Source.
I'm beginning to reason that this is cause some phantom issue that I can't seem to solve, and it isn't making any sense whatsoever!
Anyone have something similar happen to them or know of a solution?

This is the function that creates the XML:
<cfscript>
               // TODO move the below function from user to library
               var qAssets      = session.user.getLibraryAssets( libraryId=arguments.libraryId, filterByType=arguments.filterByType );
               var assets           = xmlNew();
          </cfscript>
          <!--- TODO: use xml functions to do this --->
          <cfsavecontent variable="assets">
               <cfoutput><assets></cfoutput>
               <cfif qAssets.recordCount gt 0>
                    <cfoutput query="qAssets">
                         <#lCase(qAssets.assetTypeName)#>
                              <id>#qAssets.id#</id>
                              <name>#xmlFormat(qAssets.name)#</name>
                              <data>#xmlFormat(qAssets.data)#</data>
                              <isAdmin>#iif( isDefined("qAssets.isAdmin") and qAssets.isAdmin eq 1, de(1), de(0) )#</isAdmin>
                         </#lCase(qAssets.assetTypeName)#>
                    </cfoutput>     
               </cfif>
               <cfoutput></assets></cfoutput>
          </cfsavecontent>
          <cfreturn assets>
This is the page the XML is finally rendered in:
<cfsetting enablecfoutputonly="true">
<!--- 0 = all libraries --->
<cfset variables.xmlAssets = application.library.getAssetXml( libraryId=0, filterByType=application.assetType.VIDEO )>
<cfoutput>#xmlParse(xmlAssets)#</cfoutput>

Similar Messages

  • Rendering XML?

    I created new "PolicyPropertyBundle" and binding it with my class object("MYTESTING")
    ,but 'type test.xml' returns "The system cannot find the file specified."
    following is data of mytesting object.
    Isn't it very simple?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>
    select * from odm_mytesting;
    ID
    TITLE
    AUTHOR
    OPERATOR
    COMPANY
    9634
    ACT ON EXTERNAL AUDIT
    Veronica
    kyoungseop
    01 inc
    <HR></BLOCKQUOTE>
    I think all of servers started well.
    log files does not report any error.
    I tried to Render into browser by following direction.
    http://technet.oracle.com:89/ubb/Forum36/HTML/000444.html
    but 'Document.renderAsReader("SmbRenderer",null,null)' returns null.
    what's going on?
    There are big problems, but I don't know how to solve them and where they are.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>
    public Reader getContent()
    System.out.println("in getContent() m_XmlDocument:"+m_XmlDocument);
    Reader r=null;
    try
    System.out.println("m_XmlDocument.renderAsReader('SmbRenderer',null,null)");
    r = m_XmlDocument.renderAsReader("SmbRenderer",null,null);
    System.out.println("Reader getContent()"+r);
    catch (IfsException ie)
    System.out.println("exception in getContent() reader="+r);
    ie.printStackTrace();
    return r;
    <HR></BLOCKQUOTE>
    java web server's message
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>
    javawebserver: XmlRendererBean(request,response): Bean Created.
    javawebserver: obtainSession(request,response): Servlet Parameters =
    javawebserver: Parameter List:
    javawebserver: path
    javawebserver: Parameter Processing Completed.
    javawebserver: JspUtilities.obtainSession: Unable to get Session. - Attempting to create new Session
    javawebserver: JspUtilities.obtainSession: Creating new Session.
    javawebserver: Username = ksko
    javawebserver: Password = ksko
    javawebserver: Service = IfsDefault
    javawebserver: Schema Password = ifssys
    javawebserver: JspUtilities.obtainSession: Session Created.
    javawebserver: JspUtilities.obtainSession: Login Object Saved.
    javawebserver: getObject(request,response): Path = /home/ksko/testingfolder/test.xml
    javawebserver: else
    javawebserver: Public object =test.xml
    javawebserver: getObject(request,response): Object is a MYTESTING
    javawebserver: PublicObject.getResolvedPublicObject() =test.xml
    javawebserver: in getContent() m_XmlDocument:test.xml
    javawebserver: m_XmlDocument.renderAsReader('SmbRenderer',null,null)
    javawebserver: Reader getContent()null
    javawebserver: xmlBean.getContent()
    javawebserver: new BufferedReader(reader)
    javawebserver: Error during JSP page processing: /ifs/jsp-bin/XmlRendererJSP.jsp
    javawebserver: java.lang.NullPointerException
    <HR></BLOCKQUOTE>
    Renderring page's message
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>
    Error during JSP page processing
    java.lang.NullPointerException
    at java.io.BufferedReader.readLine(Compiled Code)
    at ifs.jsp_sbin._XmlRendererJSP._jspService(Compiled Code)
    at oracle.ifs.protocols.http.jsp.pagecompile.jsp.runtime.HttpJspBase.service(HttpJspBase.java:94)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at oracle.ifs.protocols.http.jsp.IfsJspServlet.runServlet(IfsJspServlet.java:865)
    at oracle.ifs.protocols.http.jsp.IfsJspServlet.processJspPage(Compiled Code)
    at oracle.ifs.protocols.http.jsp.IfsJspServlet.service(IfsJspServlet.java:240)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at com.sun.server.ServletState.callService(Compiled Code)
    at com.sun.server.ServletManager.callServletService(Compiled Code)
    at com.sun.server.ProcessingState.invokeTargetServlet(Compiled Code)
    at com.sun.server.http.HttpProcessingState.execute(Compiled Code)
    at com.sun.server.http.stages.Runner.process(Compiled Code)
    at com.sun.server.ProcessingSupport.process(Compiled Code)
    at com.sun.server.Service.process(Compiled Code)
    at com.sun.server.http.HttpServiceHandler.handleRequest(Compiled Code)
    at com.sun.server.http.HttpServiceHandler.handleRequest(Compiled Code)
    at com.sun.server.HandlerThread.run(Compiled Code)
    <HR></BLOCKQUOTE>

    Thanks Mark.
    Finally I got rendered xml files from iFS repository....
    I appreciate your continuous help..
    m_XmlDocument.renderAsReader("SmbRenderer","SmbXmlRenderer",null);
    and
    m_XmlDocument.renderAsStream("SmbRenderer","SmbXmlRenderer",null);
    work....
    rest of them does not.
    Even though the result is not what I want, it is too simple, I am glad to see that.
    Thanks again Mark..
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>
    If rendererName is not null, the Policy named rendererName for the operation specified by rendererType is obtained. The fully-qualified classname of the Renderer is contained in the IMPLEMENTATION attribute of that Policy.
    If rendererName is null, the default Policy for this LibraryObject for the operation specified by rendererType is obtained. The fully- qualified classname of the Renderer is contained in the IMPLEMENTATION attribute of that Policy.
    <HR></BLOCKQUOTE>

  • Dreamweaver, php-xml bug

    I have a simple php file that generates an xml file. When I
    save this file and close it, dreamweaver changes some of the
    formatting when I reopen the file. Specifically, dreamweaver
    de-capitalizes some of the text in the document.
    Example:
    The code:
    $this->xml_request = '
    <PickupType>
    <Code>01</Code>
    </PickupType>';
    is converted to
    $this->xml_request = '
    <PickupType>
    <code>01</code>
    </PickupType>';
    after the file is saved, closed, and reopened. Note the Code
    tag has been chanced to code, which breaks the API I'm working
    with. This xml is always within php code as above as I've been
    using it..
    This happens on several fields, Code and Address so far, and
    happens to the same fields every time, no matter the document, or
    how many times they appear in the document. No other tag names are
    affected as far as I've found. I've tried completely uninstalling,
    removing all configuration files, and re-installing Dreamweaver and
    get the exact same affect every time.
    I really need to get this bug / mis-configuration fixed. Any
    suggestions would be greatly appreciated.
    This is CS3 (DW9) running on XP Pro.

    jestep,
    In Preferences > Code Format, make sure that the "Override
    case of"
    settings for "Tags" is turned off.
    HTH,
    Randy
    > I have a simple php file that generates an xml file.
    When I save this file and
    > close it, dreamweaver changes some of the formatting
    when I reopen the file.
    > Specifically, dreamweaver de-capitalizes some of the
    text in the document.
    >
    > Example:
    >
    > The code:
    > $this->xml_request = '
    > <PickupType>
    > <Code>01</Code>
    > </PickupType>';
    >
    > is converted to
    >
    > $this->xml_request = '
    > <PickupType>
    > <code>01</code>
    > </PickupType>';
    >
    > after the file is saved, closed, and reopened. Note the
    Code tag has been
    > chanced to code, which breaks the API I'm working with.
    This xml is always
    > within php code as above as I've been using it..
    >
    > This happens on several fields, Code and Address so far,
    and happens to the
    > same fields every time, no matter the document, or how
    many times they appear
    > in the document. No other tag names are affected as far
    as I've found. I've
    > tried completely uninstalling, removing all
    configuration files, and
    > re-installing Dreamweaver and get the exact same effect
    every time.
    >
    > I really need to get this bug / mis-configuration fixed.
    Any suggestions would
    > be greatly appreciated.
    >

  • Sax parse xml bug , I can't figure it out!

    (1) orginal xml file as followings:
    <row>
    <field name="productBundleId">22456</field>
    <field name="localPath">/products/01092008/RealArcade/STD_StonesOfKhufu_NOK6030_EN_v1_0_12.jar</field>
    <field name="description">/products/01092008/RealArcade/STD_StonesOfKhufu_NOK6030_EN_v1_0_12.jad</field>
    </row>
    (2) task parsing the above and and retrieve the value and set it to a javabean:
    (3) Using the SAX as the xml file is very big , about 1M
    * @author mertef
    public class XerseHandlerImp extends DefaultHandler implements MF_CONSTANTS
         List                              m_data               = new ArrayList();
         private CompareSimpleBean     m_csb               = null;
         private String                    m_tmpVal          = "";
         private boolean                    m_id               = false;
         private boolean                    m_jar               = false;
         private boolean                    m_jad               = false;
         private String                    m_whitespace     = "";
         private boolean                    m_character          = false;
         @Override
         public void characters(char[] ch, int start, int length) throws SAXException
    *          // System.out.println(new String(ch,start,length));*
              m_tmpVal = new String(ch, start, length);*
    if (jad) System.out.println(tmpVal);*
         @Override
         public void endElement(String uri, String localName, String name) throws SAXException
              m_character = false;
              if (name.equals(MOVAYA_ROW))
                   m_data.add(m_csb);
              if (name.equals(MOVAYA_FIELD))
                   if (m_id)
                        m_csb.setId(m_tmpVal);
                        m_id = false;
                        m_jar = false;
                        m_jad = false;
                   else if (m_jar)
                        m_csb.setJarPath(m_tmpVal);
                        m_id = false;
                        m_jar = false;
                        m_jad = false;
                   else if (m_jad)
                        m_csb.setJadPath(m_tmpVal);
                        m_id = false;
                        m_jar = false;
                        m_jad = false;
         @Override
         public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException
              m_whitespace = new String(ch, start, length);
    (4) please pay attention to the bold area , the method:
    character()
    I declare a variable "m_character" to decide if the parser don't read content of
    an item in above xml file ,such as
    /products/01092008/RealArcade/STD_StonesOfKhufu_NOK6030_EN_v1_0_12.jar
    (5)error:
    but some time it only reads part of the character contents:
    eg:
    /products/01092008/RealAr
    cade/STD_StonesOfKhufu_UnitedStates_LGCU515_EN_v1_0_12.jad
    It means that they parser comes across some character when parsing,
    but in fact it doesn't.
    You can use println() to monitor the outputs.
    So I need to declare some boolean variable to decide whether all the content of one item has read fully.
    (6)
    May be its a bug, my xml file don't include any special charactor.

    The problem is that the character data might be delivered in multiple chunks, this means that the characters method might be called more than once for the same element.
    One way around this is to create a StringBuilder or something similar in the startElement() method, and fill it with the characters in the characters() method and read it in the endElement() method.
    For more information: http://forum.java.sun.com/thread.jspa?threadID=5255925

  • Rendering XML output (with large number of columns) to browser breaks

    We have a stored procedure in our database which returns a cursor with over 400 columns.  When we call the stored procedure from within the QT (using mode FixedQueryWithOutput), it renders just fine and very quickly in CSV format.  however, when we attempt to render it (e.g. post it) as HTML format or XML format, it takes a very long time to render (even thought the results come back very quickly). 
    We are using the following specs:
    OS:  Microsoft Vista
    Browser:  IE (v7.0)
    Java:  Java 6, patch 20 (plug-in disabled)
    Any hints/help would be greatly appreciated!

    Hi Aaron,
    Can you limit the output to a very few rows on the 400 columns you have to render?  It might be a memory or a XML parser constraint on the output client.
    Other option: save the XML in a file (WEB area) then try to export & open the saved data with the browser.
    This will tell you if  the error is at the client level. Also, you can examine the output easily, offline.
    This is practically what I'm doing to analyze XML data transferred to and from SAP using various RFCs.
    IE 8.0 never crashed with XMLs having a size of 3Mb or more (approx 60columns, 10000+ rows, 14 different tables).
    Paul.

  • Flatten to XML bug with unit variables in classes

    Hi,
    I just spent about 5 hours trying to figure out why some of my class data kept resetting itself to zero.  Turns out that the part that kept resetting was the part that had a unit variable in it, and that fails to load properly from the Unflatten From XML VI.  It works fine if it's just a cluster, it's being in a class that's the problem.
    I've attached the zip file with the example VIs.
    Could I ask that someone with LV 2014 try this to see if the bug exists there?  
    Right now we're running 2011, but we plan a companywide shift to 2015 as soon as it comes out (and therefore, 2011 drops from extended support).  I'd like to know if I can just wait for the upgrade and then it will work, or if I need to redo about ~15 variables in classes with units on them that I had been counting on loading and saving using the built-in XML functions.

    I was planning on trying for a CAR only after confirming the problem hadn't been quietly fixed in the last 3 years.  I couldn't find anything in the changelogs but sometimes you never know...
    Now that UliB has confirmed it's still a problem I will likely do so.

  • Rendering xml-table into logical filename in SAP R/3

    Hi,
    I am trying to translate an xml-table with bytes into a logical filepath in SAP R3.
    Do I have to use the method gui-download or shall I loop the internal xml-table?
    When I tried to loop the xml-table into a structure, and then transfering the structure into the logical filename, I get problems with the line breaks in my xml-file. How do I get the lines to break exactly the same as I wrote them in my ABAP-code?
    Edited by: Kristina Hellberg on Jan 10, 2008 4:24 PM

    I believe you posted in the wrong forum.
    This forum is dedicated to development and deployment of .Net applications that connect and interact with BusinessObjects Enterprise, BusinessObjects Edge, or Crystal Reports Server. This includes the development of applications using the BusinessObjects Enterprise, Report Application Server, Report Engine, and Web Services SDKs.
    Ludek

  • Rendering of bug report broken

    Hi
    I just reported   http://scn.sap.com/thread/3583863
    I also got IE10 installed by SAP IT today ,see
    Now, the rendering of   Tiny Link to SCN Wiki pages can not be used from non-SAP networks
    looks bad , e.g.

    I had reported the same issue a half year ago Shadow texts at LinkedIn and Facebook buttons
    with IE11 and Chrome.
    Right now I can see the issue with this Tiny url link discussion from your screenshot, and it is still faulty at the page I reported: How to call organize favorites functionality from custom iview
    but any other discussion that I open today does not have this issue.
    I just compared the source and it looks like the titel of the discussion as well as a preview of the discussion content is taken and included to these social network  share buttons. I guess there is some issue with special characters used in the content that makes this text appear around the button
    The first post below is without this ghost text, the second with this ghost text:
    <<<<div class="social-btn linkedin">
                    <a class="stat-btn" href="http://www.linkedin.com/shareArticle?mini=true&url=http://scn.sap.com/thread/3487766&title=Shadow%20texts%20at%20LinkedIn%20and%20Facebook%20buttons&summary=In the detail view of a discussion the help text that usually  appears when you move the mouse over a button stays permanent in front  I get this in Chrome and IE11" target="_blank" title="Share on LinkedIn"></a>
            </div>
    >>>>
            <<<<<div class="social-btn linkedin">
                    <a class="stat-btn" href="http://www.linkedin.com/shareArticle?mini=true&url=http://scn.sap.com/thread/3448257&title=How%20to%20call%20organize%20favorites%20functionality%20from%20custom%20iview&summary=Hi All,      I am using the sap Portal 7.31 using AJAX framework page. In the Tool bar level, SAP provided the functionality for "Favorites" -> organize favorites link.    If you click on this link "O..." target="_blank" title="Share on LinkedIn"></a>
            </div>>>>>>

  • Oracle 10.2.0.3 apparent XML bug

    A very simply query using 'string-join' fails but works with 'concat'. The error we get is: ORA-19112: error raised during evaluation: java.lang.OutOfMemoryError
    The basic query is (its attempting to join "_A" to about 5000 rows - see the query below) :
    xquery for $x in ora:view("USER_A","TABLE_A")/ROW
    where $x/ITEM_ID/text() ne 999
    return
    <a>{string-join(($x/ITEM_ID/text(),"A"),"_")}</a>
    Is this a bug and will it be fixed when 10.2.0.4 comes out?
    Thankyou for your assistance

    I think you compare apples with oranges. string-join and concat behave very differently and are not interchangeable:
    michaels>  CREATE TABLE table_a
    AS SELECT '999' item_id FROM DUAL UNION ALL
    SELECT '997' item_id FROM DUAL UNION ALL
    SELECT '998' item_id FROM DUAL UNION ALL
    SELECT '999' item_id FROM DUAL
    Table created.
    michaels>  select * from XMLTable('for $x in ora:view("TABLE_A")/ROW
                            where $x/ITEM_ID/text() ne "999"
                             return <i>{string-join(($x/ITEM_ID/text(),"A"),"_")}</i>')
    COLUMN_VALUE   
    <i>997_A</i>   
    <i>998_A</i>   
    2 rows selected.
    michaels>  select * from XMLTable('for $x in ora:view("TABLE_A")/ROW
                            where $x/ITEM_ID/text() ne "999"
                             return <i>{concat(($x/ITEM_ID/text(),"A"),"_")}</i>')
    Error at line 1
    ORA-19279: XQuery dynamic type mismatch: expected singleton sequence - got multi-item sequence
    michaels>  select * from XMLTable('for $x in ora:view("TABLE_A")/ROW
                            where $x/ITEM_ID/text() ne "999"
                             return <i>{concat($x/ITEM_ID/text(),"A","_")}</i>')
    COLUMN_VALUE   
    <i>997A_</i>   
    <i>998A_</i>   
    2 rows selected.

  • Importing XML Bug Feature

    PB 12.5.1
    I realize this has been the case since the beginning but I am finally asking the question - why would ImportString(XML!, lsXML) not import the values above the Start Detail setting???  This has always been an annoyance because you can Export the data but not turn around and Import it!  It seems so simple to support so I can only assume there is just some technical issue that prevents it from working.  If anyone can shed light on why I would love to know.
    That being said, is there a better solution then finding the data in the XML string and then setting the columns in code?  My XML is typically pretty small in size so using PBDOM seems like overkill.  Any other suggestions or tricks that one might have to use the power of the DW to handle it?
    Thanks,
    Chris Craft

    If anyone is interested...I ended up createing 2 template names (HeaderValues, DetailValues) in the DW.  One has the 'Start Detail' set for the highest node which gets me the header elements.  The other one has the 'Start Detail' set on the actual detail row.  I import the XML using the first template, get my header values and then change the template to DetailValues and Import again.  Now I just loop through the detail rows in the datastore.  Simple!
    Chris Craft

  • Hiding some part of rendered XML form

    Hi all,
    is it possible to hide some part of displayed xml form? For example, I have XML form with texts in two languages (two schema nodes, one for each language). I would like to show only text in users language. Users language could be determined from UME or from personalization of iView.
    Thank you very much for answers.
    Zdenek

    Hi Wassilios,
    thanks for helpful answer. Exists some documentation about these xsl files (I mean KM specific information)?
    Regards,
    Zdenek
    Message was edited by: Zdenek Smolik

  • Random audio cross fade (dissolve) rendering issue - bug?

    Hi, there -
    I'm having the same issue as this guy, who it looks like never received a reply:
    http://discussions.apple.com/thread.jspa?messageID=6536079&#6536079
    To quote:
    "I've got a sequence with 18 moderately sparse tracks. When adding cross-fades, often audio from other tracks will randomly play during a transition after rendering. This is audio from other tracks at the same point in the sequence.
    The same thing happens if I cut the audio in fresh from the source, copy the problem area into its own teeny sequence and try again, trash prefs, etc. It also plays back with the mystery tracks soloed or not."
    The cross-fades play through fine as expected until rendered.
    Thanks!

    Maybe I wasn't being entirely fair.
    Most of the time, FCP does fine for what I need.
    But when it chokes on something, I give it a few more tries then move on to something proven to work. (Troubleshooting can only last so long with looming deadlines.)
    My guess is, if Final Cut comes bundled with programs like Motion and Soundtrack, that means there are probably going to be some things that FCP won't do particularly well on it's own.
    Like we've said to the Avid die hards: These are just tools - use what works.
    You can get a screw out with a pair of pliers, but it's a lot easier with a screwdriver. Err, unless the screw is stripped. But that just means there's a problem with your... media?

  • Premiere 7 XML Bug?

    Hello There,
    I've been testing the waters considering my first Premiere CC project.  I've been using Premiere almost exclusively for a year and a half.
    I've read here that opening projects created in CS6 in CS7 results in performance issues for some so I exported an XML of some footage from a CS6 project, and imported to CS7.  All the color corrections came in wrong, looking like a bleach bypass:
    When I import the sequence from CS7 it looks fine:
    Thanks!
    Gerry

    Hi Gerry.
    When we updated from CS6 to CC, we found that the projects opened without a hitch. It asked us to save off a new project but aprt from that, it was like using the original project file. We've done this nearly 30 times now, each with CS6 project files opening up in CC and now issues.
    Have you actually had permormance issues with this?
    Paul

  • Rendering xml in apex 4.2

    Hi,
    After upgrading to APEX 4.2 I can not see the reference to swf file like below code from 4.1 version.
    How can I do this?
    Thanks.
    <embed src="/i/flashchart/anygantt_4/swf/AnyGantt.swf?XMLFile=http://fedora.doosanimgb.com:8080/apex/apex_util.flash?p=121:4:548438967075279:FLOW_FLASH_CHART5_R3595001622092988_en"
    quality="high"
    width="1200"
    height="600"
    name="c3595001622092988"
    scale="noscale"
    align=""
    allowScriptAccess="sameDomain"
    allowNetworking="all"
    type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    wmode="transparent"
    FlashVars="initText=Initializing...&xmlLoadingText=Loading data...&resourcesLoadingText=Loading resources...&noDataText=No data found.&waitingForDataText=Loading data. Please wait.&templatesLoadingText=Loading templates...">
    </embed>

    Hello Gabriel,
    Just changed the res chart query from:
    SELECT NULL          LINK,
           em1.EMPno        ID,          
           em1.ename         NAME,         
           null     PARENT_ID,  
           to_timestamp(to_char(sysdate + rownum,'dd-mon-yyyy hh24:mi'),'dd-mon-yyyy hh24:mi')    ACTUAL_START,
           to_timestamp(to_char(sysdate + rownum +10/24,'dd-mon-yyyy hh24:mi'),'dd-mon-yyyy hh24:mi')      ACTUAL_END    
    FROM   emp em1,
               emp em2to
    SELECT NULL          LINK,
           em1.EMPno        ID,          
           em1.ename         NAME,         
           null     PARENT_ID,  
           to_timestamp(to_char(sysdate + rownum,'dd-mon-yyyy hh24:mi'),'dd-mon-yyyy hh24:mi')    ACTUAL_START,
           to_timestamp(to_char(sysdate + rownum +10/24,'dd-mon-yyyy hh24:mi'),'dd-mon-yyyy hh24:mi')      ACTUAL_END    
    FROM   emp em1After upgrading to APEX 4.2 I can not see the reference to swf file like below code from 4.1 version.
    >
    Yes indeed the Region Source for Charts is not shown in 4.2. But don't know why!
    <embed src="/i/flashchart/anygantt_4/swf/AnyGantt.swf?XMLFile=http://fedora.doosanimgb.com:8080/apex/apex_util.flash?p=121:4:548438967075279:FLOW_FLASH_CHART5_R3595001622092988_en"
    quality="high"
    width="1200"
    height="600"
    name="c3595001622092988"
    scale="noscale"
    align=""
    allowScriptAccess="sameDomain"
    allowNetworking="all"
    type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    wmode="transparent"
    FlashVars="initText=Initializing...&xmlLoadingText=Loading data...&resourcesLoadingText=Loading resources...&noDataText=No data found.&waitingForDataText=Loading data. Please wait.&templatesLoadingText=Loading templates...">
    </embed>Hope it helps!
    Regards,
    Kiran

  • UIX XML bug or my fault??

    I'm trying to create a messageInputText element with a different style-class for the label.
    I tried e.g.:
    <messageTextInput contentStyleClass="OraInstructionTextStrong" styleClass="OraInstructionTextStrong"/>
    But only the text in the input field and NOT the label is displayed in the selected font.
    How can I achieve that. Do I have to use separate elements for the label and the inputField

    There's nothing especially wrong with using inlineMessage and textInput
    together, though messageTextInput is far more convenient (and hooks up
    a couple of things for you automatically).
    But your question: you can't actually set the CSS style of the prompt.
    This is intentional, since our look-and-feel standards require all prompts
    to look the same. You can always get around this by not using inlineMessage,
    and instead hooking up a styledText and a textInput.
    The difference between styleClass and contentStyleClass is non-obvious, but
    basically boils down to (for messageTextInput, for example)
    <td class="contentStyleClassHere">
    <input class="styleClassGoesHere" ...>
    </td>
    This makes a bigger difference when you add an "end" child, since styleClass
    doesn't apply to "end", but contentStyleClass does.
    99% of the time, you'll be fine just setting styleClass.

Maybe you are looking for

  • ITunes accounts on one computer

    I am using Vista (have not upgraded to 7 yet) and have itunes installed on two separate profiles. When I am using it in one profile and the other profile is logged on (but not in use) I get tens and tens of itunes pop ups and error tones, as if both

  • Problem loading swf which reads data in a local file

    Hi, Using flex with a online project, I have to load a swf file, which reads data in a xml file (it works fine if I open it with flash player) I do a very simple test : <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"                 layout=

  • Best Practice? On BTF

    Hi folks,    I'm going to use following technique in my project. BoundedTaskflow(here i unchecked flag use Page Fragments). i'll drop a jspx page into the BTF. Is oracle recommended way? I made a simple example. it's working fine. but i don't know wh

  • Which plan should I purchase to learn Photoshop and Bridge? [was: Please Help!]

    Hi, I recently purchased a Adobe Photoshop CC book and we have to download Adobe Photoshop and Bridge, Can you please tell me what plan should i purchase?

  • Cant purchase ANY tv shows from itunes

    Itunes keeps teling me that the shows i am trying to purchase became unavailabe as I was trying to purchase them. I am in Canada and am having problems with this Paul