(Impossible to write in the InDesign Server forum) - [Java/Corba] images appear only as gray box

Hello, sorry to post here, but I can't post in the Forum ID. click on "post message" deletes the text...  We are working on our first plugin for InDesign Server. We create Documents with boxes and placing graphics (in PDF format) in this field. The problem is: after you open the document in InDesign, we see just boxes grey and without pictures. The links in the document are ok and when we print, we see the images. In my opinion, the internal preview of graphics are not created. Printing uses the original file, and there we can see the image.  In the code, we create a rectangle with addRectangle() and place the image with the command place(). Is there anything else that we have to see the image in InDesign?  Thanks for all the ideas Klaus Friese

Hi Klaus,

Take a look at the following to be called at startup:

InterfacePtr iServerSettings (iSession, UseDefaultIID());
If (iServerSettings)
iServerSettings-> SetImagePreview (true);

Best,

Peter

Tags: InDesign

Similar Questions

  • 'Impossible to connect with the activation server' while trying to activate Windows 7

    Stater of the i run windows 7 on a laptop dell inspiron N5050 32-bit, windows asks me to re-enter my product key each tome I get it it displays after loading: impossible to connect with the activation server, see other ways to activate windows, pls make serious saying my trial period has expired why it cannot connect to the server to check the product key? Help, please

    Original title: activate windows

    Have you tried to restart by phone?

    How to activate Windows 7 manually (activate by phone)
     
    1) click Start and in the search for box type: slui.exe 4
     
    (2) press the ENTER"" key.
     
    (3) select your "country" in the list.
     
    (4) choose the option "activate phone".
     
    (5) stay on the phone (do not select/press all options) and wait for a person to help you with the activation.
     
    (6) explain your problem clearly to the support person.
     
    http://support.Microsoft.com/kb/950929/en-us

    Please run the Microsoft Genuine Diagnostics Tool then copy and paste the results into an answer here for further analysis:
    http://go.Microsoft.com/fwlink/?LinkId=52012

  • Impossible to connect to the smtp server and send an email using javamail.

    Hi all

    I am struggling with sending e-mail with javamail api.

    I've visited a few forums but not be able to solve the problem then post here.

    Details of the situation are:

    1 SMTP - to which we are able to connect with telnet and able to send emails that work even between the firewall.

    2 tried to disable IPV6 from my windows machine 7 after reading something - java tries to connect to smtp with IPV6 and it should be disabled so that javamail work.

    3 has tried to run the same code to a linux environment. in this environment, we are also able to connect to the smtp with telnet server and send mail

    the code I have tried is below.

    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    
    public class SendEmail
    {
    public static void main(String [] args){
    String to = "[email protected]";//change accordingly
    String from = "[email protected]";//change accordingly
    String host = "smtp.somthing.com";//or IP address
    
    //Get the session object
    Properties properties = System.getProperties();
    properties.setProperty("mail.debug", "true");
    properties.setProperty("mail.smtp.host", host);
    properties.put("mail.smtp.starttls.enable", "false");
    //properties.put("mail.smtp.port", "25"); //commented as its by default takes 25
    Session session = Session.getDefaultInstance(properties);
    
    ////compose the message
    try{
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
    message.setSubject("Ping");
    message.setText("Hello, this is example of sending email  ");
    
    // Send message
    Transport.send(message);
    System.out.println("message sent successfully....");
    
    }catch (MessagingException mex) {mex.printStackTrace();}
    }
    }
    

    I get the errors are

    DEBUG: JavaMail version 1.4.7
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "smtp.something.com", port 25, isSSL false
    Exception in thread "main" java.lang.RuntimeException: javax.mail.MessagingException: Could not connect to SMTP host: smtp.something.com, port: 25;
      nested exception is:
        java.net.ConnectException: Connection timed out: connect
        at emailer.SendMail.main(SendMail.java:64)
    Caused by: javax.mail.MessagingException: Could not connect to SMTP host: smtp.something.com, port: 25;
      nested exception is:
        java.net.ConnectException: Connection timed out: connect
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1961)
        at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654)
        at javax.mail.Service.connect(Service.java:295)
        at javax.mail.Service.connect(Service.java:176)
        at emailer.SendMail.main(SendMail.java:58)
    Caused by: java.net.ConnectException: Connection timed out: connect
        at java.net.DualStackPlainSocketImpl.connect0(Native Method)
        at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
        at java.net.PlainSocketImpl.connect(Unknown Source)
        at java.net.SocksSocketImpl.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:321)
        at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:237)
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1927)
        ... 4 more
    

    someone had a problem like this?

    suggestions are welcome...

    The server I used was not accessible from the telnet command or java code.
    However when I telnet to the server it was implicitly redirected to another server that I failed to notice.

    My sincere apologies to all
    I'll take more precautions before posting and check the facts in more detail.

  • After STARTING the ESXi server stopped all VMware images...

    Hi people!

    The version of server 1 using I could mark images to start automatically with the VMware Server.

    I have not found the place to install VMware images to auto-start with the server - or which is not possible with this product.

    Best regards, Hans Holt

    Is in the configuration under Machine tab virtual start / stop

  • What happens to the W2k3 Server forum space

    Seems of this forum has changed and I can't find the W2k3 box

    Seems of this forum has changed and I can't find the W2k3 box

    When was the last time you were here?

    This is a public forum consumer really - on the side of 'server' of the House, you can try here:
    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

    Note that Windows Server 2003 is in the "extended support phase" since 7/xx/2010.  This does not affect the assistance-to-peer, naturally; However, Microsoft may have removed references to the product of the forums in ways such as no longer having a real category.

    The Extended Support phase follows the main phase of Support for the products of company, developer and desktop operating system.
    Supported service pack level, extended Support includes:

    • Paid support
    • Support update of security without additional charges
    • Related to non-security hotfix support requires an Extended Hotfix Support Agreement to buy (by-fix also in supplement).
      This agreement is not available for the consumer desktop operating system. More details are available here.

    Please note:

    • Microsoft won't guarantee assistance requests, changes, or new features during the Support phase extended
    • Extended support is not available for consumer, hardware or multimedia products
    • Enrollment in a program of maintenance may be required to receive these benefits for certain products
  • writes to the remote server directly utl_tcp or utl_http

    Hello

    I would like to write and then read data from files of apex.

    Writing to blobs, slowly, writing on local disks or nfs share is not secure.
    Will be well written the server to remote application directly, for example by using oracle database packages: utl_tcp or utl_http.
    Could you please provide recommendation and the solutions implemented and some code to distinguish.

    WKR,
    Seitkali

    I wrote my FTP package agreement NDA and unfortunately cannot share it. Tim Hall and Chris Pool however the two wrote client FTP in PL/SQL packages. You should find quite easily Tim via google - Chris has more features, but has been wrapped I think. You don't know if the real source code that never leaves home.

  • ESX4.0 lost connection and impossible to reconnect to the same server

    Three virtual machines is is stuck on one of my ESX Server 4.0, no was not able to close the same then I restarted the service management of vmware for the same order.

    restart of #/etc/init.d/mgmt-vmware; chkconfig mgmt-vmware on

    Now, I've lost the connection to my server ESX 4.0 and when I m trying to reconnect it gives me out of "time" error

    What should I do to fix the error?

    Concerning

    v

    I know that the article is for esx 3.5 but it might be useful to have a quick glance at the Article KB VMware: 1005566

    If you found this helpful, please consider awarding points

  • 11 t-k100 Pavilion: Pavilion 11 t-k100: to help to win 10, impossible to write on the screen

    I'm testing a signature application that works as expected using a Tablet PC running Win 7 Ultimate x 86. The PC, a Fujitsu ST5112 Tablet comes with a stylus.

    The application of signature does not work on a Pavilion running 11 t-k100 win 10 64-bit edition. All updates are installed. With a ballpoint pen, which has a rubber plug, I use the handwriting Panel in Win 10 with the rubber tip. But I'm unable to calibrate the stylus (stylus, alias) using the feather in Cap rubber or stick finger or sharp or anything else that is sharp. Did not find a such accessory for this HP laptop.

    Is there a pen or touch stylus for this laptop with which I can save a signature on the screen? I saw pens that behave like mice, but it would be necessary for a touchscreen PC under Win 10?

    Thank you very much.

    Problem solved. Not a hardware problem. The characteristic screen works with Chrome version 46.0.2490.80m, but not 11.0.22 IE. Hope that my discovery will help others.

    "If you want to make other people happy, practice compassion." If you want to be happy, practice compassion. "[Tenzin Gyatso, the 14th Dalai Lama]

  • When you set the outgoing SMTP server, why not specifying the SMTP server 'by' is not working, but only the first specified server?

    I have several options for the outgoing SMTP server. I put a default and attempt to send. It fails and uses the first condition in the list.

    I restart Thunderbird and try to send. It uses the first condition in the list.

    I eliminated all SMTP servers in the list but the one I want, and it works.

    What escapes me, that I have observed this problem on all my systems for a long time?

    Kind regards

    Carl

    your lack of anything that account having a SMTP server associated with them, which, if your 'in' an account more wrinkles 'default '.

    Right click on a folder in account, and then select settings.
    Click on the account name in the settings and on the right is a drop down list and the value 'default' smtp for this account.

  • To download to the remote server using FlashFXP: new images will not upload. [was: Question]

    I use Dreamweaver CS4 in my school.  We create the Web site using a local drive and use FlashFXP to upload to a remote server.  Suddenly, the new images we have inserted on the site will not transfer.  The show upward in mode live view and when test us them in different browsers, but will not transfer out of the queue and will be not displayed on the Web site.  It is only with the new images we have created; Download all the old images.  Something is corrupt in our records, our code, or is FlashFXP?

    This looks like a problem with permissions on the server.

    Looks like that is not allowing you to replace the files that already exist.

  • ODI must be installed on a remote box for the remote server managed Java EE Agents on top of WebLogic home

    I ODI 111.1.1.1.7 configuration agents of java ee on four managed servers, (two in Linux VM and other two in the virtual Windows machine) within a domain (on the Linux VM). I wonder if I need to install the ODI software on top of the WebLogic that was installed on the machine virtual windows. The version of weblogic 10.3.6(11g) and the jdk is jdk1.7.0_4 on two VMS.

    Without installation of ODI on the virtual Windows machine, I set up a new domain with four managed servers, two on localhost (vm linux) and two on the remote machine (vm windows). After testing two local managed server to work, I tried to order/unzip pack allows to transfer the managed domain servers (content servers managed with - handled = true) to the virtual machine Windows and with the field relative path specified (as WLS home directories are different between linux and windows), and I got the following error when unpacking on the virtual Windows machine Therefore, I wonder if ODI must be installed on the virtual WIndows computer (still don't think):

    C:\OraODI\product\odifmw > C:\OraODI\product\odifmw\wlserver_10.3\common\bin\unpack.cmd-domain = user_projects\domains\odi_domain-template=C:\software\odi_domain_template.jar

    The 64-bit Java Server VM Warning: ignore the option UseSpinning; support has been removed in 7.0_40

    < < "C:\software\odi_domain_template.jar" reading model > > failure: model read "C:\software\odi_domain_template.jar".

    CFGFWK-60550: Script Execution aborted. The script may contain an error. "House of component required not found for the component 'oracle.as.jrf' version ' 11.1.1.7.0 '.

    Any ideas? Please shed some light on me...

    Here's a long version debugging information if you are interested:

    2014-01-29 10:02:27, 113 DEBUG [hand] com.oracle.cie.wizard.WizardController - Assistant Controller Version 4.0.0.0 (Saruman) Started.

    2014-01-29 10:02:27, 129 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/Assistant/i18n_wizard) in the space of names (Assistant-internal) group in the locale (en_AU).

    2014-01-29 10:02:27, 144 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: en

    2014-01-29 10:02:27, 144 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/Assistant/i18n_public) group in the (public) namespace in the settings regional (en_AU).

    2014-01-29 10:02:27, 160 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:27, 160 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/Assistant/i18n_wizard_silent) in the space of names (Assistant-internal) group in the locale (en_AU).

    2014-01-29 10:02:27, 160 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: en

    2014-01-29 10:02:27, 519 DEBUG [hand] com.oracle.cie.wizard.WizardController - running Oracle WebLogic Configuration Wizard 7.0.0.0 silently under namespace < config >

    2014-01-29 10:02:27, 878 DEBUG [hand] com.oracle.cie.wizard.WizardController - target responsible: config

    2014-01-29 10:02:27, 893 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - Excecuting.

    2014-01-29 10:02:27, 893 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: loadNamespace-> com.oracle.cie.wizard.silent.tasks.LoadObjectStoreTask

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 003 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources, comdev, comdev) group in the namespace (comdev) in the locale (en_AU).

    2014-01-29 10:02:28, 003 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 003 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config/config) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config/config_tasks) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 049 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config_tasks) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 049 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 065 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 065 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 065 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 065 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config/config_messages) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 065 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 081 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28: 081 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 081 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28: 081 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config-wls/config_messages) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28: 081 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 096 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config_messages_map) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 096 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: setMessagePrefix-> com.oracle.cie.wizard.domain.silent.tasks.SetMessagePrefixTask

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 112 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: propertyFileFinder-> com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask

    2014-01-29 10:02:28, 112 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 112 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - going to get weblogic class object. Home

    2014-01-29 10:02:28, 112 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - object of the class got WebLogic. Home

    2014-01-29 10:02:28, 112 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - getPath, weblogic method Calling. Home

    2014-01-29 10:02:28, 689 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - called getPath method of weblogic. House and home is: C:/OraODI/product/odifmw/WLSERV~1.3/server

    2014-01-29 10:02:28, 689 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - fname: C:\OraODI\product\odifmw\WLSERV~1.3\.product.properties

    2014-01-29 10:02:28, 689 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - propFile: C:\OraODI\product\odifmw\WLSERV~1.3\.product.properties

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: loadNamespace-> com.oracle.cie.wizard.silent.tasks.LoadObjectStoreTask

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: loadNamespace-> com.oracle.cie.wizard.silent.tasks.LoadObjectStoreTask

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: getMode-> com.oracle.cie.wizard.silent.tasks.GetModeTask

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 720 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: dumpVersions-> com.oracle.cie.wizard.domain.silent.tasks.DumpVersionsTask

    2014-01-29 10:02:28, 720 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [dumpVersions] com.oracle.cie.wizard.domain.helpers.WLSVersionHelper - WebLogic Server 10.3.6.0 15 Nov 08:52:36 PST Mar 2011 1441050

    2014-01-29 10:02:29, 017 INFO [dumpVersions] com.oracle.cie.wizard.domain.silent.tasks.DumpVersionsTask-

    Common development 6.4 Thu Aug 25 17:01:47 EDT 2011 6.4.0.0 change-Id: 31463 [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev_6.4.0.0.jar]

    Common development resources in L10N (de) 6.4 Mon 9 May 13:14:44 EDT 2011 - internal generation by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.de_6.4.0.0.jar]

    Common resources of L10N development (es) 6.4 Mon 9 May 13:14:44 EDT 2011 - internal generation by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.es_6.4.0.0.jar]

    Common resources of L10N development (en) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.fr_6.4.0.0.jar]

    Resources common development L10N (it) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.it_6.4.0.0.jar]

    Common resources of L10N development (ja) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.ja_6.4.0.0.jar]

    Common resources of L10N development (ko) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.ko_6.4.0.0.jar]

    Common resources of L10N development (pt_BR) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.pt.BR_6.4.0.0.jar]

    Common resources of L10N development (zh_CN) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.zh.CN_6.4.0.0.jar]

    Common resources of L10N development (zh_TW) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.zh.TW_6.4.0.0.jar]

    Config Assistant 7.2 Fri Aug 19 17:47:23 EDT 2011 7.2.0.0 change-Id: 31407 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config_7.2.0.0.jar]

    Resources of L10N Wizard config (de) 7.2 Mon 9 May 13:14:50 EDT 2011 - internal generation by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.de_7.2.0.0.jar]

    Resources of L10N Wizard config (es) 7.2 Mon 9 May 13:14:50 EDT 2011 - internal generation by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.es_7.2.0.0.jar]

    Resources of L10N Wizard config (en) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.fr_7.2.0.0.jar]

    Configuration Wizard L10N resources (it) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.it_7.2.0.0.jar]

    Resources of L10N Wizard config (ja) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.ja_7.2.0.0.jar]

    Resources of L10N Wizard config (ko) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.ko_7.2.0.0.jar]

    Resources of L10N Wizard config (pt_BR) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.pt.BR_7.2.0.0.jar]

    Resources of L10N Wizard config (zh_CN) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.zh.CN_7.2.0.0.jar]

    Resources of L10N Wizard config (zh_TW) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.zh.TW_7.2.0.0.jar]

    Global Product Registry 3.1 Thu Feb 11 20:47:52 EAST 2010 3.1.0.0 change-Id: 27582 [C:/OraODI/product/odifmw/modules/com.oracle.cie.gpr_3.1.0.0.jar]

    Product Global Registry Impl 3.1 Thu Feb 11 20:47:55 EST 2010 3.1.0.0 change-Id: 27582 [C:/OraODI/product/odifmw/modules/com.oracle.cie.gpr-impl_3.1.0.0.jar]

    Oracle YES CIE 1.3 inventory kills 7 Sep 16:24:41 EDT 2010 1.3.0.0 change-Id: 29286 [C:/OraODI/product/odifmw/modules/com.oracle.cie.oui_1.3.0.0.jar]

    WLW cloudbase 5.3 Fri Sep 24 18:49:22 EDT 2009 5.3.0.0 change-Id: 26058 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf_5.3.0.0.jar]

    WLW cloudbase L10N resources (de) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.de_5.3.0.0.jar]

    WLW cloudbase L10N resources (es) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.es_5.3.0.0.jar]

    WLW cloudbase L10N resources (en) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.fr_5.3.0.0.jar]

    WLW cloudbase L10N resources (it) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.it_5.3.0.0.jar]

    WLW cloudbase L10N resources (ja) 5.3 Wed Feb 10 22:01:27 CEST 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.ja_5.3.0.0.jar]

    WLW cloudbase L10N resources (ko) 5.3 Wed Feb 10 22:01:27 CEST 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.ko_5.3.0.0.jar]

    WLW cloudbase L10N resources (pt_BR) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.pt.BR_5.3.0.0.jar]

    WLW cloudbase L10N resources (zh_CN) 5.3 Wed Feb 10 22:01:27 CEST 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.zh.CN_5.3.0.0.jar]

    WLW cloudbase L10N resources (zh_TW) 5.3 Wed Feb 10 22:01:27 CEST 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.zh.TW_5.3.0.0.jar]

    Wizard Config of WebLogic 7.2 Mon Aug 29 11:25:24 EDT 2011 7.2.0.0 change-Id: 31488 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (de) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.de_7.2.0.0.jar]

    WebLogic Config Wizard L10N resources (es) 7.2 kills Jul 26 14:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.es_7.2.0.0.jar]

    WebLogic Config Wizard L10N resources (en) 7.2 kills Jul 26 14:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.fr_7.2.0.0.jar]

    WebLogic Setup Wizard resources L10N (it) 7.2 kills Jul 26 14:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.it_7.2.0.0.jar]

    WebLogic Config Wizard L10N resources (ja) 7.2 kills Jul 26 14:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.ja_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (ko) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.ko_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (pt_BR) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.pt.BR_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (zh_CN) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.zh.CN_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (zh_TW) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.zh.TW_7.2.0.0.jar]

    WebLogic Config Wizard schema 7.2 Mon Aug 29 11:25:19 EDT 2011 10.3.6.0 change-Id: 31488 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls-schema_10.3.6.0.jar]

    Wizard framework 6.1 kills 7 Sep 16:24:30 EDT 2010 6.1.0.0 change-Id: 29286 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard_6.1.0.0.jar]

    Wizard framework L10N resources (de) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.de_6.1.0.0.jar]

    L10N Framework Assistant resources (es) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.es_6.1.0.0.jar]

    Wizard framework L10N resources (en) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.fr_6.1.0.0.jar]

    Resources of L10N Framework Assistant (it) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.it_6.1.0.0.jar]

    Wizard framework L10N resources (ja) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.ja_6.1.0.0.jar]

    Wizard framework L10N resources (ko) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.ko_6.1.0.0.jar]

    Wizard framework L10N resources (pt_BR) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.pt.BR_6.1.0.0.jar]

    Wizard framework L10N resources (zh_CN) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.zh.CN_6.1.0.0.jar]

    Wizard framework L10N resources (zh_TW) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.zh.TW_6.1.0.0.jar]

    Data Manager XML 2.5 kills Dec 15 20:45:35 EAST 2009 2.5.0.0 change-Id: 27027 [C:/OraODI/product/odifmw/modules/com.oracle.cie.xmldh_2.5.0.0.jar]

    WebLogic Server 10.3.6.0 Mar 15 Nov 08:52:36 PST 1441050 2011

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: setTitle-> com.oracle.cie.wizard.silent.tasks.SetTitleTask

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: getMode-> com.oracle.cie.wizard.silent.tasks.GetModeTask

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: loadScripts-> com.oracle.cie.wizard.domain.silent.tasks.LoadScriptFilesTask

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: iterator-> com.oracle.cie.wizard.silent.tasks.IteratorTask

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: logKey-> com.oracle.cie.wizard.silent.tasks.LogKeyTask

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 032 DEBUG [logKey] com.oracle.cie.wizard.silent.tasks.LogKeyTask - scriptFileIterator.current.value key has a value of < C:\Users\BIS909~1\AppData\Local\Temp\2\tmpUnpack603348485792127080cws >

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: runScript-> com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - RunScriptTask scriptFile:C:\Users\BIS909~1\AppData\Local\Temp\2\tmpUnpack603348485792127080cws

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - WLS_PRODUCT_VERSION = 10.3.6.0

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - WLS_PRODUCT_SHORT_VERSION = 10.3

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 032 DEBUG [runScript] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - is going to run the script: C:\Users\BIS909~1\AppData\Local\Temp\2\tmpUnpack603348485792127080cws

    2014-01-29 10:02:29, 032 DEBUG [runScript] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - try to run the script as a silent script

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config/config) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config-wls/config) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config/config_tasks) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config_tasks) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config/config_messages) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config_messages) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 469 INFO [runScript] com.oracle.cie.domain.script.ScriptExecutor - read the model of 'C:\software\odi_domain_template.jar '.

    2014-01-29 10:02:29, 500 DEBUG [runScript] com.oracle.cie.domain.AbstractManager - the getInstance method did not exist for the class constructor by default before failing trying com.oracle.cie.domain.WLSSummaryHelper...

    2014-01-29 10:02:29, 500 DEBUG [runScript] com.oracle.cie.domain.AbstractManager - the getInstance method did not exist for the class constructor by default before failing trying com.oracle.cie.wizard.domain.helpers.WLSChoiceTaskHelper...

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - positioning product base for WebLogic Server BASE_PRODUCT_HOME=C:\OraODI\product\odifmw\wlserver_10.3 = BASE_PRODUCT_ID

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.0.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.2.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.3.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.4.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.5.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: [installed] 10.3.6.0

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product install dir: C:\OraODI\product\odifmw\wlserver_10.3

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - found the base product: ProductInfo WebLogic Server: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - products of treatment record.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.0.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.2.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.3.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.4.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.5.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: [installed] 10.3.6.0

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - dependency checking product base

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - current component: Core Application Server

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - found feature on WebLogic Server dependency: 10.3.6.0

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product depends on the base product. Attempting to add the install dir to the list.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - [C:\OraODI\product\odifmw\wlserver_10.3] product installation directory is already in the list.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Workshop: 10.3.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Workshop: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.3.2.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.3.3.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.4.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.5.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.5.3.2 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.6.0.4 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.7.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.7.1.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.7.1.1 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Infrastructure common engineering: [installed] 7.4.0.0

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Install directory is not defined. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 7.3.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 7.2.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 7.1.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 7.0.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 6.8.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 6.7.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 6.6.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Configuration Manager: [installed] 10.3.5.0

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Install directory is not defined. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Configuration Manager: 10.3.2.1 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Configuration Manager: 10.3.1.2 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Configuration Manager: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Repository: 11.1.1.3 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - directories of product installation: [C:\OraODI\product\odifmw\wlserver_10.3]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - recovery of inventories

    2014 01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - GPR is available.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.oui.impl.GPRInfo - information Processing GPR.

    2014-01-29 10:02:30, 249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\logs\inventory\ContentsXML\comps.xml does not exist. Jump C:\OraODI\product\odifmw\logs

    2014-01-29 10:02:30, 249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\modules\inventory\ContentsXML\comps.xml does not exist. Jump C:\OraODI\product\odifmw\modules

    2014-01-29 10:02:30, 249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\patch_wls1036\inventory\ContentsXML\comps.xml does not exist. Jump C:\OraODI\product\odifmw\patch_wls1036

    2014-01-29 10:02:30, 249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\utils\inventory\ContentsXML\comps.xml does not exist. Jump C:\OraODI\product\odifmw\utils

    2014-01-29 10:02:30, 546 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - treatment of inventory for C:\OraODI\product\odifmw\wlserver_10.3

    2014-01-29 10:02:30, 546 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - inventory is coinscrit in the registry. Jump.

    [2014-01-29 10:02:30, 546 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - Oracle homes:]

    2014-01-29 10:02:31, 497 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml added for further processing.

    2014-01-29 10:02:31, 497 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - analysis: C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml

    2014-01-29 10:02:31, 513 [runScript] INFO com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml does not contain the elements that make up and will be ignored

    2014-01-29 10:02:31, 513 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.WLSGlobalTemplateCatalog - attempt to determine the default template [base WebLogic Server Domain]

    2014-01-29 10:02:31, 513 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.WLSGlobalTemplateCatalog - found the first default pattern match: base WebLogic Server Domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\wls.jar]

    2014-01-29 10:02:31, 513 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.WLSGlobalTemplateCatalog - catalog of Tempalte created Global [C:\OraODI\product\odifmw]

    Catalogue of type REGISTRY_PROD_CAT. Product House [C:\OraODI\product\odifmw\wlserver_10.3]

    Templates:

    ==========

    WebLogic SIP - diameter topology server domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\diameterdomain.jar]

    WebLogic SIP - geo Topology Site 1:10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\geo1domain.jar] Server domain

    WebLogic SIP - geo Topology Site 2:10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\geo2domain.jar] Server domain

    WebLogic SIP Server domain - replicated topology with DB Persistence: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\rdbmsdomain.jar]

    WebLogic SIP Server domain - replicated topology: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\replicateddomain.jar]

    WebLogic based SIP Server Domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\sipserverdomain.jar]

    WebLogic Server base domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\wls.jar]

    WebLogic Starter: 10.3.1.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\wls_starter.jar]

    WebLogic advanced Web Services for JAX - RPC Extension: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\applications\wls_webservice.jar]

    WebLogic advanced Web Services for JAX - WS Extension: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\applications\wls_webservice_jaxws.jar]

    ======================

    Catalogue of type COMPONENTS_CAT. Product House [C:\OraODI\product\odifmw]

    Templates:

    ==========

    ======================

    Location of the base product catalog: C:\OraODI\product\odifmw\wlserver_10.3

    (Default) basic model: base WebLogic Server Domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\wls.jar]

    2014-01-29 10:02:31, 606 DEBUG [runScript] com.oracle.cie.domain.WLSTemplateBuilder - attempt at analysis of domain model in: C:\software\odi_domain_template.jar

    2014-01-29 10:02:31, 653 DEBUG [runScript] com.oracle.cie.domain.aspect.XBeanDomainTypeBuilder - loading of resources/config/xml/namespacemap.xml namespace mappings

    2014-01-29 10:02:32, 620 com.oracle.cie.domain.security.AttributeProcessor DEBUG [runScript] - security with transformation input params attributes: targetPath = null; Type = 1

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: BridgeDestination #.

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to BridgeDestination # with [Ljava.lang.String;@2d8e9b8e

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: BridgeDestination:UserPasswordEncrypted:true

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: SecurityConfiguration

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SecurityConfiguration with [Ljava.lang.String;@6d869eff attributes

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SecurityConfiguration:NodeManagerPasswordEncrypted:false

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JMSSystemResource #-JmsResource-SAFRemoteContext #-SAFLoginContext

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JMSSystemResource # with [Ljava.lang.String;@23a83610

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: RDBMSRealm #.

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for RDBMSRealm attributes # with [Ljava.lang.String;@787566b9

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: RDBMSRealm:DatabasePasswordEncrypted:true

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: SecurityConfiguration-field #-RDBMSSecurityStore

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SecurityConfiguration with [Ljava.lang.String;@63ab3977 attributes

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process for the Kingdom # with [Ljava.lang.String;@63ab3977

    2014-01-29 10:02:32, 652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to RDBMSSecurityStore with [Ljava.lang.String;@63ab3977

    2014-01-29 10:02:32, 652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to RDBMSSecurityStore with [Ljava.lang.String;@63ab3977

    2014-01-29 10:02:32, 652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: RDBMSSecurityStore:PasswordEncrypted:false

    2014-01-29 10:02:32, 667 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: Server #-SSL

    2014-01-29 10:02:32, 964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: SecurityConfiguration-field #-AuthenticationProvider #.

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SecurityConfiguration with [Ljava.lang.String;@611a5a82 attributes

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process for the Kingdom # with [Ljava.lang.String;@611a5a82

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for AuthenticationProvider attributes # with [Ljava.lang.String;@611a5a82

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for AuthenticationProvider attributes # with [Ljava.lang.String;@611a5a82

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: AuthenticationProvider:CredentialEncrypted:true

    2014-01-29 10:02:33, 010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: WLECConnectionPool #.

    2014-01-29 10:02:33, 010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to WLECConnectionPool # with [Ljava.lang.String;@5372ad66

    2014-01-29 10:02:33, 010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: WLECConnectionPool:UserPasswordEncrypted:true

    2014-01-29 10:02:33, 010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: WLECConnectionPool:ApplicationPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JMSSystemResource #-JmsResource-ForeignServer #-ForeignConnectionFactory #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JMSSystemResource # with [Ljava.lang.String;@dd62e57

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JMSSystemResource #-JmsResource-ForeignServer #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JMSSystemResource # with [Ljava.lang.String;@687c58d9

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: server #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for the server attributes # with [Ljava.lang.String;@3bad4426

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: DefaultIIOPPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: DefaultTGIOPPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: SystemPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: CustomIdentityKeyStorePassPhraseEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: CustomTrustKeyStorePassPhraseEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: JavaStandardTrustKeyStorePassPhraseEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JoltConnectionPool #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JoltConnectionPool # with [Ljava.lang.String;@6c553965

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JoltConnectionPool:ApplicationPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JoltConnectionPool:UserPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: ForeignJNDIProvider #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to ForeignJNDIProvider # with [Ljava.lang.String;@4f2b4d73

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ForeignJNDIProvider:PasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JDBCSystemResource #-JdbcResource-JDBCDriverParams

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCSystemResource # with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for JdbcResource with [Ljava.lang.String;@23e9e1a0 attributes

    2014-01-29 10:02:33, 042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCDriverParams with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:33, 042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCDriverParams with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:33, 042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JDBCDriverParams:PasswordEncrypted:false

    2014-01-29 10:02:34, 337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for JdbcResource with [Ljava.lang.String;@23e9e1a0 attributes

    2014-01-29 10:02:34, 337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCDriverParams with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:34, 337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCDriverParams with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:34, 337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JDBCDriverParams:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JDBCSystemResource #-JdbcResource-JDBCOracleParams

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCSystemResource # with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for JdbcResource with [Ljava.lang.String;@11bbf66b attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCOracleParams with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCOracleParams with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JDBCOracleParams:OnsWalletPasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for JdbcResource with [Ljava.lang.String;@11bbf66b attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCOracleParams with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCOracleParams with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JDBCOracleParams:OnsWalletPasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JdbcDataSourceFactory #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JdbcDataSourceFactory # with [Ljava.lang.String;@7e875d9f

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JdbcDataSourceFactory:UserPasswordEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JdbcDataSourceFactory:ApplicationPasswordEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JMSBridgeDestination #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JMSBridgeDestination # with [Ljava.lang.String;@6913b29e

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JMSBridgeDestination:UserPasswordEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: Server #-ServerStart

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: LDAPRealm #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to LDAPRealm # with [Ljava.lang.String;@1fe94663

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: LDAPRealm:CredentialEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: Server #-NetworkAccessPoint #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: CustomRealm #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to CustomRealm # with [Ljava.lang.String;@6f8242b2

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: CustomRealm:PasswordEncrypted:true

    2014-01-29 10:02:34, 555 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine - config - analyzed and validated successfully in C:\software\odi_domain_template.jar groups.xml

    2014-01-29 10:02:34, 571 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the xml fragment = 'em-main-apps' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "emcore" / >

    < con: deployment app - name = "em" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-SDK-WS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: app-deployment name="odi-sdk-ws#11.1.1.6.0.1"/ >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml ="ODI - RE' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: deployment app - name = "odiconsole" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-MASTER-DATASOURCE' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: jdbc-system-name of the resource = "odiMasterRepository" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the xml fragment = 'emai-main-apps' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "email" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-SDK-SL' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "sdk - oracle.odi #[email protected]" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'BPM-MGMT-LIBS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.bpm.mgmt # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-AGENT' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: deployment app - name = "oraclediagent" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'JRF-ADMIN-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: app - name deployment = "FMW Welcome Page Application#11.1.0.0.0"/ > "

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'WEBCENTER_SKIN-ADMIN-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.webcenter.skin # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'WEBCENTER_COMPOSER-HAND-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.webcenter.composer # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'WEBCENTER_COMPOSER-ADMIN-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.webcenter.composer # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-WORK-DATASOURCE' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: jdbc-system-name of the resource = "odiWorkRepository" / >

    < / xml fragment >

    2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the xml fragment = 'emas-main-apps' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "emas" / >

    < / xml fragment >

    2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'WEBCENTER_SKIN-HAND-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.webcenter.skin # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'JRF-ALL-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: start-class name = "DMS-Startup" / >

    < con: start-class name = "Start of the context of Application of AWT class" / >

    < con: start-class name = "Starting JMX Framework class" / >

    < con: start-class name = "Start JPS class" / >

    < con: start-class name = "JOC-Startup" / >

    < con: start-class name = "JRF class start" / >

    < con: start-class name = "ODL-Startup" / >

    < con: start-class name = "Web Services Startup class" / >

    < [email protected] name = "adf.oracle.businesseditor # con: library" / >

    < name dumb: library = ' ohw - uix #[email protected] "/ >

    < [email protected] name = "oracle.bi.adf.model.slib # con: library" / >

    < [email protected] name = "oracle.jsp.next # con: library" / >

    < [email protected] name = "oracle.adf.desktopintegration.model # con: library" / >

    < [email protected] name = "oracle.bi.adf.webcenter.slib # con: library" / >

    < [email protected] name = "oracle.bi.adf.view.slib # con: library" / >

    < name dumb: library = "oracle.dconfig - infra #[email protected]" / >

    < con name="oracle.jrf.system.filter"/: library >

    < [email protected] name = "oracle.adf.management # con: library" / >

    < [email protected] name = "oracle.adf.dconfigbeans # con: library" / >

    < name dumb: library = "orai18n-adf #[email protected]" / >

    < [email protected] name = "adf.oracle.domain # con: library" / >

    < name dumb: library = "jsf #[email protected]" / >

    < [email protected] name = "adf.oracle.domain.webapp # con: library" / >

    < name dumb: library = ' ohw - FRC #[email protected] "/ >

    < name dumb: library = "jstl #[email protected]" / >

    < [email protected] name = "oracle.bi.composer # con: library" / >

    < [email protected] name = "oracle.bi.jbips # con: library" / >

    < [email protected] name = "oracle.pwdgen # con: library" / >

    < [email protected] name = "oracle.adf.desktopintegration # con: library" / >

    < name dumb: library = "UIX #[email protected]" / >

    < [email protected] name = "oracle.wsm.seedpolicies # con: library" / >

    < con: wldf-system-name of the resource = "Module-FMWDFW" / >

    < con: stop-name of the class = "DMSShutdown" / >

    < con: stop-name of the class = "JOC-stop" / >

    < con: app - name deployment = "wsil-wls" / >

    < con: app - name deployment = "DMS Application#11.1.1.1.0"/ > "

    < / xml fragment >

    2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the xml fragment = 'odi-main-apps' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name = "odi.em" / con: library >

    < / xml fragment >

    2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-AGENT-SHAREDLIBS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "oracle.odi - agent #[email protected]" / >

    < name dumb: library = "sdk - oracle.odi #[email protected]" / >

    < / xml fragment >

    2014-01-29 10:02:34, 633 DEBUG [runScript] com.oracle.cie.domain.jdbc.TemplateDatabaseInfoHelper - database.xml analysis...

    2014-01-29 10:02:35, 990 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - try to find a match for WebLogic Server: 10.3.6.0.0 using default minimum corresponding positions.

    2014-01-29 10:02:35, 990 DEBUG [runScript] com.oracle.cie.oui.impl.ProductHomeInventoryImpl - trying to find a match for WebLogic Server: 10.3.6.0.0 in C:\OraODI\product\odifmw\wlserver_10.3 using 2 minimum corresponding positions.

    2014-01-29 10:02:36, 006 DEBUG [runScript] com.oracle.cie.oui.impl.ProductHomeInventoryImpl - found a WebLogic_Server_10.3.6.0_wlserver_10.3 game with 5 positions from correspondent.

    2014-01-29 10:02:36, 006 com.oracle.cie.oui.impl.FMWHomeInventoryImpl DEBUG [runScript] - Final match: [WebLogic_Server_10.3.6.0_wlserver_10.3]

    2014-01-29 10:02:36, 006 com.oracle.cie.oui.impl.FMWHomeInventoryImpl [runScript] DEBUG - trying to find a match for oracle.as.jrf:11.1.1.7.0 using positions corresponding minimum default.

    2014-01-29 10:02:36, 006 com.oracle.cie.oui.impl.ProductHomeInventoryImpl [runScript] DEBUG - trying to find a match for oracle.as.jrf:11.1.1.7.0 in C:\OraODI\product\odifmw\wlserver_10.3 using 2 minimum corresponding positions.

    2014-01-29 10:02:36, 006 DEBUG [runScript] com.oracle.cie.oui.impl.ProductHomeInventoryImpl - found no match.

    [2014-01-29 10:02:36, 006 com.oracle.cie.oui.impl.FMWHomeInventoryImpl DEBUG [runScript] - Final match:]

    "2014-01-29 10:02:36, 006 ERROR [runScript] com.oracle.cie.domain.DomainTemplate - House of required component not found for the version of the component 'oracle.as.jrf' ' 11.1.1.7.0 '.

    2014-01-29 10:02:36, 006 INFO [runScript] com.oracle.cie.domain.script.ScriptExecutor - fail: read model of 'C:\software\odi_domain_template.jar '.

    2014-01-29 10:02:36, ERROR [runScript] com.oracle.cie.domain.script.ScriptExecutor 006 - read the model of 'C:\software\odi_domain_template.jar '.

    "com.oracle.cie.domain.ConfigRuntimeException: required component not found home for the version of the component 'oracle.as.jrf' ' 11.1.1.7.0 '.

    to com.oracle.cie.domain.DomainTemplate. < init > (DomainTemplate.java:257)

    to com.oracle.cie.domain.DomainTemplate. < init > (DomainTemplate.java:183)

    at com.oracle.cie.domain.WLSTemplateBuilder.parseTemplate(WLSTemplateBuilder.java:576)

    at com.oracle.cie.domain.WLSTemplateBuilder.parseDomainTemplate(WLSTemplateBuilder.java:486)

    at com.oracle.cie.domain.WLSTemplateBuilder.buildDomainTemplate(WLSTemplateBuilder.java:1386)

    at com.oracle.cie.domain.script.ScriptExecutor.readTemplate(ScriptExecutor.java:429)

    to com.oracle.cie.domain.script.ScriptParserClassic$ StateMachine.processRead (ScriptParserClassic.java:520)

    to com.oracle.cie.domain.script.ScriptParserClassic$ StateMachine.execute (ScriptParserClassic.java:426)

    at com.oracle.cie.domain.script.ScriptParserClassic.parseAndRun(ScriptParserClassic.java:148)

    at com.oracle.cie.domain.script.ScriptParserClassic.doExecute(ScriptParserClassic.java:110)

    at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:72)

    at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:35)

    at com.oracle.cie.wizard.domain.helpers.Executor.runSilentScript(Executor.java:68)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.runScriptWithExecutor(RunScriptTask.java:558)

    at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.execute(RunScriptTask.java:342)

    at com.oracle.cie.wizard.silent.tasks.AbstractSilentTask.run(AbstractSilentTask.java:28)

    at java.lang.Thread.run(Thread.java:744)

    2014-01-29 10:02:36, 022 com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask ERROR [runScript] - error when running the script: C:\Users\BIS909~1\AppData\Local\Temp\2\tmpUnpack603348485792127080cws

    "com.oracle.cie.domain.script.ScriptException: com.oracle.cie.domain.ConfigRuntimeException: required component not found home for the version of the component 'oracle.as.jrf' ' 11.1.1.7.0 '.

    at com.oracle.cie.domain.script.ScriptExecutor.readTemplate(ScriptExecutor.java:465)

    to com.oracle.cie.domain.script.ScriptParserClassic$ StateMachine.processRead (ScriptParserClassic.java:520)

    to com.oracle.cie.domain.script.ScriptParserClassic$ StateMachine.execute (ScriptParserClassic.java:426)

    at com.oracle.cie.domain.script.ScriptParserClassic.parseAndRun(ScriptParserClassic.java:148)

    at com.oracle.cie.domain.script.ScriptParserClassic.doExecute(ScriptParserClassic.java:110)

    at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:72)

    at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:35)

    at com.oracle.cie.wizard.domain.helpers.Executor.runSilentScript(Executor.java:68)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.runScriptWithExecutor(RunScriptTask.java:558)

    at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.execute(RunScriptTask.java:342)

    at com.oracle.cie.wizard.silent.tasks.AbstractSilentTask.run(AbstractSilentTask.java:28)

    at java.lang.Thread.run(Thread.java:744)

    "Caused by: com.oracle.cie.domain.ConfigRuntimeException: required component not found home for the version of the component 'oracle.as.jrf' ' 11.1.1.7.0 '.

    to com.oracle.cie.domain.DomainTemplate. < init > (DomainTemplate.java:257)

    to com.oracle.cie.domain.DomainTemplate. < init > (DomainTemplate.java:183)

    at com.oracle.cie.domain.WLSTemplateBuilder.parseTemplate(WLSTemplateBuilder.java:576)

    at com.oracle.cie.domain.WLSTemplateBuilder.parseDomainTemplate(WLSTemplateBuilder.java:486)

    at com.oracle.cie.domain.WLSTemplateBuilder.buildDomainTemplate(WLSTemplateBuilder.java:1386)

    at com.oracle.cie.domain.script.ScriptExecutor.readTemplate(ScriptExecutor.java:429)

    ... 15 more

    2014-01-29 10:02:36, 022 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - termination.

    I found the answer myself after trying the following:

    I installed the ODI on the remote Windows VM and retried unzip and it succeeded.

    If the answer is Yes

  • The image appears only in running my application on device

    Hello

    use listfield where images are drawn.

    the images are downloaded from a url using Analyzer, these images are

    populated my listfield.

    It works fine when running my apps on my Simulator

    But doesn't work in the unit.

    WATS the problem?

    class Download extends Thread {
            private Vector urls;
    
            public Download(Vector urls) {
                this.urls = urls;
    
            }
    
            public void run() {
                try {
                    System.out.println("starting downloading");
                    for (int i = 0; i < urls.size(); i++) {
    
                        System.out.println("a part ofconstant url which is common " +i
                                + urls.elementAt(i));
    
                        imageData = getImage((String) urls.elementAt(i));
    
                        EncodedImage img = EncodedImage.createEncodedImage(
                                imageData, 0, imageData.length);
                        imageListElements.addElement(img);
                        System.out.println("image added");
                    }
                    System.out.println("\t\t Download completed");
    
                    UiApplication.getUiApplication().invokeLater(new Runnable() {
                        public void run() {
                            System.out.println("Pushing the list screen");
                            AscreenListFieldCallBack callBack = new AscreenListFieldCallBack (imageListElements);
                            _list.setCallback(callBack);
                            System.out.println("imageListElements.size() --> " + imageListElements.size());
                            for (int i = 0; i < imageListElements.size(); i++) {
                                _list.insert(i);
                                callBack.insert("imageListElements", i);
                            }
                            add(_list);
                            invalidate();
                        }
                    });
    
                } catch (Exception e) {
                    System.err.println("Msg: " + e.toString());
                }
            }
    
            public void startThread() {
                new Thread(this).start();
            }
    
            public byte[] getImage(String url) throws IOException {
                HttpConnection connection = (HttpConnection) Connector.open(url + ";deviceside=true");
                DataInputStream iStrm = connection.openDataInputStream();
                ByteArrayOutputStream bStrm = null;
                byte imageData[];
                int length = (int) connection.getLength();
                System.out.println("length --> " + length);
                if (length != -1) {
                    imageData = new byte[length];
                    iStrm.readFully(imageData);
                } else {
                    bStrm = new ByteArrayOutputStream();
                    int ch;
                    while ((ch = iStrm.read()) != -1)
                        bStrm.write(ch);
                    imageData = bStrm.toByteArray();
                    bStrm.close();
                }
                System.out.println("\n\n\n\n image Data  " + imageData);
                return imageData;
            }
        }
    
    }
    

    Once you start a download must be completed or throws an Exception.  I've never seen a communication process so nothing else.

    But you say:

    "in the console, it displays as started, but it is not downloaded.

    I suspect that your treatment is throw an exception.  Have you checked this while debugging?

    To answer your question later, yes there are limits of size of the files that can be downloaded.  The limit depends on the circumstances, but can be as low as 128 KB.  Of course, a picture of 128 KB is big enough, probably too large to display in a ListField.

    I think it should be clear that it is much more effective to send a picture about the right size for the BlackBerry.  That way you'll spend less time of transmission and, if you want to scale on the BlackBerry, the scale is much faster.

  • Another issue of image search? Get the Web site reference if my images appear on an image search?

    I would like if all goes well imagine after having included the alt and figurecaption text in my web pages which my images start to appear in the search engine image collections. Usually when a collection of images arise, each image, if we click on it, displays a cluster of images from the same source of Web site or artist and offers a button to discover the site of the source or other works which, when clicked, takes you to a page with all the images shown or thumnailed.
    That everything is done by the search engine to any web page with several relevant images? There are a great number of images on an individual web page with regard to search engines?

    Add an image to Google - Search Help

    How can I get Google to index my site entirely?

    1. Generate a XML sitemap and forwarded to the folder root of your server.
    2. Use your Google Webmaster Tools account to submit the URL of your sitemap to Google.
    3. Wait patiently for 3-4 weeks until fully what Google indexes your website.
    4. Finally, your pages and images, will begin to appear in the SERPs, although probably not at the top.

    Nancy O.

  • When you open the photo folder, does not display images, icons only

    When I open My photo files and click on an individual folder, the photos are not visible, just an icon, how can I switch back and forth, so that each image is displayed?

    Miniatures,

    Open your my pictures location, click on organize in the upper left corner, click folder and search options, click the view tab and uncheck the top option, always display icons and never thumbnails, select apply and save.

    Return to your location of my pictures, change the display of the page on the top of the right side next to the question mark symbol, there is another symbol with a menu drop-down symbol, click it and select the medium or large icons options specified.

  • CS5: Image appears only in the magnification of 25% and 100%

    PS CS5 running successfully for a few years, then all of a sudden I can't work other than 25% magnification and the actual Pixels. The image disappears and I can only see the checkerboard. There is a "Windows update" I ran on 10 April, which included an update for the graphics card, which I think could be the culprit, so I uninstalled. It does not solve the problem, so I've updated again. I couldn't see anything else in these updates that should affect Photoshop.

    Here's what I've tried so far:

    I've updated my graphics driver (NVidia GeForce),

    Trashed Adobe Photoshop CS5 Prefs.psp (who crashed PS completely when I have opened it... Fortunately I kept the old file prefs on my desk and dragged in),

    Made sure Photoshop was up-to-date.

    Any ideas what to try next?

    Thank you!

    Photoshop CS5 (32-bit v.12.0.4)

    Windows 7 Home Premium (Build 7601 v.6.1: Service Pack 1)

    AMD Phenom II X 4 840 3.20 GHz processor

    This is a bug in the driver of your video card.

    Disable GPU drawing in Photoshop, or contact NVidia and understand what's wrong with the driver.

Maybe you are looking for