Publishing diagram gives empty picture

I create a database diagram in Jdeveloper 11g 11.1.1.0.1. When publishing to a picture it makes an empty picture.
- Tried different formats (png/jpg).
- Exporting to an older xmi (creates a small xmi without real content in it)
The database diagram file itself contains data
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<xmi:XMI xmi:version='2.1' xmlns:xmi='http://schema.omg.org/spec/XMI/2.1' xmlns:DI='http://xmlns.omg.org/DI/2.0'>
<documentation exporter='Oracle JDeveloper' exporterVersion='11.1.1.0.1'/>
<DI:Diagram xmi:id='94533e0d-011f-1000-8002-0a00000a5516' zoom='0.0'>
</DI:Diagram>
</xmi:XMI>
When I created a smaller diagram it worked. This one which has 30 entities and 21 notes does not.
Has anyone else had this problem. How can I debug?

Hello:
I'm having the same problem. Some of my diagrams are converted to an empty image when I publish them. I'm using JDeveloper 11.1.1.0.2. Does anyone has a solution or work around for this?
Thanks.
Edited by: user12323649 on Dec 8, 2009 5:16 AM

Similar Messages

  • Graphic card problem maybe? Since when I have changed the hard drive to my macbook pro and I installed all the new softwares, my mac is very slow and the screen gives crazy pictures,could maybe be the graphic card, does anybody have experienced this?

    Graphic card problem maybe? Since when I have changed the hard drive to my macbook pro and I installed all the new softwares, my mac is very slow and the screen gives crazy pictures,could maybe be the graphic card, does anybody have experienced this?

    after a restart it works for a time, but always slow. I went to the Applestore this afternoon and the made a check and said it would be the logicboard and they would have to change it for CHF 600 and it would be ready in 10 - 15 days

  • I can not import in Lightroom 4.4 any RAW-file from my D600. Lightroom gives no picture.

    I can not import in Lightroom 4.4 any RAW-file from my D600.  Lightroom gives no picture.

    How long have you waited?
    When I connect my D600 via USB and import in Lr it takes a long time before the image thumbnails are displayed in the Import Dialog.
    I know that using a card reader would probably be much faster (you gotta try that!).
    In the meantime I just do something else for 5-7 min (read e-mail, get a cup of coffee) and thereafter the thumbnails are displayed and import is straightforward.
    And I do have a powerful and fast system.
    So, somehow Lr and the D600 are slow to begin "talking" to each other.

  • How can I publish more than 200 pictures to a Facebook album (Facebook max is now 1000 pictures per album)

    How can i publish more than 200 pictures to a facebook album now that the facebook maximum is 1000 photos per album.

    It looks like Jeffrey's version allows for multiple accounts http://regex.info/blog/lightroom-goodies/facebook

  • Publishing Diagrams

    Hi,
    I use Designer 10g, and want to publish my server model diagrams to PNG or JPEG format, but I can't find the Publish Diagrams utility.
    In the Utilities menu, I have Create Arc, Add To Arc, Remove From Arc, Create Oracle Object Type, Create Object View, External References, Resequence, Extended Copy, Force Delete, Update Column / Attributes In Domain, and Select in Other Tools.
    No trace of Publish Diagram.
    Can someone help me? Am I missing a patch or something, or did I neglect to install a necessary component?
    Thanks!

    Benoit,
    Which version of Designer are you using? The "Publish Diagrams" feature is available from the 6i 4.10, 9i 9.0.2.8 and 10g 9.0.4.4, or higher, releases of Designer.
    - Suresh

  • Publish diagram in SSM

    Hi all,
    After having created a Goal Diagram in the Diagram Manager, Saved and published and returned to the SSM Administration and Saved I still get the message "Not Published" next to the Edit Goal Diagram, where it's supposed to show the published data and give the option og unpublishing.
    I'm running IE7 on Vista and working directly on the application server. IE7 and Vista is mentioned in SP7.
    Any ideas.
    Thanks,
    Stefan

    Hi Stefan,
    I think the problem lies in the version of the diagram manager you are using. Since a new version of Diagram manager is released (7.0.4.8249), please install the latest version in both the server as well as for the user. I am not too sure of the version number , but that is the version I am using here.
    Also please check the note 1248590 as well.
    Hope this helps
    Vijay

  • I am running Win 7 Pro and the javascript to give popup pictures on my website is not resolving correctly. Pop up frames are too large. Worked O.K. on 3.6

    Small images are on the website pages. A click on the small images gives a larger picture which pops up in a frame. Small images are around 320 x 200. Pop up images are around 880 x 660. This procedure is controlled by javascript coding within the page for each pop up. If the images are larger than your screen size, scrollbars are provided.
    Javascript routine -
    <script language="JavaScript" type="text/javascript">
    <!-- ;
    var newwindow;
    var wheight = 0, wwidth = 0;
    function popitup(url, title, iwidth, iheight, colour) {
    var pwidth, pheight;
    if ( !newwindow || newwindow.closed ) {
    pwidth=iwidth+30;
    pheight=iheight+30;
    newwindow=window.open('','htmlname','width=' + pwidth +',height=' + pheight + ',scrollbars=yes,resizable=1,top=50,left=120');
    wheight=iheight;
    wwidth=iwidth;
    if (wheight!=iheight || wwidth!=iwidth ) {
    pwidth=iwidth+30;
    pheight=iheight+60;
    newwindow.resizeTo(pwidth, pheight);
    wheight=iheight;
    wwidth=iwidth;
    newwindow.document.clear();
    newwindow.focus();
    newwindow.document.writeln('<html> <head> <title>'+ title +'<\/title> <meta http-equiv="imagetoolbar" content="no"> <\/head> <body bgcolor= \"'+ colour +'\"> <center>');
    newwindow.document.writeln('<img src=' + url + ' onContextmenu="return false;">');
    newwindow.document.writeln('<\/center> <\/body> <\/html>');
    newwindow.document.close();
    newwindow.focus();
    // Routines to tidy up popup windows when page is left
    // Call with an onUnload="tidy()" in body tag
    // -->
    </script>
    Routine called with -
    <a title=" Auld Brig in the Summer Foliage" href="javascript: popitup('images/auldbrigsum2-2.jpg','Auld Brig and Summer Foliage',865,650,'white')">

    Small images are on the website pages. A click on the small images gives a larger picture which pops up in a frame. Small images are around 320 x 200. Pop up images are around 880 x 660. This procedure is controlled by javascript coding within the page for each pop up. If the images are larger than your screen size, scrollbars are provided.
    Javascript routine -
    <script language="JavaScript" type="text/javascript">
    <!-- ;
    var newwindow;
    var wheight = 0, wwidth = 0;
    function popitup(url, title, iwidth, iheight, colour) {
    var pwidth, pheight;
    if ( !newwindow || newwindow.closed ) {
    pwidth=iwidth+30;
    pheight=iheight+30;
    newwindow=window.open('','htmlname','width=' + pwidth +',height=' + pheight + ',scrollbars=yes,resizable=1,top=50,left=120');
    wheight=iheight;
    wwidth=iwidth;
    if (wheight!=iheight || wwidth!=iwidth ) {
    pwidth=iwidth+30;
    pheight=iheight+60;
    newwindow.resizeTo(pwidth, pheight);
    wheight=iheight;
    wwidth=iwidth;
    newwindow.document.clear();
    newwindow.focus();
    newwindow.document.writeln('<html> <head> <title>'+ title +'<\/title> <meta http-equiv="imagetoolbar" content="no"> <\/head> <body bgcolor= \"'+ colour +'\"> <center>');
    newwindow.document.writeln('<img src=' + url + ' onContextmenu="return false;">');
    newwindow.document.writeln('<\/center> <\/body> <\/html>');
    newwindow.document.close();
    newwindow.focus();
    // Routines to tidy up popup windows when page is left
    // Call with an onUnload="tidy()" in body tag
    // -->
    </script>
    Routine called with -
    <a title=" Auld Brig in the Summer Foliage" href="javascript: popitup('images/auldbrigsum2-2.jpg','Auld Brig and Summer Foliage',865,650,'white')">

  • Enhanced Interface Determination gives Empty Payload

    Hi,
    I am using Enhanced Interface Determination in my scenario.
    1:3 Message Types(Interfaces).
    The thing is that split occurs, but after Message Mapping I get empty Payloads..
    I am using External Definitions instead of Message types.
    Another question: Can there be multiple dynamic confgiurations during splits. i.e one Dynamic Configuration for each message split.
    Note: testing the Interface mapping from IR with payload from MONI gives proper output.
    Regards,
    Sundar.

    Hi All,
    I copied the entire XML which i used for testing in Interface Mapping which i should not have....
    I gave as
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:SAP_HR_MT xmlns:ns1="http://com.cognizant/sapr3/all">
             <Participant>....
                         </Participant>
             <Dependent>
                ....         </Dependent>
             <Coverage>
                ....         </Coverage>
          </ns1:SAP_HR_MT>
       </ns0:Message1>
    </ns0:Messages>
    But the input should have been
    <?xml version="1.0" encoding="UTF-8"?>
          <ns1:SAP_HR_MT xmlns:ns1="http://com.cognizant/sapr3/all">
             <Participant>....
                         </Participant>
             <Dependent>
                ....         </Dependent>
             <Coverage>
                ....         </Coverage>
          </ns1:SAP_HR_MT>
    now the output is perfectly coming....:-)
    Regards,
    Sundar )

  • Publishing site span data-picture

    I'm new in public-facing sites using SharePoint 2013,  we've recieved the html and we used design manager to convert the master page and we start implementing the welcome page , and we see a sliding image as following
    <div class="slide">
    <div class="visual">
    <span data-picture data-alt="image description">
    <span data-src="images/img1.jpg" ></span>
    <span data-src="images/img1-medium.jpg" data-media="(max-width:939px)" ></span>
    <span data-src="images/img1-small.jpg" data-media="(max-width:767px)" ></span>
    <!-- Fallback content for non-JS browsers. Same img src as the initial, unqualified source element. -->
    <noscript><img src="images/img1.jpg" width="940" height="400" alt="image description" ></noscript>
    </span>
    </div>
    <!-- description about the image -->
    <div class="caption">
    <div class="caption-holder">
    <h1>
    Headline goes up to five lines.</h1>
    </div>
    </div>
    </div><div class="latest-news">
    <h2 class="title">Latest News</h2>
    <div class="news-container">
    <div class="slider">
    <div class="mask">
    <div class="line">
    <p><time datetime="2013-10-10">10 Oct 2013</time> This is dummy text. It is meant to be read but have no meaning. As a simulation of actual copy ...</p>
    <p><time datetime="2013-10-10">10 Oct 2013</time> This is dummy text. It is meant to be read but have no meaning. As a simulation of actual copy ...</p>
    </div>
    </div>
    </div>
    <span class="all"><a href="#">&gt; Read all</a></span>
    </div>
    <a href="#" class="btn-all">open</a>
    </div>
    do this usually left as it on sharepoint page or there are corresponding snippets that when apply style on it will give same result,also for the section 'Latest News' is a moving ticker with of course changing contentsthat authors will constantly add , so I wondering how usually this manipulated in SharePointAppreciate any help

    solved this issue by changing
    <span data-picture data-alt="image description">
    to <span data-picture=""
    data-alt="image description">

  • Can iphoto give a picture an incorrect date?

    I received a picture on my iphone from someone and they said that the photo was taken yesterday but when I import the photo into iphoto it labels and sorts the picture as though it was taken in 2005. I have searched the internet and this does not appear to be a common problem. I'm just wondering if this could possibly be an issue with iphoto?

    Thanks for the quick reply. From everything that I have read you are probably right though I received other pictures from same person which they said were taken with the same phone and they all had current dates. I know that I'm probably grasping at straws but is there anyway it could have been an issue with iphoto or is it more likely the photo was actually taken in 2005?
    Thanks Sam

  • Published site gives corrupt rendering in browser

    Publishing my site to a local folder and everything looks fine. (I cleared cache just to be sure). Publishing to my webhost and the site is all over the place. Again, I cleared cache in the browser just to be sure and even tried looking at the site with a different browser. Same corruption. I can't understand why it publishes locally OK.
    If it helps the site is www.finecabinetmaker.co.uk
    Thanks

    OK...read a few more forum posts and ran Publish Entire Site and that fixed the problem. I will leave this here in case anyone else tears there hair out with a similar problem in the future.

  • Empty picture folder n8 belle

    Hi all.
    Unfortunately, I made the error of upgrading my N8 to belle.
    Among many other DISASTERS of this ***bleep*** system, when I now connect the phone to my computer (in any way you like: mass storage, OVI, Bluetooth, either in MAC or Windows ambients) there is no way of seeing ALL the photos I have in the telephone. Some of them appear, some don't.
    Please, please people from Nokia: could you tell whether there is any way of seeing and transferring them all? 
    Please, Nokia people: just acknowledge the fact that you inserted a BIG BUG (actually, more than one, but let's talk about this one for the moment) in belle. Please do it, and fix it quickly. Believe me: having lost the possibility of transferring photos is little more than extremely annoying.
    MODERATORS NOTE:  The profanities have been removed. Offensive language is not allowed on the forums. Please do not use offensive language on the forums

    Dear Mr. Tesla,
     thank you for you reply and suggestions. I have succeded in finding the pictures in the DCIM folder. However I did this in a way that, please forgive me, is rather absurd. Let me explain. 
    Under Wndows 7, I connected the telephone and the Nokia Suite (version 3.3.89) popped up.
    Only some of the pictures in my telephone were displayed when looking at the picture icon of Nokia Suite (don't know why some appear and some don't).
    In addition, I found no ways to access the DCIM folder through Nokia Suite. Rather, I had to go to the Windows Start button, looked under "Computer", found the N8 inside it, browsed the N8 and finally found the DCIM folder.
    No doubts that doing this is nothing bad, but isn't it absurd that I can not use the Nokia Suite to browse a Nokia telephone? 
    As for the idea of reinstalling Belle or even hard-resetting the phone... I hope you will again forgive me, but in no ways I am keen to do this. I have payed, downloaded and installed some apps on the telephone. Once, when I trusted Nokia enough, I could be sure that all the apps would have gone back to their functionality after reisntallation. Now - forgive me - I believe that I am lucky enough to have found a way to sneak through the bugs, and I prefer to stick to this state rather than getting into new troubles.

  • Premiere Elements 10 reinstalled in windows 8 the monitor give no picture during editing play of avchd video 1020x1080i 25. Have worked OK before in win 8.

    I have reinstalled premiere elements 10 in win 8 and after reinstallation it is not possible to edit the video because the monitor does not show the pictures when I play the video, only sound comes OK. What can I do?

    toresak91
    Are you saying that all you did was to reinstall Premiere Elements 10 on the same computer? The video card/graphics card was the same before and after the reinstall? There is a serious Premiere Elements 10/NVIDIA GeForce issue, and I just want to make sure that you are not caught up in that issue. See the fullest details and information on this in the Announcement at the top of this forum.
    What worked before the reinstall of Premiere Elements 10
    a. Premiere Elements 10 as a whole
    or
    b. The playback of this specific AVCHD file in Premiere Elements 10?
    If you are using this never before used AVCHD file in the reinstalled Premiere Elements 10, there is always that possibility that you are now using AVCHD.avi which is not supported by Premiere Elements. AVCHD video compression is supported but not the specific combo of AVCHD.avi.
    Please review, consider, and clarify and then we will customize a troubleshooting to get to the core of the matter.
    Thank you.
    ATR

  • Spry HTML Data Set Gives Empty Table (no data), Spry XML Data Set is Fine

    I am working in Dreamweaver CS5 and in lesson 14 of the "Dreamweaver CS5 Classroom in a Book" and the lesson implements Spry HTML Datasets and XML Datasets. The XML is fine but the HTML dataset produces an empty table. This happens in live view or even when previewing the HTML file in any of the browsers Firefox, Google or IE. I should add that the lesson (as in all the lessons) has a "finished copy file" prepared by the authors to show what things will look like in the end (so it is a file NOT produced by me but included on the CD with the book), and that file also produces the problem. I have uninstalled and reinstalled Dreamweaver, the lessons CD and spent all day trying to figure out why and no clues at all yet. All my browser settings look fine as for allowing content.
    ANY CLUES would be appreciated. Thanks.

    Hello,
    First, thank you very much for your quick response and help.
    I am not sure what you mean by upload the site to a server so you can look. I am working locally in Dreamweaver on the book's exercise. So I figured you may mean CS Live. What a clumsy operation that is. In any case, they said the links below will work for ANYBODY that clicks them! What is especially baffling here is that it seems so straighforward. The file "events_finished.html" (the 1st link below) is everything but the data, produced by the author of "Adobe Dreamweaver CS5 Classroom In A Book" in lesson 14. All paths should be correct. The file referenced by "Spry.Data.HTMLDataSet", "html-data_finished.html" (the data and the 2nd link below) is in the same directory as the first file, all JavaScript files referenced exist and are in their denoted "SpryAssets" folder. As seen in the "screenShot", the HTML dataset table is empty with placeholders; the XMLDataSet is fine and all data nicely represented.
    I hope this helps and thanks for all help and any clues you can provide.
    events_finished.html: https://acrobat.com/#d=J2Aez*f-uXeEICwt2ctjDg
    html-data_finished.html: https://acrobat.com/#d=NugqeOzL6sBtjZw81PNNAg
    screenShot of viewed page in browser: https://acrobat.com/#d=nS5FBcWC-AvXXEGHiWAo6A

  • Custom Content Presenter Template gives Empty result

    Hi All,
    I am Using Jdev 11.1.1.6 and am trying to display UCM content via a custom template using content presenter.
    I have a page with the following:
    <af:region value="#{bindings.doclibcontentpresenter1.regionModel}" id="r1"/>
    The bindings for the content presenter taskflow:
    <taskFlow id="doclibcontentpresenter1"
    taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
                  activation="deferred"
                  xmlns="http://xmlns.oracle.com/adf/controller/binding">
          <parameters>
            <parameter id="taskFlowInstId" value="${'photo'}"/>
            <parameter id="datasourceType" value="${'dsTypeQueryExpression'}"/>
            <parameter id="datasource"
                       value="#{backingBeanScope.NewsBean.photoContentQuery}"/>
            <parameter id="templateCategory" value="${''}"/>
            <parameter id="templateView" value="${'templates.photos.list'}"/>
            <parameter id="regionTemplate" value="${false}"/>
          </parameters>
    </taskFlow>
    And the photoContentQuery bean method return result of the Query i.e  SELECT * FROM ora:t:IDC:GlobalProfile WHERE ora:p:xRegionDefinition = 'PHOTO_REG_DEF' AND ora:p:xArchiveFlag<>'No' ")
    I have a fragment with the portal resource attributes set as:
    Category name = Default Templates
    Category ID = oracle.webcenter.content.templates.default.category
    Category Default View = true
    View ID = templates.photos.list
    The above fragment has this code: I also made this fragment has portal resource.
    <dt:contentListTemplateDef var="nodes">
            <af:panelGroupLayout id="pnlContainer" layout="vertical"
                                 >
                <af:iterator id="pagList" value="#{nodes}" var="node" >
                    <af:panelGroupLayout layout="horizontal" rendered="false">
                    </af:panelGroupLayout>
                        <af:panelGroupLayout id="pnlContent" layout="vertical">
                         <dt:contentTemplate node="#{node}"
                              view="template.photo"
                                nodesHint="#{nodes}"/>
                    </af:panelGroupLayout>
                </af:iterator>
                </af:panelGroupLayout>
      </dt:contentListTemplateDef>
    and
    <dt:contentTemplate node="#{node}"
                              view="template.photo"
                                nodesHint="#{nodes}"/>  this is another pagefragment contains the following code.
    <dt:contentTemplateDef var="node">
        <af:panelGroupLayout id="pgl2">
          <af:panelGroupLayout id="pgl1" layout="vertical" styleClass="photoImg">
            <af:outputText value="#{node.propertyMap['PHOTO_REG_DEF:PHOTO'].asTextHtml}"
                           id="ot1" escape="false"/>
          </af:panelGroupLayout>
        </af:panelGroupLayout>
      </dt:contentTemplateDef>
    When I run my project on the Integrated WebLogic Server and when I click on my page, the data is coming empty.
    When I see the Administrator console, this content presenter template is in Hidden by default. I just edit the template and made it availabe. But still am unable to get result in the required template.
    On my page, if I do not specify the  <parameter id="templateView" value="${'templates.photos.list'}"/>, then I will get the result with default content presenter template.
    Could any one please help me out?
    Thanks
    Kotresh

    Hi,
    I am able to get the result with required custom content presenter template. But every time when I run the project , I need to explicitly need to make it "show" my custom content presenter display template i.e. in the Administration console, initially it is in Hidden state, I need to edit and make it show.
    I already made this template as portal resource  but why it is still be in Hidden state. what extra step do I need to make in order to move it to "show" state?
    Thanks
    Kotresh

Maybe you are looking for