Embedding XML Icon

The line of code causing the problem is:
<mx:Button id="btnStoryListen" icon="@Embed(source='{xmlData.button.(@type=='btnListen').icons}')"/>
This generates the error:
"1067: Implicit coercion of a value type String to an unrelated type Class."
The xml looks like this:
<button position='null' type='btnListen'>
  <x>null</x>
  <y>null</y>
  <icons>CorporateImages/btnStoryLis.png</icons>
  <downIcons>CorporateImages/btnStoryLisD.png</downIcons>
  <overIcons>CorporateImages/btnStoryLisO.png</overIcons>
</button>
Is there anyway to make this work?

See this link,
http://blog.benstucki.net/?p=42
Here is the sample,
<mx:Button id="btn" icon="{IconUtility.getClass('btn', xmlData.button.(@type=='btnListen').icons)}" />

Similar Messages

  • Error copying application.xml icons: .../bin-release/assets/icons' does not exist

    Hi,
    Whenever I try to export the release build I get error from COmpiler during the process that "Error copying application.xml icons: Resource '/Project_Name/bin-release/assets/icons' does not exist."  I have specified 4 icons in the -app.xml file of sizes 16,32,48,128 which exist in the path specified and files are not corrupt. I have checked and unchecked the compiler directive "Copy non-embedded resources in the Output file" but that has not helped too.
    Can somebody please advise what do I do in this situation?
    We are using
    FB4 with Flex Hero(4.5) SDK and java heap space specified in .ini files is 1224m
    This is somewhat urgent guys...
    Thanks
    Shubhra

    Frank,
    Thank you for your answer. I had not checked (will do so tonight).
    I had considered it adequate to wipe out the entire system directory (thereby wiping out the integrated weblogic server), but perhaps it was not adequate? I did not specify that this is on the integrated server, but that is the case....
    Stuart

  • How to reduce the version of a pdf 1.7 to 1.5 & how to remove all the embedded xml form ?

    Hi Team,
        I am using adobe acrobat x pro. I have a pdf file of version 1.7 which showing embedded xml forms. I tried to remove all the 'embedded xml form' by  using Adobe Live cycle Designer ES2.  Then i tried to reduce the version by using Adobe acrobat x pro but it's still showing that there are some 'embedded xml form' for which it's not allowing me to reduce the vesion of pdf file in Adobe Acrobat x pro and also i want reduce the version of the pdf 1.7 to 1.5. Can you please guide me the step to reduce the pdf file version and how to remove the embedded xml form from the pdf file ?

    If the PDF is the same one from the link in your post here:
    http://forums.adobe.com/thread/1174643
    That PDF being protected may have something to do with why you cannot do what you'd like to.
    Be well...

  • Help: XSU and extracting embedded xml

    Hello
    I am trying to pull data out of a relational database as XML using XSU. Some of the varchar2 columns in the database have embedded XML in them. When I pass in my select statement the returned XML escapes the emedded xml's special characters(turning them into entities) thus defeating the use of the embedded XML.
    Is there some way to force XSU to NOT escape special characters so the embedded XML will remain intact? If not what would be the next best way to extract XML automatically from relational tables? My goal is to store the resulting XML from a query into a clob stored back in the database. So I'm not sure if I could even use XSQL pages.
    Any help would be appreciated.
    Kenneth

    XSU can't help you to escape the special character now.
    But after 9i if you store your xml into xmltype then the problem can be solved.
    Currently you can use xslt to solve the problem,please refer to document demo for xsql.

  • XMLAGG giving ORA-19011 when creating CDATA with large embedded XML

    What I'm trying to achieve is to embed XML (XMLTYPE return type) inside a CDATA block. However, I'm receiving "ORA-19011: Character string buffer too small" when generating large amounts of information within the CDATA block using XMLCDATA within an XMLAGG function.
    Allow me to give a step by step explanation through the thought process.
    h4. Creating the inner XML element
    For example, suppose I have the subquery below
    select
        XMLELEMENT("InnerElement",DUMMY) as RESULT
    from dual
    ;I would get the following.
    RESULT                           
    <InnerElement>X</InnerElement>h4. Creating outer XML element, embedding inner XML element in CDATA
    Now, if I my desire were to embed XML inside a CDATA block, that's within another XML element, I can achieve it by doing so
    select
        XMLELEMENT("OuterElement",
            XMLCDATA(XML_RESULT)
        ) XML_IN_CDATA_RESULT
    FROM
    (select
        XMLELEMENT("InnerElement",DUMMY) as XML_RESULT
    from dual)
    ;This gets exactly what I want, embedding XML into CDATA block, and CDATA block is in an XML element.
    XML_IN_CDATA_RESULT                                                       
    <OuterElement><![CDATA[<InnerElement>X</InnerElement>]]></OuterElement>    So far so good. But the real-world dataset naturally isn't that tiny. We'd have more than one record. For reporting, I'd like to put all the <OuterElement> under a XML root.
    h4. Now, I want to put that data in XML root element called <Root>, and aggregate all the <OuterElement> under it.
    select
        XMLELEMENT("Root",
            XMLAGG(
                XMLELEMENT("OuterElement",
                    XMLCDATA(INNER_XML_RESULT)
    FROM
        (select
             XMLELEMENT("InnerElement",DUMMY) as INNER_XML_RESULT
         from dual)
    ;And to my excitement, I get what I want..
    <Root>
        <OuterElement><![CDATA[<InnerElement>X</InnerElement>]]></OuterElement>
        <OuterElement><![CDATA[<InnerElement>Y</InnerElement>]]></OuterElement>
        <OuterElement><![CDATA[<InnerElement>Z</InnerElement>]]></OuterElement>
    </Root>  But... like the real world again... the content of <InnerElement> isn't always so small and simple.
    h4. The problem comes when <InnerElement> contains lots and lots of data.
    When attempting to generate large XML, XMLAGG complains the following:
    ORA-19011: Character string buffer too smallThe challenge is to keep the XML formatting of <InnerElement> within CDATA. A particular testing tool I'm using parses XML out of a CDATA block. I'm hoping to use [Oracle] SQL to generate a test suite to be imported to the testing tool.
    I would appreciate any help and insight I could receive, and hopefully overcome this roadblock.
    Edited by: user6068303 on Jan 11, 2013 12:33 PM
    Edited by: user6068303 on Jan 11, 2013 12:34 PM

    That's an expected error.
    XMLCDATA takes a string as input, but you're passing it an XMLType instance, therefore an implicit conversion occurs from XMLType to VARCHAR2 which is, as you know, limited to 4000 bytes.
    This indeed gives an error :
    SQL> select xmlelement("OuterElement", xmlcdata(inner_xml))
      2  from (
      3    select xmlelement("InnerElement", rpad(to_clob('X'),8000,'X')) as inner_xml
      4    from dual
      5  ) ;
    ERROR:
    ORA-19011: Character string buffer too small
    no rows selectedThe solution is to serialize the XMLType to CLOB before passing it to XMLCDATA :
    SQL> select xmlelement("OuterElement",
      2           xmlcdata(xmlserialize(document inner_xml))
      3         )
      4  from (
      5    select xmlelement("InnerElement", rpad(to_clob('X'),8000,'X')) as inner_xml
      6    from dual
      7  ) ;
    XMLELEMENT("OUTERELEMENT",XMLCDATA(XMLSERIALIZE(DOCUMENTINNER_XML)))
    <OuterElement><![CDATA[<InnerElement>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX(use getClobVal method if your version doesn't support XMLSerialize)

  • Extract embedded xml from PDF/A-3b (also creation)

    Hello there,
    in the context of a research project, we are currently trying to extract embedded xml from a PDF/A-3b document via code.
    The project deals with establishing a new invoicing standard (Zugferd: ferd-net.de, only german). Invoices are expressed via xml, which is embedded in PDF/A.
    What we are trying to archive is extraction of the xml via java code. For testing purposes, we are currently using an third party skd to extract the invoice-xml, by calling a .EXE file and then picking up the results in java.
    I currently have only one valid example file that can be processed via this sdk. To get more data, i used the test version of acrobat pro to alter the embedded xml file. To be more specific, i deleted the embedded file, added a new xml file, and used preflight to make the PDF conform to /A-3b. Although the file seems to have the same properties as the original, it can no more be processed via the extraction sdk. Since messing around with acrobat does not seem to get me anywhere, i am now looking into extracting data from the pdf my self.
    Is there any present implementation/library/solution for extracting data in a java context? The few third party tools i found are all based of a .net/windows native environment. I have heard rumors about Adobe giving out tools to extract embedded data from PDF/A?
    How is it the other way around? Is it possible to embedd xml into a PDF via Java? Given there allready is PDF file which we can attach to.
    I really appreciate reading and thanks for any help or input!
    Greetings,
    Florian

    Hi Florian,
    I would look for general purpose PDF libraries that can open a PDF and access data objects in it.
    All in all it is not too difficult to get to the embedded XML, once you have a library that can access and read data structures/data objects inside a PDF file. Some understanding of the inner workings of PDF data structures will help you get the job done (e.g. read the section about embedded files in the PDF standard / ISO 32000-1, as well as the chapter about PDF syntax).
    Olaf
    Am 19 Aug 2013 um 13:19 schrieb xfrapp <[email protected]>:
    Extract embedded xml from PDF/A-3b (also creation)
    created by xfrapp in PDF Language and Specifications - View the full discussion
    Hello there,
    in the context of a research project, we are currently trying to extract embedded xml from a PDF/A-3b document via code.
    The project deals with establishing a new invoicing standard (Zugferd: ferd-net.de, only german). Invoices are expressed via xml, which is embedded in PDF/A.
    What we are trying to archive is extraction of the xml via java code. For testing purposes, we are currently using an third party skd to extract the invoice-xml, by calling a .EXE file and then picking up the results in java.
    I currently have only one valid example file that can be processed via this sdk. To get more data, i used the test version of acrobat pro to alter the embedded xml file. To be more specific, i deleted the embedded file, added a new xml file, and used preflight to make the PDF conform to /A-3b. Although the file seems to have the same properties as the original, it can no more be processed via the extraction sdk. Since messing around with acrobat does not seem to get me anywhere, i am now looking into extracting data from the pdf my self.
    Is there any present implementation/library/solution for extracting data in a java context? The few third party tools i found are all based of a .net/windows native environment. I have heard rumors about Adobe giving out tools to extract embedded data from PDF/A?
    How is it the other way around? Is it possible to embedd xml into a PDF via Java? Given there allready is PDF file which we can attach to.
    I really appreciate reading and thanks for any help or input!
    Greetings,
    Florian
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5606424#5606424
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5606424#5606424
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5606424#5606424. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in PDF Language and Specifications by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Olaf Druemmer | Managing Director | callas software GmbH | Schoenhauser Allee 6/7 | 10119 Berlin
    Tel +49.30.4439031-0 | Fax +49.30.4416402 | [email protected] | www.callassoftware.com
    Amtsgericht Charlottenburg, HRB 59615 | Geschäftsführung: Olaf Drümmer, Ulrich Frotscher

  • Extract Embedded XML within XML using XSLT

    Hi,
    We have a unique scenario where our incoming payload is coming from Oracle Database table which has one column of CLOB type storing complete raw XML.
    We need to extract this embedded raw XML and process it further, each XML has a unique XSD associated and we have that details in a separate column.
    So our DBAdapter incoming payload looks like below
    <rows>
    <row>
    <xml_xsd>xyz.xsd</xml_xsd>
    <xml>RAW XML DATA</xml>
    </row>
    <row>
    <xml_xsd>xyzv2.xsd</xml_xsd>
    <xml>RAW XML DATA</xml>
    </row>
    <row>
    <xml_xsd>xyzv2.xsd</xml_xsd>
    <xml>RAW XML DATA</xml>
    </row>
    <row>
    <xml_xsd>xyzv3.xsd</xml_xsd>
    <xml>RAW XML DATA</xml>
    </row>
    </rows>
    How can we leverage XSL Transformation to extract this embedded XML in each row? I need the each individual XML available for further mapping. I can split the payload using XPATH filtering per XSD, but not able to find a solution to parse the embedded XML and assign to a target schema?
    Research done so far points to do two transformations to get resulting XML or using Saxon Parser if available and use the parse() extension.
    Any other ideas/suggestions will be helpful. Challenge here is performance as i need to do this in bulk, will have many rows to process
    Thanks in advance.

    Hi,
    You dont have finite set of XSD's and probably you wont be creating a variable for each type of xsd from that finite set.
    Secondly, xslt doesnt support dynamic xpath as per my knowledge.
    Question:
    Do you really need XSD to do the validation?
    A possible solution to your question would be using java approach as below: Pass the xml and the xpath query
        public String evalXpath(String xml, String xpathQuery) {
              String xpathResult ;
            DocumentBuilderFactory domFactory =
                DocumentBuilderFactory.newInstance();
            try {
                DocumentBuilder builder = domFactory.newDocumentBuilder();
                InputSource is = new InputSource(new StringReader(xml));
                Document dDoc = builder.parse(is);
                XPath xPath = XPathFactory.newInstance().newXPath();
                Object result =
                    (NodeList)xPath.evaluate(xpathQuery, dDoc, XPathConstants.NODESET);
                NodeList nodes = (NodeList)result;
                for (int i = 0; i < nodes.getLength(); i++) {
                    xpathResult = nodes.item(i).getNodeValue();
                    System.out.println(xpathResult);
            } catch (Exception e) {
                e.printStackTrace();
            return xpathResult;
    Thanks,
    Rosh

  • Embedding XML data file into PDF, and reading from it?

    Hello guys,
    Sorry, I'm new to here and new to the Acrobat and its scripting. So, maybe my questions will be a bit stupid, but please help. Thanks.
    So, here what I would like to do. I would like to make a class enrollment form for people, so that they can use it to apply for any class(es) they find interests at my centre.
    The old way to do it, is to send them a MS Word file, or a print-out, and they fill in whatever they like. The nightmare starts here, since there is no checking on Word, nor cannot control what people could fill in on their paper. People starts filling in whatever they like, e.g. class number that doesn't match the class name, and that class name doesn't belong to that time slot. And they even miss a digit of their phone number!
    I'm looking for a solution with Acrobat/PDF. And the picture I have in my mind is, to give people my enrollment form in PDF. And would like to embedded the class data (maybe in XML) in that same PDF, so that people won't loose a file and break the whole thing. And the PDF can use that class data to check if people have entre a class that's exist, and choose a date that's available...
    Anyone have or know any good tutorial for that? and on the scripting to do that? Any hints does help. Thanks
    (By the way I'm using Acrobat 8 and a LifeCycle the come with the installation.... )
    I know it is alot to ask, but please kindly help, Thanks :)

    Once you open the file, you can't access it again until the original reference is closed. You might want to look at a functional global architecture. You use a case structure to determine how to access the data. Initialize, write, read, save are common examples of sections inside the functional global.
    http://zone.ni.com/devzone/conceptd.nsf/webmain/D2​E196C7416F373A862568690074C759

  • Help with embedding XML / Flash Banner Rotator?!?

    Hey guys, please help me; I'm having some trouble embedding this flash/xml banner rotator into this page, I can see that the file has been uploaded, however when I try to place it into the page, it just doesn't work. I even get error reports from IE, the code was all place by dreamweaver.
    The first set of code below is the entire page, the second set is the part that isn't working for me (the part I'm too dumb to fix).
    The code that is highlighted in red is the code with the <embed> tag.
    Whole page:
    <!--
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Bognogginz - from the mind of Jim Jenkins</title>
    <meta name="description" content="Bognogginz - from the mind of Jim Jenkins, professional sculptor for hire."/>
    <meta name="keywords" content="Bognogginz, Jim Jenkins, Jenkins, Jim, sculpting, sculptor, professional, for hire, hire, hire sculpting, sculptor for hire, professional sculptor, art, artist, artist for hire, artisan, sculptings"/>
    <style type="text/css">
    <!--
    body {
         background-image: url();
         background-repeat: no-repeat;
         background-position:center;
         background-position:top;
         margin-top: 0px;
         margin-bottom: 0px;
         background-color: #26231C;
    .style3 {
         font-size: 23px;
         letter-spacing: -1px;
         color: #FFFFFF;
         font-family: Geneva, Arial, Helvetica, sans-serif;
    .style7  {
         font-size: 12px;
         font-family: Geneva, Arial, Helvetica, sans-serif;
         color: #f2d2a6;
    .style9 {
         font-size: 11px;
         font-family: Geneva, Arial, Helvetica, sans-serif;
         color: #FFFFFF;
    .style10 {font-size: 4px}
    .style11 {
         letter-spacing: 0px;
         color: #FFFFFF;
         font-family: Geneva, Arial, Helvetica, sans-serif;
         font-size: 17px;
    a:link  {
         text-decoration: none;
         color: #FFFFFF;
    a:visited  {
         text-decoration: none;
         color: #FFFFFF;
    a:hover  {
         text-decoration: underline;
         color: #FE38AF;
    a:active  {
         text-decoration: none;
         color: #FFFFFF;
    body,td,th {
         font-family: Geneva, Arial, Helvetica, sans-serif;
    .style13 {color: #26231C}
    .style16 {
         letter-spacing: -1px;
         font-size: 20px;
         font-weight: normal;
         font-family: Geneva, Arial, Helvetica, sans-serif;
         font-style: normal;
         font-variant: normal;
         color: #000000;
    .style18 {
         color: #FFFFFF;
         font-size: 11px;
    .style20 {
         font-size: 8px;
         color: #DAC375;
    .style21 {
         font-size: 20px;
         font-family: Geneva, Arial, Helvetica, sans-serif;
         font-style: italic;
         font-variant: normal;
         color: #000000;
         letter-spacing: -1px;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    //-->
    </script>
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <script src="Scripts/AC_ActiveX.js" type="text/javascript"></script>
    </head>
    <body>
    <table width="1024" border="0" align="center" cellpadding="0" cellspacing="0" background="bognogginz_site_pageBG_rev.jpg">
      <tr>
        <td height="1050" align="center" valign="top"><table width="1000" border="0">
          <tr>
            <td height="277" align="center"><table width="950" border="0" align="center" cellpadding="0" cellspacing="0">
              <tr>
                <td width="316" height="44" align="left" valign="top"> </td>
                <td width="274" align="left" valign="top"> </td>
                <td width="46" align="center" valign="middle"><a href="http://www.milkm.com/bog/index.html" target="_self"><img src="http://www.milkm.com/bog/buttons/home_on.png" alt="Home" width="46" height="16" border="0" longdesc="http://www.milkm.com/bog/index.html" /></a></td>
                <td width="19" align="left" valign="top"> </td>
                <td width="63" align="center" valign="middle"><a href="/gallery/gallery.html" target="_self" onmouseover="MM_swapImage('Gallery','','http://www.milkm.com/bog/buttons/gallery_on.png',1)" onmouseout="MM_swapImgRestore()"><img src="http://www.milkm.com/bog/buttons/gallery_off.png" alt="Click here to view my gallery." name="Gallery" width="63" height="16" border="0" id="Gallery" /></a></td>
                <td width="19" align="left" valign="top"> </td>
                <td width="146" align="center" valign="middle"><a href="/contact.html" target="_self" onmouseover="MM_swapImage('Contact','','http://www.milkm.com/bog/buttons/contact_on.png',1)" onmouseout="MM_swapImgRestore()"><img src="http://www.milkm.com/bog/buttons/contact_off.png" alt="Click here to contact the artist." name="Contact" width="146" height="16" border="0" id="Contact" /></a></td>
                <td width="19" align="left" valign="top"> </td>
                <td width="45" align="center" valign="middle"><a href="/more.html" target="_self" onmouseover="MM_swapImage('More','','http://www.milkm.com/bog/buttons/more_on.png',1)" onmouseout="MM_swapImgRestore()"><img src="http://www.milkm.com/bog/buttons/more_off.png" alt="Click here to learn more." name="More" width="45" height="16" border="0" id="More" /></a></td>
                <td width="20" align="center" valign="middle"> </td>
                <td width="45" align="center" valign="middle"><a href="http://bognogginz.blogspot.com" target="_blank" onmouseover="MM_swapImage('Blog','','http://www.milkm.com/bog/buttons/blog_on.png',1)" onmouseout="MM_swapImgRestore()"><img src="http://www.milkm.com/bog/buttons/blog_off.png" alt="Click here to read my blog!" name="Blog" width="43" height="16" border="0" id="Blog" /></a></td>
              </tr>
              <tr>
                <td height="48" colspan="11"> </td>
              </tr>
              <tr>
                <td height="143" colspan="11" align="center" valign="middle"><table width="920" border="0" align="center" cellpadding="0" cellspacing="0">
                  <tr>
                    <td height="102" align="left" valign="top" class="style3">Welcome to Bognogginz.com, the online gallery for the works of Jim Jenkins. <a href="/contact.html" class=".class1">You can contact Jim for a current list of items available for purchase.</a></td>
                  </tr>
                </table>
                  <br /></td>
              </tr>
            </table></td>
          </tr>
        </table>
        <br />
        <table width="1000" border="0" align="center">
          <tr>
            <td height="504" align="center" valign="top"><table width="952" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="952" height="460" align="center" valign="bottom"><script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','952','height','445','src','rotator','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','rotator' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="952" height="445">
                  <param name="movie" value="rotator.swf" />
                  <param name="quality" value="high" />
                  <embed src="rotator.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="952" height="445"></embed>
                </object></noscript></td>
              </tr>
            </table>
            <table width="950" border="0" align="center" cellpadding="0" cellspacing="0" onclick="MM_goToURL('parent','/gallery/gallery.html');return document.MM_returnValue">
                <tr>
                  <td width="940" height="39" align="left" valign="middle" class="b" onclick="MM_goToURL('parent','/gallery/gallery.html');return document.MM_returnValue" td><span class="style16">featured Bognogginz © creations...</span><span class="style21"> more</span></td>
                </tr>
              </table>
              <br /></td>
          </tr>
        </table>
        <br />
        <table width="1000" border="0">
          <tr>
            <td height="192"><table width="950" border="0" align="center">
              <tr>
                <td height="115" align="left" valign="top" class="style11"><div align="left">This website features images of original works of art created by Jim. Everything you see on this website is a one of a kind creation from the imagination of Jim Jenkins. No molds or mass production methods are used to create these collector pieces.</div></td>
              </tr>
            </table>
              <br />
              <table width="950" border="0" align="center">
                <tr>
                  <td width="559" align="left" valign="middle"><span class="style9"><a href="htp://www.milkm.com/bog/index.html" target="_self">home</a> | <a href="/gallery.html" target="_self">gallery</a> | <a href="/contact.html" target="_self">contact the artist</a> | <a href="/more.html" target="_self">more</a> | <a href="http://bognogginz.blogspot.com" target="_blank">blog</a></span></td>
                  <td width="375" align="right" valign="middle" class="style7 style18">all information and images copyright © 2009 by Jim Jenkins</td>
                </tr>
              </table></td>
          </tr>
        </table></td>
      </tr>
    </table>
    <table width="1024" border="0" align="center" cellpadding="5" cellspacing="0">
      <tr>
        <td width="1014" align="right" valign="top" class="style13"><a href="http://www.milkm.com/" target="_blank"><img src="http://www.milkm.com/stampOnDark.png" alt="This website by Milk!" width="81" height="18" border="0" /></a></td>
      </tr>
    </table>
    </body>
    </html>
    -->
    problem here :
    Really, all of you thank you so much for your help, it is appreciated more than you know! Thank you!

    Hi
    All I am seeing is your actual page layout, no code.
    But as you say it is an xml file (swf), it is more than likely that you have placed the swf and xml files in incompatible places. So without seeing your code, all I can suggest is to check the file placement of all items.
    PZ
    Can see the code now, for some reason it was rendering the code, not displaying it until I refreshed the page.
    Message was edited by: pziecina

  • Have XML with another embedded XML encoded in base64 - how to extract?

    Hi guys,
    I have a XML-RPC web service that returns a response like this:
    <methodResponse>
    <params>
    <param>
    <value>
    <base64>
    PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHNlYXJjaFJlc3VsdD48bnVtcm93cz4xPC9udW1yb3dzPjxmb3VuZD4xPC9mb3VuZD48d29yZGluZm8+IGJvdMOjbyA6IDU8L3dvcmRpbmZvPjxzZWFyY2h0aW1lPjAuMDA2PC9zZWFyY2h0aW1lPjxmaXJzdGRvYz4xPC9maXJzdGRvYz48bGFzdGRvYz4xPC9sYXN0ZG9jPjx3b3JkaW5mb2FsbD5ib3TDo28gOiA1IC8gNTwvd29yZGluZm9hbGw+PGl0ZW0+PHVybGlkPjE5PC91cmxpZD48dXJsPmh0dHA6Ly9jZW50cmFsL2dhcnJhcy9RdWVtX21hdG91X0pGSy9hcnRlZmF0b3MvaHRtLzc1MDUuaHRtPC91cmw+PGNvbnRlbnQ+dGV4dC9odG1sPC9jb250ZW50Pjx0aXRsZT5Tb3VuZE1BWDwvdGl0bGU+PGtleXdvcmRzPjwva2V5d29yZHM+PGRlc2M+PC9kZXNjPjx0ZXh0Pi4uLiBlIGNvbXVuaWNhw6fDo28gdmlhIEludGVybmV0LiBDbGlxdWUgbm8gJmx0O2ZvbnQgY29sb3I9JnF1b3Q7MDAwMDg4JnF1b3Q7Jmd0OyZsdDtiJmd0O2JvdMOjbyZsdDsvYiZndDsmbHQ7L2ZvbnQmZ3Q7IGNvbSBvIGxvZ290aXBvIEFuZHJlYSBlbSAuLi4gYWRxdWlyaXIgdW1hIGF0dWFsaXphw6fDo28sIGNsaWNhbmRvIG5vICZsdDtmb250IGNvbG9yPSZxdW90OzAwMDA4OCZxdW90OyZndDsmbHQ7YiZndDtib3TDo28mbHQ7L2ImZ3Q7Jmx0Oy9mb250Jmd0OyBjb20gbyDDrWNvbmUgRm9uZSBkZSBvdXZpZG8uIERlcG9pcyBkZSAuLi4gJyBWaXJ0dWFsIEVhcicnICwgYmFzdGFuZG8gY2xpY2FyIG5vICZsdDtmb250IGNvbG9yPSZxdW90OzAwMDA4OCZxdW90OyZndDsmbHQ7YiZndDtib3TDo28mbHQ7L2ImZ3Q7Jmx0Oy9mb250Jmd0OyBjb20gw61jb25lIE91dmlkby4gQXDDs3MgYWRxdWlyaXIgZSA8L3RleHQ+PHNpemU+MTg1MDM8L3NpemU+PHJhdGluZz41LjUwNSU8L3JhdGluZz48bW9kaWZpZWQ+MTAvMDgvMjAwMiAxNjo1ODoxMCAtMDQwMDwvbW9kaWZpZWQ+PG9yZGVyPjE8L29yZGVyPjxjcmM+LTE5NjM3MDA5MzQ8L2NyYz48Y2F0ZWdvcnk+PC9jYXRlZ29yeT48bGFuZz5lbi11czwvbGFuZz48Y2hhcnNldD53aW5kb3dzLTEyNTI8L2NoYXJzZXQ+PHNpdGVpZD40NjE1ODk0NjE8L3NpdGVpZD48cG9wX3Jhbms+MC4wMDAwMDwvcG9wX3Jhbms+PG9yaWdpbmlkPjA8L29yaWdpbmlkPjwvaXRlbT48L3NlYXJjaFJlc3VsdD4K
    </base64>
    </value>
    </param>
    </params>
    </methodResponse>The base64 value is another XML embedded document that I have to extract.
    I have the following code (don't know if it's the best approach), where l_val is a CLOB and l_xml is XMLTYPE:
    l_val := DBMS_XMLGEN.convert( l_xml.extract('/methodResponse/params/param/value/base64/text()').getclobval(), 1 );How can I decode the base64-encoded contents of the l_val CLOB and store the result into another CLOB that I can then process with xmlsequence() and extract()?
    Thanks in advance. Regards,
    Georger

    Hi mdrake,
    I saw your answer on the other thread :)
    I know about the 32K limitation; that's why I need to store the decoded CLOB in another CLOB, as bigger documents will often be the case. I've been reading about this for a while, to no avail.
    Do you believe BASE64_DECODE_CLOB could be changed to return CLOB rather than VARCHAR2? Regards,
    Georger
    mdrake wrote:
    You'll need to do some work in this if the Encoded XML is bigger than 32K
    SQL> set long 10000 pages 0
    SQL> CREATE OR REPLACE FUNCTION BASE64_DECODE_CLOB (INPUT CLOB)
    2  return VARCHAR2
    3  as
    4    V_RAW_BUFFER RAW(32767);
    5    V_VARCHAR2_BUFFER VARCHAR2(32767);
    6  begin
    7    V_VARCHAR2_BUFFER := DBMS_LOB.SUBSTR(INPUT,32767,1);
    8    V_RAW_BUFFER := UTL_RAW.CAST_TO_RAW(V_VARCHAR2_BUFFER);
    9    V_RAW_BUFFER :=  UTL_ENCODE.BASE64_DECODE(V_RAW_BUFFER);
    10    V_VARCHAR2_BUFFER := UTL_RAW.CAST_TO_VARCHAR2(V_RAW_BUFFER);
    11    return V_VARCHAR2_BUFFER;
    12  end;
    13  /
    Function created.
    SQL> set serveroutput on
    SQL> --
    SQL> with XML as
    2  (
    3  select XMLType(
    4  '<methodResponse>
    5  <params>
    6  <param>
    7  <value>
    8  <base64>
    9  PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHNlYXJjaFJlc3VsdD48bnVtcm93cz4xPC9udW1yb3dzPjxmb3VuZD4xPC9mb3VuZD48d29yZGl
    uZm8+IGJvdMOjbyA6IDU8L3dvcmRpbmZvPjxzZWFyY2h0aW1lPjAuMDA2PC9zZWFyY2h0aW1lPjxmaXJzdGRvYz4xPC9maXJzdGRvYz48bGFzdGRvYz4xPC9sYXN0ZG9jPjx
    3b3JkaW5mb2FsbD5ib3TDo28gOiA1IC8gNTwvd29yZGluZm9hbGw+PGl0ZW0+PHVybGlkPjE5PC91cmxpZD48dXJsPmh0dHA6Ly9jZW50cmFsL2dhcnJhcy9RdWVtX21hdG9
    1X0pGSy9hcnRlZmF0b3MvaHRtLzc1MDUuaHRtPC91cmw+PGNvbnRlbnQ+dGV4dC9odG1sPC9jb250ZW50Pjx0aXRsZT5Tb3VuZE1BWDwvdGl0bGU+PGtleXdvcmRzPjwva2V
    5d29yZHM+PGRlc2M+PC9kZXNjPjx0ZXh0Pi4uLiBlIGNvbXVuaWNhw6fDo28gdmlhIEludGVybmV0LiBDbGlxdWUgbm8gJmx0O2ZvbnQgY29sb3I9JnF1b3Q7MDAwMDg4JnF
    1b3Q7Jmd0OyZsdDtiJmd0O2JvdMOjbyZsdDsvYiZndDsmbHQ7L2ZvbnQmZ3Q7IGNvbSBvIGxvZ290aXBvIEFuZHJlYSBlbSAuLi4gYWRxdWlyaXIgdW1hIGF0dWFsaXphw6f
    Do28sIGNsaWNhbmRvIG5vICZsdDtmb250IGNvbG9yPSZxdW90OzAwMDA4OCZxdW90OyZndDsmbHQ7YiZndDtib3TDo28mbHQ7L2ImZ3Q7Jmx0Oy9mb250Jmd0OyBjb20gbyD
    DrWNvbmUgRm9uZSBkZSBvdXZpZG8uIERlcG9pcyBkZSAuLi4gJyBWaXJ0dWFsIEVhcicnICwgYmFzdGFuZG8gY2xpY2FyIG5vICZsdDtmb250IGNvbG9yPSZxdW90OzAwMDA
    4OCZxdW90OyZndDsmbHQ7YiZndDtib3TDo28mbHQ7L2ImZ3Q7Jmx0Oy9mb250Jmd0OyBjb20gw61jb25lIE91dmlkby4gQXDDs3MgYWRxdWlyaXIgZSA8L3RleHQ+PHNpemU
    +MTg1MDM8L3NpemU+PHJhdGluZz41LjUwNSU8L3JhdGluZz48bW9kaWZpZWQ+MTAvMDgvMjAwMiAxNjo1ODoxMCAtMDQwMDwvbW9kaWZpZWQ+PG9yZGVyPjE8L29yZGVyPjx
    jcmM+LTE5NjM3MDA5MzQ8L2NyYz48Y2F0ZWdvcnk+PC9jYXRlZ29yeT48bGFuZz5lbi11czwvbGFuZz48Y2hhcnNldD53aW5kb3dzLTEyNTI8L2NoYXJzZXQ+PHNpdGVpZD4
    0NjE1ODk0NjE8L3NpdGVpZD48cG9wX3Jhbms+MC4wMDAwMDwvcG9wX3Jhbms+PG9yaWdpbmlkPjA8L29yaWdpbmlkPjwvaXRlbT48L3NlYXJjaFJlc3VsdD4K
    10  </base64>
    11  </value>
    12  </param>
    13  </params>
    14  </methodResponse>') OBJECT_VALUE
    15  from dual
    16  )
    17  select XMLSERIALIZE(DOCUMENT XMLTYPE(BASE64_DECODE_CLOB(extract(OBJECT_VALUE,'/methodResponse/params/param/value/base64/text()'
    ).getClobVal())) as CLOB INDENT SIZE=2)
    18    from XML
    19  /
    <?xml version="1.0" encoding="UTF-8"?>
    <searchResult>
    <numrows>1</numrows>
    <found>1</found>
    <wordinfo> botπo : 5</wordinfo>
    <searchtime>0.006</searchtime>
    <firstdoc>1</firstdoc>
    <lastdoc>1</lastdoc>
    <wordinfoall>botπo : 5 / 5</wordinfoall>
    <item>
    <urlid>19</urlid>
    <url>http://central/garras/Quem_matou_JFK/artefatos/htm/7505.htm</url>
    <content>text/html</content>
    <title>SoundMAX</title>
    <keywords/>
    <desc/>
    <text>... e comunicaτπo via Internet. Clique no &lt;font color="000088&
    quot;&gt;&lt;b&gt;botπo&lt;/b&gt;&lt;/font&gt; com o logotipo Andrea em ... adqu
    irir uma atualizaτπo, clicando no &lt;font color="000088"&gt;&lt;b&gt;
    botπo&lt;/b&gt;&lt;/font&gt; com o φcone Fone de ouvido. Depois de ... &apos; Vi
    rtual Ear&apos;&apos; , bastando clicar no &lt;font color="000088"&gt;
    &lt;b&gt;botπo&lt;/b&gt;&lt;/font&gt; com φcone Ouvido. Ap≤s adquirir e </text>
    <size>18503</size>
    <rating>5.505%</rating>
    <modified>10/08/2002 16:58:10 -0400</modified>
    <order>1</order>
    <crc>-1963700934</crc>
    <category/>
    <lang>en-us</lang>
    <charset>windows-1252</charset>
    <siteid>461589461</siteid>
    <pop_rank>0.00000</pop_rank>
    <originid>0</originid>
    </item>
    </searchResult>
    SQL>And don't expect it to be the fastest soln in history.

  • Embedding .xml into a .swf?

    I am trying to creat a standalone .swf file with my .xml file embedded to creat an image carousel.  I have found no way to do this (I am super new to Flash) except for the
    [Embed(source="carousel.xml", mimeType="application/octet-stream")]
    protected const EmbeddedXML:Class;
    var x:XML = XML(new EmbeddedXML());
    trace(x.toXMLString());
    but when I do this I get a Sytax Error on line 2.  Please help, thanks in advance....

  • Does QT no longer support embedded XML (text3GTrack) captions?

    I used to be able to open XML files in QT, copy them and add them as captions in QT Pro as an embedded text track. This no longer seems to work. When I try to open the XML file it says that it is not a movie file. These same files used to work, so I know it's not the files themselves. The files are "text3GTrack" type="application/x-quicktime-tx3g". Did QT stop supporting XML caption files?

    There was a problem with the language code. I had "en" instead of "eng" after messing with the language code trying to get another language to work. I found the list of language codes here:
    http://www.loc.gov/standards/iso639-2/php/code_list.php
    They need to be 3 character as opposed to 2.
    Message was edited by: Patrick Besong

  • Transporting objects with embedded XML

    Hi all,
    I am using XFire (http://xfire.codehaus.org/) for exposing my web services. I ran across an issue while transporting an object that contains an XML document embedded in it.
    As an example, here is the domain model:
    public class Book {
         Integer id; 
         String name;
         XMLStreamReader document;
        //Setters and getters follow...
    public class BookService {
         Book  getBook( Integer id) {
            //Construct a Book instance and return it...
    }When I call BookService, I get an exception saying "could not write xml". I guess this has got to do with the fact that I am using XMLStreamReader, the same implementation that XFire uses to convert objects.
    I tired information provided on this link: http://xfire.codehaus.org/Message+Binding but now I get something like "There must be a method name element."
    Any ideas how I get this running? Any help would be appreciated.
    Thanks a lot.

    Hi all,
    I am using XFire (http://xfire.codehaus.org/) for exposing my web services. I ran across an issue while transporting an object that contains an XML document embedded in it.
    As an example, here is the domain model:
    public class Book {
         Integer id; 
         String name;
         XMLStreamReader document;
        //Setters and getters follow...
    public class BookService {
         Book  getBook( Integer id) {
            //Construct a Book instance and return it...
    }When I call BookService, I get an exception saying "could not write xml". I guess this has got to do with the fact that I am using XMLStreamReader, the same implementation that XFire uses to convert objects.
    I tired information provided on this link: http://xfire.codehaus.org/Message+Binding but now I get something like "There must be a method name element."
    Any ideas how I get this running? Any help would be appreciated.
    Thanks a lot.

  • Report will not generate PDF only the XML output.  View XML icon disabled

    I created a PDF format report.
    When the report completes, View Output shows XML code not the PDF output.
    View XML button is disabled from Diagnostic on view request screen.
    Any thoughts. All settings are the same as when other XML to PDF reports are created. Not sure why this one is not working.
    Thanks

    I'm afraid this is not an installation issue, it rather sounds and application server one, at the operative level.
    I suggest you to post your thread at the Fusion Middleware or Developer Tools forums.
    You didn't provide any OS nor Oracle / AS version, I suggest you to specify this information when posting in future threads.
    ~ Madrid.

  • Embedding xml into a pdf

    I have a LiveCycle form that fills its dropdownlists from an xml file. It will be on a server, where the client can click a button on a webpage to download the pdf. The data in the xml file will change every now and then.
    Is it possible to refresh/reload the data from the xml file only when the pdf is pushed to the client? Or only embed the file on the download? A LiveCycle server is not out of the question here.

    I have a LiveCycle form that fills its dropdownlists from an xml file. It will be on a server, where the client can click a button on a webpage to download the pdf. The data in the xml file will change every now and then.
    Is it possible to refresh/reload the data from the xml file only when the pdf is pushed to the client? Or only embed the file on the download? A LiveCycle server is not out of the question here.

Maybe you are looking for

  • ITunes WILL NOT install-error messages 1714,1603

    I have attempted to install Itunes (various builds) and keep receiving the same error messages...1714 (older version of ITunes can not be removed)immediately followed by error 1603. I have read every message regarding installs and have attempted to i

  • CA-42 Cable Unknown Device

    Hi All, I've installed PC suite 6.6 but when I connect my CA-42 USB cable my PC says unknown device which doesn't have any drivers. The Nokia site says that for XP users PC suite has the drivers included and will be installed automatically. I've trie

  • Instance Terminated in Oracle 8i

    Dear Sir/Madam We handle large volume of data in oracle database. when processing utilization was high Oracle Instance Terminate very ofen. As the solution we reduced the No. of user as 20 and Server Configuration was also upgraded to HD - 56GB RAM -

  • ITunes on windows 8 will not recognize my iPhone 4

    iTunes doesn't recognize my iPhone 4 on windows 8

  • ISE and 3850 3.2.2SE - Authenticating Wrong Domain and More

    Hi everyone, Have been forced in to accepting the new session aware networking commands and I am running in to a few issues. I finally have a service policy that is authenticating dot1x and MAB (we use EAP-TLS for the desktop and MAB for the phone),