Web object not resizing with presentation

I've added a web object in my elearning and published as a flash presentation.  When I resize the browser window, the flash presentation resizes, but the web object does not resize. My users will have various screen sizes, so I need the web object to display proportionally to the project size.
I'm using a flash widget, so I cannot publish as HTML5.
Thank you for any help or assistance.

Hi there, unfortunately I don't have the answer but I'd like to support your question as I'm having exactly the same issue.
Cheers,
Dan

Similar Messages

  • Node Container that does not resize with Window Resize Event

    Hello,
    I'm not new to Java but I am new to JavaFX.
    I plan to have a container/Canvas with multiple shapes (Lines, Text, Rectangle etc) in it. This Container can be X times in the Szene with different Text Shapes. I need to Zoom and Pan (maybe rotation) the whole Szene and the Containers/Canvas.
    So I was playing around with that but I have two issues.
    1) all Canvas classes that I found (like Pane for example) do resize with the main window resize event. The content of the canvas isn't centered any more.
    2) I added a couple of Rectangles to the canvas and both the rectangles and the canvas have a mouse listener which will rotate the item/canvas. Problem is, that even if I click the rectangle also the underlaying canvas is rotated...I think I need some kind of Z-Info to find out what was clicked.
    Here is the little example program, it makes no produktiv sense but it demonstrates my problem.
    Does anybody has a tip what canvas class would fit and does not resize with the main window and how to figure out what was clicked?
    public class Test extends Application
         Scene mainScene;
         Group root;
         public static void main(String[] args)
            launch(args);
        @Override
        public void init()
            root = new Group();
            int x = 0;
            int y = -100;
            for(int i = 0; i < 5; i++)
                 x = 0;
                 y = y + 100;
                 for (int j = 0; j < 5; j++)
                      final Rectangle rect = new Rectangle(x, y, 30 , 30);
                       final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                             .node(rect)
                             .duration(Duration.seconds(4))
                             .fromAngle(0)
                             .toAngle(720)
                             .cycleCount(Timeline.INDEFINITE)
                             .autoReverse(true)
                             .build();
                     rect.setOnMouseClicked(new EventHandler<MouseEvent>()
                          public void handle(MouseEvent me)
                               if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                                    rotateTransition.setToAngle(0);
                                    rotateTransition.stop();
                                    rect.setFill(Color.BLACK);
                                    rect.setScaleX(1.0);
                                    rect.setScaleY(1.0);
                               else
                                    rect.setFill(Color.AQUAMARINE);
                                    rect.setScaleX(2.0);
                                    rect.setScaleY(2.0);
                                    rotateTransition.play();
                      root.getChildren().add(rect);
                      x = x + 100;
        public void start(Stage primaryStage)
             final Pane pane = new Pane();
             pane.setStyle("-fx-background-color: #CCFF99");
             pane.setOnScroll(new EventHandler<ScrollEvent>()
                   @Override
                   public void handle(ScrollEvent se)
                        if(se.getDeltaY() > 0)
                             pane.setScaleX(pane.getScaleX() + 0.01);
                             pane.setScaleY(pane.getScaleY() + 0.01);
                        else
                             pane.setScaleX(pane.getScaleX() - 0.01);
                             pane.setScaleY(pane.getScaleY() - 0.01);
             pane.getChildren().addAll(root);
             pane.setOnMouseClicked(new EventHandler<MouseEvent>(){
                   @Override
                   public void handle(MouseEvent event)
                        System.out.println(event.getButton());
                        if(event.getButton().equals(MouseButton.PRIMARY))
                             System.out.println("primary button");
                             final RotateTransition rotateTransition2 = RotateTransitionBuilder.create()
                                  .node(pane)
                                  .duration(Duration.seconds(10))
                                  .fromAngle(0)
                                  .toAngle(360)
                                  .cycleCount(Timeline.INDEFINITE)
                                  .autoReverse(false)
                                  .build();
                             rotateTransition2.play();
             mainScene = new Scene(pane, 400, 400);
             primaryStage.setScene(mainScene);
            primaryStage.show();
    }Edited by: 953596 on 19.08.2012 12:03

    To answer my own Question, it depends how you add childs.
    It seems that the "master Container", the one added to the Scene will allways resize with the window. To avoid that you can add a container to the "master Container" and tell it to be
    pane.setPrefSize(<child>.getWidth(), <child>.getHeight());
    pane.setMaxSize(<child>.getWidth(), <child>.getHeight());
    root.getChildren().add(pane);and it will stay the size even if the window is resized.
    Here is the modified code. Zooming and panning is working, zomming to window size is not right now. I'll work on that.
    import javafx.animation.Animation;
    import javafx.animation.ParallelTransition;
    import javafx.animation.ParallelTransitionBuilder;
    import javafx.animation.RotateTransition;
    import javafx.animation.RotateTransitionBuilder;
    import javafx.animation.ScaleTransitionBuilder;
    import javafx.animation.Timeline;
    import javafx.animation.TranslateTransitionBuilder;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.input.MouseButton;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.ScrollEvent;
    import javafx.scene.layout.Pane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    public class Test extends Application
         Stage primStage;
        Scene mainScene;
         Group root;
         Pane masterPane;
         Point2D dragAnchor;
         double initX;
        double initY;
         public static void main(String[] args)
            launch(args);
        @Override
        public void init()
            root = new Group();
            final Pane pane = new Pane();
            pane.setStyle("-fx-background-color: #CCFF99");
            pane.setOnScroll(new EventHandler<ScrollEvent>()
                @Override
                public void handle(ScrollEvent se)
                    if(se.getDeltaY() > 0)
                        pane.setScaleX(pane.getScaleX() + pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() + pane.getScaleY()/15);
                        System.out.println(pane.getScaleX() + " " + pane.getScaleY());
                    else
                        pane.setScaleX(pane.getScaleX() - pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() - pane.getScaleY()/15);
                        System.out.println(pane.getScaleX() + " " + pane.getScaleY());
            pane.setOnMousePressed(new EventHandler<MouseEvent>()
                public void handle(MouseEvent me)
                    initX = pane.getTranslateX();
                    initY = pane.getTranslateY();
                    dragAnchor = new Point2D(me.getSceneX(), me.getSceneY());
            pane.setOnMouseDragged(new EventHandler<MouseEvent>()
                public void handle(MouseEvent me) {
                    double dragX = me.getSceneX() - dragAnchor.getX();
                    double dragY = me.getSceneY() - dragAnchor.getY();
                    //calculate new position of the pane
                    double newXPosition = initX + dragX;
                    double newYPosition = initY + dragY;
                    //if new position do not exceeds borders of the rectangle, translate to this position
                    pane.setTranslateX(newXPosition);
                    pane.setTranslateY(newYPosition);
            int x = 0;
            int y = -100;
            for(int i = 0; i < 5; i++)
                 x = 0;
                 y = y + 100;
                 for (int j = 0; j < 5; j++)
                      final Rectangle rect = new Rectangle(x, y, 30 , 30);
                       final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                             .node(rect)
                             .duration(Duration.seconds(4))
                             .fromAngle(0)
                             .toAngle(720)
                             .cycleCount(Timeline.INDEFINITE)
                             .autoReverse(true)
                             .build();
                     rect.setOnMouseClicked(new EventHandler<MouseEvent>()
                          public void handle(MouseEvent me)
                               if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                                    rotateTransition.setToAngle(0);
                                    rotateTransition.stop();
                                    rect.setFill(Color.BLACK);
                                    rect.setScaleX(1.0);
                                    rect.setScaleY(1.0);
                               else
                                    rect.setFill(Color.AQUAMARINE);
                                    rect.setScaleX(2.0);
                                    rect.setScaleY(2.0);
                                    rotateTransition.play();
                      pane.getChildren().add(rect);
                      x = x + 100;
            pane.autosize();
            pane.setPrefSize(pane.getWidth(), pane.getHeight());
            pane.setMaxSize(pane.getWidth(), pane.getHeight());
            root.getChildren().add(pane);
            masterPane = new Pane();
            masterPane.getChildren().add(root);
            masterPane.setStyle("-fx-background-color: #AABBCC");
            masterPane.setOnMousePressed(new EventHandler<MouseEvent>()
               public void handle(MouseEvent me)
                   System.out.println(me.getButton());
                   if((MouseButton.MIDDLE).equals(me.getButton()))
                       double screenWidth  = masterPane.getWidth();
                       double screenHeight = masterPane.getHeight();
                       System.out.println("screenWidth  " + screenWidth);
                       System.out.println("screenHeight " + screenHeight);
                       System.out.println(screenHeight);
                       double scaleXIs     = pane.getScaleX();
                       double scaleYIs     = pane.getScaleY();
                       double paneWidth    = pane.getWidth()  * scaleXIs;
                       double paneHeight   = pane.getHeight() * scaleYIs;
                       double screenCalc    = screenWidth > screenHeight ? screenHeight : screenWidth;
                       double scaleOperator = screenCalc  / paneWidth;
                       double moveToX       = (screenWidth/2)  - (paneWidth/2);
                       double moveToY       = (screenHeight/2) - (paneHeight/2);
                       System.out.println("movetoX :" + moveToX);
                       System.out.println("movetoY :" + moveToY);
                       //double scaleYTo = screenHeight / paneHeight;
                       ParallelTransition parallelTransition = ParallelTransitionBuilder.create()
                               .node(pane)
                               .children(
                                   TranslateTransitionBuilder.create()
                                       .duration(Duration.seconds(2))
                                       .toX(moveToX)
                                       .toY(moveToY)
                                       .build()
                                   ScaleTransitionBuilder.create()
                                       .duration(Duration.seconds(2))
                                       .toX(scaleOperator)
                                       .toY(scaleOperator)
                                       .build()
                      .build();
                       parallelTransition.play();
        public void start(Stage primaryStage)
             primStage = primaryStage;
            mainScene = new Scene(masterPane, 430, 430);
             primaryStage.setScene(mainScene);
            primaryStage.show();
    }

  • Can not resize with the selection tool

    can not resize with the selection tool

    joc,
    I believe you may have come across the Live Rectangle bug which is limited to the MAC versions starting with 10.7 and 10.8, but not 10.9 (Mavericks) or 10.10 (Yosemite). Hopefully, the bug will be fixed soon.
    So a switch to Mavericks or Yosemite with a reinstallation might be the way to solve it here and now.
    To get round it in each case, it is possible to Expand the Live Rectangles to get normal old fashioned rectangles, or to Pathfinder>Unite, or to use the Scale Tool or the Free Transform Tool.
    A more permanent way round that is to create normal old fashioned rectangles, after running the free script created by Pawel, see this thread with download link:
    https://forums.adobe.com/thread/1587587

  • Web Object not visible in published project

    I'd like to use the new web object interaction widget in Captivate 7 to embed a website into a project. Everything works fine as long as I  only preview the project in my web browser. But when I publish it and go to the slide where the web object is supposed to be, there's only a blank space. Why?
    I've published the project in SWF-Format with  eLearning-output set to "AdobeConnect". I tried to switch the option "Scalable HTML content" on and off as I heared that some people are having problems using this in connection with widgets, but no matter whether it's turned on or of, the web object doesn't show up. There must be something very
    trivial that I have overlooked since I'm using the web object in the standard way it is meant to be used.
    Thanks in advance for any help.
    Andreas

    Thanks for your advice, but it still doesn't work. I have created a new project for my tests with only the web object in it to make sure no other objects etc. are influencing the output. I  published the project and tried to run it on different browsers/operating systems and directly from my hard drive vs. Adobe Connect. The results:
    Using my Mac and opening the project with the HTM.-file from my hard drive after I have added the published files folder  to the trusted locations for Flash (without this setting, it doesn't work), the web object only appears in Safari, but not in Chrome and Firefox. Using AdobeConnect, it's the same: only Safari.
    Using a Windows laptop (again opening the project with the HTM.-file from my hard drive after I have added the published files folder  to the trusted locations for Flash), it works with Internet Explorer and Firefox, but not with Chrome. Using AdobeConnect, no browser works. I only get this message:
    I can't use the web object when it only loads under very special circumstances. Moreover, I found out, that checking the "Scale HTML content" checkbox in the publish window  results in a totally misplaced web widget in those browsers that support the web object. It then looks like this:
    I use this option regularly, so this is really a problem for me.
    I hope you can tell, what I can do to get the web object running. I simply can't believe that this  is the standard behaviour and that everybody else is experiencing the same problems. There must be something I can do to get it running.
    I hope you can help.
    Best Regards
    Andreas

  • Captivate 7 Web Object Not Scrolling on iPad

    I've inserted a web object in to my project and filled it with text so that it requires scrolling. The project has been published as HTML5 with no scalable HTML content.
    Scrolling works fine on PC but not on iPad (iOS 7). I'm guessing that this is down to the usual iFrame issues on iOS devices so I'm looking for a reliable way to get around this issue.
    I'd be grateful if anyone has any suggestions.
    As an aside, the main reason I'm looking to implement a web object is that I need to be able to style individual words within large amounts of text. Unfortunately this doesn't seem possible using the scrollable text interaction so I've had to resort to searching for an alternative solution, in this case pulling in an external HTML file with styled text in it. The full discussion is here for anyone who's interested: http://forums.adobe.com/message/5775245#5775245
    Thanks.

    Does your Web Interaction show "Updated" on it? If not, you probably have older version of it. Apparently, the issue is already fixed in the updated version. Here is a screenshot.
    You get this updated version automatically. If not, you can contact any Adobe support staff and they will provide you one.
    Sreekanth

  • Web Report not working with parameter form

    Hi,
    I have a report which has got a parameter form. This report is
    running fine in client/server environment. But when I deploy the
    same report on web (CGI) using PARAMFORM=YES, I am getting the
    parameter form and after pressing the SUBMIT button I am getting
    a blank report under the following two cases even though I have
    data for that query:
    CASE1: <input type="hidden" name="desformat" value="html">
    then I am getting the report with no data retrieved.
    CASE2: <input type="hidden" name="desformat" value="pdf">
    then I am getting completely blank report (no logo, no column
    titles, etc.)
    See the HTML code below. Remember, the same thing is running
    fine in client/server environment. Moreover, if I make a HTML-
    coded form for the report then everything on the client's
    browser is running fine. But this is not what we want, 'coz we
    are running the "BEFORE PARAMETER FORM" trigger in the report.
    So, should I conclude that web-reports does not work with the
    parameter forms?? Is it a bug???
    Regards
    Moiz
    ----------HTML Code------------------
    <form action="http://pc-oracle1.ri.kfupm.edu.sa/cgi-
    bin/rwcgi60.exe">
    Select the Weekend Date for which you would like to see your
    Timesheet report
    <input type="hidden" name="server" value="repserver">
    <input type="hidden" name="report" value="timesheet.rdf">
    <input type="hidden" name="userid" value="696122/696122@ors">
    <input type="hidden" name="destype" value="cache">
    <input type="hidden" name="desformat" value="html">
    <input type="hidden" name="paramform" value = "yes">
    <input type="submit" value="Run Report">
    </p>
    </form>
    -------HTML Code END------------------
    null

    No pal, that's not the problem. The problem lies with the
    "BEFORE PARAMETER FORM" report trigger on the web. Check this
    out on ur report server and u will understand my problem.
    Moiz
    Ramonito Te (guest) wrote:
    : I think the cause is the missing question mark after
    rwcgi60.exe.
    : Anyway here is my html file that runs under cgi. Hope this
    helps.
    : <HTML>
    : <!--Form Action is RWCGI60 URL-->
    : <FORM METHOD=POST
    : ACTION="http://ntserver1/ows-bin/rwcgi60.exe?" METHOD="POST">
    : <!--Parameters not exposed to user are hidden-->
    : <INPUT name=server type=hidden value="ReportsServer">
    : <INPUT name=paramform type=hidden value="yes">
    : <CENTER><H1>Set Reports Multi-tier Server Parameters </H1>
    Report Name: <INPUT name=report type=text value="c:
    : \orant\webdemo\deptemp.rdf">
    : Database Connection: <INPUT name=userid type=text
    : value="scott/tiger@orcl81">
    : <INPUT name=destype type=hidden value="cache">
    : Output Format: <SELECT name=desformat> <OPTION value=HTMLCSS
    : selected> HTMLCSS <OPTION
    : alue=PDF> PDF </SELECT>
    : <HR><INPUT type=submit value="Run Report!">
    : </CENTER> </FORM> </HTML>
    : lue="Run Report!">
    : </CENTER> </FORM> </HTML>
    : M. Moizuddin (guest) wrote:
    : : Hi,
    : : I have a report which has got a parameter form. This report
    : is
    : : running fine in client/server environment. But when I deploy
    : the
    : : same report on web (CGI) using PARAMFORM=YES, I am getting
    the
    : : parameter form and after pressing the SUBMIT button I am
    : getting
    : : a blank report under the following two cases even though I
    : have
    : : data for that query:
    : : CASE1: <input type="hidden" name="desformat" value="html">
    : : then I am getting the report with no data retrieved.
    : : CASE2: <input type="hidden" name="desformat" value="pdf">
    : : then I am getting completely blank report (no logo, no
    column
    : : titles, etc.)
    : : See the HTML code below. Remember, the same thing is running
    : : fine in client/server environment. Moreover, if I make a
    HTML-
    : : coded form for the report then everything on the client's
    : : browser is running fine. But this is not what we want, 'coz
    we
    : : are running the "BEFORE PARAMETER FORM" trigger in the
    report.
    : : So, should I conclude that web-reports does not work with
    the
    : : parameter forms?? Is it a bug???
    : : Regards
    : : Moiz
    : : ----------HTML Code------------------
    : : <form action="http://pc-oracle1.ri.kfupm.edu.sa/cgi-
    : : bin/rwcgi60.exe">
    : : Select the Weekend Date for which you would like to see your
    : : Timesheet report
    : : <input type="hidden" name="server" value="repserver">
    : : <input type="hidden" name="report" value="timesheet.rdf">
    : : <input type="hidden" name="userid" value="696122/696122@ors">
    : : <input type="hidden" name="destype" value="cache">
    : : <input type="hidden" name="desformat" value="html">
    : : <input type="hidden" name="paramform" value = "yes">
    : : <input type="submit" value="Run Report">
    : : </p>
    : : </form>
    : : -------HTML Code END------------------
    null

  • Captivate 7 web object not scrolling properly iPad multiscreen.html

    I have a Captivate 7 project published as both SWF and HTML5. The project is to be deployed via an LMS using multiscreen.html.
    The issue that I have is that I have a web object that requires scrolling but when I view multiscreen.html on my iPad I am required to scroll horizontally with my finger to achieve vertical scrolling of my web object, any attempt to scroll vertically just causes the web bouce effect in Safari. If I view the project via index.html on my iPad, scrolling works as expected with vertical scrolling behaving properly and no web bounce.
    It seems as though multiscreen.html is getting the orientation of the device confused but that's just a guess. Has anyone else encountered this and if so, do they have a workaround that they can share please?
    Many thanks.

    I've found that updating the file called 'Widget_40080.htm' with the highlighted section in the following image fixes the scrolling issue on iPad.

  • Web Object Manager Hangs With ojvm 1.3.0!

    Hi,
    I have switched jvm to 1.3.0 evrything id OK but web object manager which hangs, how can I fix it?
    Thanks a lot,
    Reza

    Reza,
    You might want to try posting this to the Oracle8i JVM forum.
    Thanks
    Blaise

  • Why Does Adobe Captivate 8 Web Object Not Get Published Correctly

    Hi
    I am trying to insert a YouTube video in Adobe Captivate and publish it. While it previews fine, when i publish it as an SWF, i see just a blank frame.
    Can you help out here? Also, if I want to publish it as an PDF, will the video play there too?
    Warm Regards
    Akshay

    Hi Akshay,
    I am assuming the method you are using now is embedding Youtube videos into your Web object. My suggestion is it will be much easier if you use the Youtube Learning Interaction instead of a Web object to insert Youtube videos to your Captivate project.
    This can be found in the Interactions Toolbar -> Learning Interactions -> Youtube
    Also, as Sreekanth mentioned, please test it on a web server, or SCORM cloud.
    Youtube interaction will work when exported to PDF as well.
    Regards,
    Mohana

  • Placed objects not resizing/moving with their blue destination box - even when using Shift + CMD

    The blue rectangle will not scale properly when i try to adjust it's size, I have to do this line by line, as well.
    The manual rotate black arrow that appears on the corner usually has stopped appearing.
    Anyone know what I have done?!

    What application are you using? This forum is for Creative Suite-wide issues.

  • Java Web Start not working with Proxy

    I have Java Web Start program not listening to proxy settings. It tries to access localhost using our proxy settings, but with no user name or password. I'm wondering if Java Web Start has proxy settings somewhere. I'm not sure since when we disable the proxy settings the program works without issue. Any thoughts?
    Thanks

    For instance Safari uses those System Proxy settings, Firefox uses it's own!
    So Java is using it's own, now we're waiting for an expert to drop in!

  • Opening a specific page of a PDF through web browser not working with IE5.5

    Hi,
    I need an urgent help to reslove the problem below.
    Using Netscape 4.7, When I am trying to open a specific page of
    a PDF file through the web browser using the command below.
    web.show_document('http://oraweb/abc.pdf#page=3','_self');
    This opens the page 3 and then when I give subsequent calls to
    this command with different page nunbers, it opens the related
    pages correctly.
    But when using IE 5.5, the page gets displayed correctly for
    only the firt time. Any calls to the command does not change the
    page at all.
    Could anybody help me to resolve this problem ASAP?
    Thanks
    Preji

    Hello,
    I think this is a problem of IE5.5 with PDF-Files.
    You can find more information at acrobat web site
    (perhaps there is a patch)
    There is a setting in the reader where you can say that
    the reader should start in the web-browser. Turn it off -
    when IE starts downloading a pdf-file you can choose
    acrobat reader for the first time.

  • Sdk 3b Remote Objects not working with java 1.6.29

    So I am not sure if this is java specific or if there is anything in Flex I can do.
    I am working on a project that communicates with the java back end via the AMF channels / Consumer objects and Remote Objects. Usking SDK 3b
    In Java 1.6.26 and java 1.7 it works fine.  However in java 1.6.29 The remote objects seem to not get called/communicated/execute on the java server side. 
    Interesting thing to note is that the consumer/AMF feeds are still able to function.
    Was there any change that Adobe has documented that may have caused this to happen when they changed the java version? or any solution around this as a requirement is to use 1.6.29?

    So it aprears that it works via MXML however when I try to define it in actionscript it recieves no events, messages, etc.  Looking at the serverside print statements it appears the call never goes through.

  • Adobe Captivate 7- Event Video not connecting & Web Object not working

    Greetings all. I hope you may be able to assist me. I am subscribed to Adobe Captivate 7. I am running Windows 7 on a 32 bit computer. The system is set up on a business network and I have verified the installation of Captivate is accurate and up to date.
    I am experiencing an issue:
    1. When adding an Event Video (Video> Insert Video> Event Video> Already deployed to a web server...) using the URL I received the following message:  "Failed to load the video file. The file path or URL may be invalid..." This HTML file path leads directly to the video on our internal shared docing port.
    Currently, the only way I can add a video is to use the Muti-Slide Synchronized Video option. I do not like using this option because there are no play or stop buttons. The video simply plays with no option to pause.
    Any assistance would be greatly appreciated.
    Angelique

    Hello and welcome,
    Is Captivate installed on the network? That can cause a lot of problems, same as when you have My Documents installed on the network. Please have both on your system. Moreover, do launch it as an Administrator?
    Lilybiri

  • Deployment of any object not possible with OWB11gR2

    Hi,
    i recently did a Upgrade to 11.2 but while i'm trying to deploy the object i get a
    RPE-01008: Recovery of this request is in progress
    even trying with deleting and then deploying didnt work. neither replace.
    could anyone help please.
    thx,
    alex

    2010/12/16-10:31:38-CET [C5C3AC][] Platform Service for null
    2010/12/16-10:31:42-CET [C5C3AC][] Connection Manager - OCI fix performed
    2010/12/16-10:31:44-CET [C5C3AC][] Thin driver connection time - 1499 millisecond(s)
    2010/12/16-10:31:44-CET [C5C3AC][] Connection Manager - property user.timezone value is Europe/Berlin
    2010/12/16-10:31:44-CET [C5C3AC][] Connection Manager - connection.timezone not set. Defaulting to value SERVICE
    2010/12/16-10:31:44-CET [C5C3AC][] Connection Manager - using service timezone Europe/Berlin
    2010/12/16-10:31:44-CET [C5C3AC][] Connection Manager - defaultimg session timezone offset to +01:00
    2010/12/16-10:31:44-CET [C5C3AC][] Free Memory(bytes)=9802568 Total Memory(bytes)=14417920 Used Memory(bytes)=4615352 Used Memory(percent)=33%
    2010/12/16-10:31:44-CET [C5C3AC][] Control Center Service Version 11.2.0.1.0 starting
    2010/12/16-10:31:44-CET [C5C3AC][] Startup due to manual request
    2010/12/16-10:31:44-CET [C5C3AC][] Control Center Repository Name OWBSYS on Service
    2010/12/16-10:31:44-CET [C5C3AC][] Explicit garbage collection - every 1 execution(s)
    2010/12/16-10:31:44-CET [C5C3AC][] Initializing Platform
    2010/12/16-10:31:44-CET [C5C3AC][] Recovery starting
    2010/12/16-10:31:44-CET [C5C3AC][] Service startup complete
    2010/12/16-10:32:50-CET [C5C3AC][] AuditId=84: Processing unit deployment request
    2010/12/16-10:32:50-CET [C5C3AC][] Free Memory(bytes)=8158816 Total Memory(bytes)=14417920 Used Memory(bytes)=6259104 Used Memory(percent)=44%
    2010/12/16-10:32:50-CET [10FFB38][] Connection Manager - off
    2010/12/16-10:32:51-CET [10FFB38][] Thin driver connection time - 35 millisecond(s)
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] Attempting to create adapter 'class.Oracle Database.10.2.DDLDeployment'
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] Thin driver connection time - 39 millisecond(s)
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] Creating target schema synonyms for target schema
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] Assigning grants to target schema
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] script_run_begin auditId=86 operation=9001
    2010/12/16-10:32:52-CET [10FFB38][OWB.WORKSPACE] script_run_end auditId=94 scriptRunStatus=15002
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] oracle.wh.runtime.platform.adapter.InfrastructureException: RPE-01003: An infrastructure condition prevented the request from completing.
    - ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:366)
    at oracle.wh.runtime.platform.adapter.odb.OdbDeploymentAdapter.deploy(OdbDeploymentAdapter.java:594)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:216)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3530)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4718)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1062)
    at sqlj.runtime.ExecutionContext$OracleContext.oracleExecuteUpdate(ExecutionContext.java:1570)
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:223)
    ... 5 more
    java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3530)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4718)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1062)
    at sqlj.runtime.ExecutionContext$OracleContext.oracleExecuteUpdate(ExecutionContext.java:1570)
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:223)
    at oracle.wh.runtime.platform.adapter.odb.OdbDeploymentAdapter.deploy(OdbDeploymentAdapter.java:594)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:216)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] oracle.wh.runtime.platform.service.controller.RecoveryInProgress: RPE-01008: Recovery of this request is in progress.
    at oracle.wh.runtime.platform.service.controller.AdapterContextImpl.initialize(AdapterContextImpl.java:1745)
    at oracle.wh.runtime.platform.service.controller.DeploymentContextImpl.initialize(DeploymentContextImpl.java:682)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.initialize(DeploymentController.java:69)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:208)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:229)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] Attempting to create adapter 'class.Oracle Database.10.2.DDLDeployment'
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] Thin driver connection time - 451 millisecond(s)
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] Creating target schema synonyms for target schema
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] Assigning grants to target schema
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] oracle.wh.runtime.platform.adapter.InfrastructureException: RPE-01003: An infrastructure condition prevented the request from completing.
    - ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:366)
    at oracle.wh.runtime.platform.adapter.odb.OdbDeploymentAdapter.deploy(OdbDeploymentAdapter.java:594)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:216)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:229)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3530)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4718)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1062)
    at sqlj.runtime.ExecutionContext$OracleContext.oracleExecuteUpdate(ExecutionContext.java:1570)
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:223)
    ... 6 more
    java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3530)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4718)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1062)
    at sqlj.runtime.ExecutionContext$OracleContext.oracleExecuteUpdate(ExecutionContext.java:1570)
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:223)
    at oracle.wh.runtime.platform.adapter.odb.OdbDeploymentAdapter.deploy(OdbDeploymentAdapter.java:594)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:216)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:229)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] deploy_unit_done auditId=84
    2010/12/16-10:32:53-CET [C5C3AC][] Free Memory(bytes)=16367640 Total Memory(bytes)=23592960 Used Memory(bytes)=7225320 Used Memory(percent)=31%
    2010/12/16-10:32:53-CET [C5C3AC][] AuditId=84: Request completed

Maybe you are looking for

  • How do I create an accessible PDF for Thesaurus with many chapters, from InDesign CS 5.5 and Acrobat

    Hi folks, I have redesigned a Thesaurus (controlled vocabulary for an Agency's archives) in InDesign CS 5.5. I am now preparing an accessible PDF from the many files (using a Book created in InDesign). The front cover, front matter and back cover are

  • Purchase Rebate - Error during Settlement - MEB4

    Hi Experts, For the Purchase Rebate Scenario, I have followed the following steps : 1. Create Rebate Arrangement 2. Create PO 3. Goods Receipt 4. Invoice verification using MIRO 5. Check Update of business volume T-code : MEB6 Update of business volu

  • Problem in Navigation from one tab to another

    Hi All, In my forms, I have three tabs. In one tab, i have a set of records displayed(like table) in which all columns are bound to a table. I want to sort the records in the tab based on one column. So i wrote the following code in WHEN-TAB-PAGE-CHA

  • Ibook & .mac sync

    Hi Can anyone help. I have not been able to get my ibook to sync with my .mac account. Mobileme technical say its a problem with settings on my ibook, something to do with my ibook being set up as a client. Has anyone else had this problem or got any

  • [LV 6i][Débutant] Créer une boîte de dialogue personnalisée

    Je voudrais savoir comment faire pour créer une boîte de dialogue du genre de l'image en annexe. Ce serait une boîte de dialogue qui serait activée à la fin du VI par un booléen (On peut imaginer que le programme soit englobé dans une structure "Cond