Error while launching Workbench ES 8.2 on windows Vista

I successfully installed Workbench ES 8.2 on windows Vista. When i was trying to launch Workbench it is throwing an error and it does not open workbench.
Error : An error has occurred. See the log file
C:\Program Files\Adobe\LiveCycle ES\Workbench ES\Workbench\workspace\.metadata\.log
I do not even have "\workspace\.metadata\.log" this directory at all.
Please help....

I ran into that problem too. If "Run as Administrator" doesn't work (I don't think it did for me), re-install Workbench in "C:\Adobe\" NOT "C:\Program Files\Adobe\", which is the default. I think the Program Files folder has some kind of security setting on it that doesn't allow Workbench to add log entries.
Once I did that, I've been able to run Workbench on Vista with little or no issue (even though technically Adobe doesn't support Vista yet).
Hope this helps!
Ryan D. Lunka
Cardinal Solutions Group
[email protected]

Similar Messages

  • Error while Installation of Oracle 10g Database on Windows Vista

    while installating Oracle 10g DB on Win Vista Machine it shows the followsing error:-
    Abnormal program termination. An internal error has occoured.Please provide the fillowing files to Oralce Support:
    "Unknows"
    "Unknows"
    "Unknows"
    & OK buttons is there
    kindly provide me the solution for the same.

    Are you using the Oracle installation meant for Windows Vista or any other version?
    Its available here...
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10203vista.html

  • Please help me. I am getting an error while launching an web start applic

    I am getting the following error while launching an java web start apllication.
    Exception in thread"javaWSApplicationMains"java.lan.NoClassDefFound:SimpleSerial.
    The jnlp file i have used is as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for Aeon HHBM Manager Application -->
    <jnlp spec="1.0+" codebase="http://zycomm:8080" href="Aeon.jnlp">
    <information>
    <title>Aeon HHBM Manager</title>
    <vendor>ME</vendor>     
    <description>Aeon HHBM Manager</description>
    </information>
    <offline_allowed/>
    <resources>
    <j2se version="1.4+"/>
    <jar href="aeon.jar"/>
    </resources>
    <application-desc main-class="Aeon_PManager" />
    <component-desc/>
    </jnlp>
    The java code is as follows:
    SimpleSerial.java
    import java.io.*;
    //import java.lang.*;
    //import java.lang.ClassNotFoundException;
    Interface class for SimpleSerial.
    If you don't know what an interface is, don't worry. An interface defines the functions
    that can be called by implementors of this class. Currently there are two implementors,
    SimpleSerialNative, and SimpleSerialJava. There might be more in the future.
    SimpleSerialNative requires the file "SimpleSerialNative.dll" to be in the same folder as your Java
    project file. It's that simple.
    SimpleSerialJava requires the correct installation of Sun's Javacomm communication package. It's much
    more powerful, but it can be tricky for the newcomer to configure, and use.
    If you have problems with one, why don't you try the other.
    A VERY SIMPLE IMPLEMENTATION:
    public static void main(String args[]) {
    SimpleSerial ss; // delcare the SimpleSerial object
    ss = new SimpleSerialNative(2); // The argument is the commport number. There is no Comm0.
    ss.writeByte((byte)'a'); // write a byte to the serial port
    // Give the PIC chip time to digest the byte to make sure it's ready for the next byte.
    try { Thread.sleep(1); } catch (InterruptedException e) {}
    ss.writeByte((byte)'!'); // write another byte to the serial port
    String inputString = ss.readString(); // read any string from the serial port
    System.out.println("I read the string: " + inputString);
    A few important things to note:
    1. When you write data to the serial port, it just writes the data, whether or not the PIC chip is
    ready to receive data. There's no handshaking or signaling. If you send data and the PIC chip
    isn't ready for it, it will be ignored. Some PIC chips have a hardware UART which will buffer a
    few bytes of data for later retrieval. But this isn't a cure-all. If the buffer fills up, it
    creates an error condition which prevents further data from being read. You need to include
    custom PIC code to reset the error flag.
    2 In contrast to the PIC chip, the computer has a rather large hardware buffer. If the PIC chip
    sends serial data to your computer when you're not around to read it, it gets stored.
    3. If you make a call to readByte(), and there's no data to be read, readByte() waits until there
    is data. If you want to know how much data (if any) is available, make a call to available().
    4. Conversely, if you make a call to readBytes() or readString() and there's no data to be read,
    readBytes() returns a byte array of zero length, and readString() returns and empty string.
    5. If you want to use Sun's JavaComm package instead of this code, subsitute your calls to
    new SimpleSerialNative(2);
    with
    new SImpleSerialJava(2);
    public interface SimpleSerial {
    // These are copied right out of WINBASE.H
    // Most applications should be fine with the defaults.
    public static final int NOPARITY = 0;
    public static final int ODDPARITY = 1;
    public static final int EVENPARITY = 2;
    public static final int MARKPARITY = 3;
    public static final int SPACEPARITY = 4;
    public static final int ONESTOPBIT = 0;
    public static final int ONE5STOPBITS = 1;
    public static final int TWOSTOPBITS = 2;
    Returns the number of bytes available at the time of this call.
    It's possible there are more bytes by the time readByte() or
    readBytes() is executed. But there will never be fewer.
    public int available();
    public void waitForData(int n);
    public boolean writeString(String string);
    returns TRUE if port is fully operationsal
    returns FALSE if there is a problem with the port
    public boolean isValid();
    Be sure to close your serial port when done. Note that port is
    automatically closed on exit if you don't close it yourself
    public void close();
    Reads a single byte from the input stream.
    Return value will be from -128 to 127 (inclusive)
    If no data at serial port, waits in routine for data to arrive.
    Use available() to check how much data is available.
    If error, returns 256.
    public int readByte();
    Reads all the bytes in the serial port.
    If no bytes availble, returns array with zero elements.
    Never waits for data to arrive
    public byte[] readBytes();
    Reads bytes from serial port and converts to a text string.
    DO NOT use this routine to read data. Char->Byte converstion
    does strange things when the values are negative. For non-
    text values, use readBytes() above
    public String readString();
    Writes a single byte to the serial port.
    This writes the data, whether the PIC is ready to receive or not.
    Be careful not to overwhelm the PIC chip with data.
    On pics without a hardware UART, the data will be ignored.
    On pics with a hardware UART, overflowing will loose data AND require
    the UART on the PIC to be reset. You can reset the UART in PIC code,
    or manually turn the PIC off and then on.
    NOTE: A byte has a value in the range of -128 to 127
    NOTE: If you want to write a character, you need to cast it to a byte,
    for example: simpleSerial.writeByte((char)'b');
    public boolean writeByte(byte val);
    For more advanced use. Gets the input stream associated with serial port
    public InputStream getInputStream();
    For more advanced use. Gets the output stream associated with serial port
    public OutputStream getOutputStream();
    Please help I am the beginner in web start.Please

    Notes:
    1) Please use the code tags when posting code or JNLP/HTML. It helps to retain indentation and avoids asterisks and plus sings being interpreted as formatting marks. To do that, select the code/JNLP etc. and click the CODE button seen on the Plain Text tab of the message posting form.
    2) That launch file is invalid. You might check it (and the project in general) using JaNeLA.
    3) The only place that SimpleSerial class could be, that the JRE would find, is in the root of aeon.jar. Is it actually there?

  • Getting Error While launching ESR PI 7.1

    Hi Experts
    We are getting the following error while launching ESR, it is throwing error after we provide user credencials.Please find the error trace below...
    We have are able to launch ID successfully...Any inputs are greatly appreciated...
    1) We have jre 1.5.0
    We have tried below but no luck
    http://<hostname>:<port>/rep
    'Re-initialization and force-signing' in 'Javau2122 Web Start Administration'
    ====================================================================
    = Root Exception ===================================================
    ====================================================================
    Thrown:
    com.sap.aii.utilxi.swing.framework.FrameworkException: Internal problem occurred
         at com.sap.aii.utilxi.swing.toolkit.ExceptionDialog.init(ExceptionDialog.java:126)
         at com.sap.aii.utilxi.swing.toolkit.ExceptionDialog.<init>(ExceptionDialog.java:98)
         at com.sap.aii.utilxi.swing.toolkit.IBMessages$1.run(IBMessages.java:318)
         at com.sap.aii.utilxi.misc.thread.ThreadPool.assureAWTEventQueueing(ThreadPool.java:84)
         at com.sap.aii.utilxi.misc.thread.ThreadPool.assureAWTEventQueueing(ThreadPool.java:67)
         at com.sap.aii.utilxi.swing.toolkit.IBMessages.showException(IBMessages.java:308)
         at com.sap.aii.utilxi.swing.toolkit.IBMessages.showException(IBMessages.java:298)
         at com.sap.aii.utilxi.swing.toolkit.Guitilities$EventProcessor$1.run(Guitilities.java:396)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at com.sap.aii.utilxi.swing.toolkit.Guitilities$EventProcessor.dispatchEvent(Guitilities.java:320)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.NoClassDefFoundError: null
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.localStartup(StartupCodeEntry.java:289)
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:150)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:43)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:438)
         at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:203)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.startApp(LoginServiceImpl.java:364)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.startAppAfterLogin(LoginServiceImpl.java:258)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.login(LoginServiceImpl.java:164)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.login(LoginServiceImpl.java:151)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$LoginController.doTrial(SplashLoginFrame.java:955)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$LoginAction$1.run(SplashLoginFrame.java:824)
         ... 8 more
    ====================================================================
    == Content from the LogHandler =====================================
    ====================================================================
    #9 17:06:38 [AWT-EventQueue-2] FINE AutoLog.created.java.lang.NoClassDefFoundError: java.lang.NoClassDefFoundError
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.localStartup(StartupCodeEntry.java:289)
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:150)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:43)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:438)
         at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:203)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.startApp(LoginServiceImpl.java:364)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.startAppAfterLogin(LoginServiceImpl.java:258)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.login(LoginServiceImpl.java:164)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.login(LoginServiceImpl.java:151)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$LoginController.doTrial(SplashLoginFrame.java:955)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$LoginAction$1.run(SplashLoginFrame.java:824)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at com.sap.aii.utilxi.swing.toolkit.Guitilities$EventProcessor.dispatchEvent(Guitilities.java:320)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    #8 17:06:38 [AWT-EventQueue-2] DEBUG AutoLog.created.java.lang.NoClassDefFoundError: null
    #7 17:06:38 [AWT-EventQueue-2] FINE AutoLog.created.com.sap.aii.utilxi.swing.framework.FrameworkException: com.sap.aii.utilxi.swing.framework.FrameworkException: Internal problem occurred
         at com.sap.aii.utilxi.swing.toolkit.ExceptionDialog.init(ExceptionDialog.java:126)
         at com.sap.aii.utilxi.swing.toolkit.ExceptionDialog.<init>(ExceptionDialog.java:98)
         at com.sap.aii.utilxi.swing.toolkit.IBMessages$1.run(IBMessages.java:318)
         at com.sap.aii.utilxi.misc.thread.ThreadPool.assureAWTEventQueueing(ThreadPool.java:84)
         at com.sap.aii.utilxi.misc.thread.ThreadPool.assureAWTEventQueueing(ThreadPool.java:67)
         at com.sap.aii.utilxi.swing.toolkit.IBMessages.showException(IBMessages.java:308)
         at com.sap.aii.utilxi.swing.toolkit.IBMessages.showException(IBMessages.java:298)
         at com.sap.aii.utilxi.swing.toolkit.Guitilities$EventProcessor$1.run(Guitilities.java:396)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at com.sap.aii.utilxi.swing.toolkit.Guitilities$EventProcessor.dispatchEvent(Guitilities.java:320)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.NoClassDefFoundError
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.localStartup(StartupCodeEntry.java:289)
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:150)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:43)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:438)
         at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:203)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.startApp(LoginServiceImpl.java:364)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.startAppAfterLogin(LoginServiceImpl.java:258)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.login(LoginServiceImpl.java:164)
         at com.sap.aii.ib.clsif.login.LoginServiceImpl.login(LoginServiceImpl.java:151)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$LoginController.doTrial(SplashLoginFrame.java:955)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$LoginAction$1.run(SplashLoginFrame.java:824)
         ... 8 more
    #6 17:06:38 [AWT-EventQueue-2] DEBUG AutoLog.created.com.sap.aii.utilxi.swing.framework.FrameworkException: Internal problem occurred
    Kind regards
    Ramesh Pothireddy

    Hi Ramesh,
      I recomend you the next steps:
          1.- Go to http://serrver:port/dir and click in Administration option. Click in Repository and choose Java Web Start Administration. Click in Restore Archives and Generate New Signature.
          2.- On the other hand you can open Exchange Profile and put the Fully Quialified Domain Name in all properties where the host name have been used.
          3.- Please, coul you attach the content of XML file in List on Resources option in Java Web Start Administration?
    Best Regards
    Ivá

  • Error while installing SQL Server 2008 R2 in Windows 7 SP1 machine

    Hi Team,
    Error while installing SQL Server 2008 R2 in Windows 7 SP1 machine. I can confirm this machine has .Net
    Feature enabled and with Latest version.
    TITLE: Microsoft SQL Server 2008 R2 Setup
    The following error has occurred:
    Error 25541.Failed to open XML file C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config, system error: -2147024786
    Regards,
    Muthukumar.S.P.

    Hi,
    Can you follow workaround mentioned in below msdn blog
    http://blogs.msdn.com/b/astebner/archive/2007/11/01/5826719.aspx
    As per the blog you have to open the msi log files which must be located at
    C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log
    In MSI log files search for the error mentioned in blog. Below link will help you read setup log files
    http://msdn.microsoft.com/en-gb/library/ms143702%28v=sql.105%29.aspx
    PS: Please read links carefully and patiently and if it does not solves issue please post summary.txt file and details.txt file on skydrive for analysis
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • Error while installing the BAM Updater Service in Windows

    Hi all,
    I am getting an error while installing the BAM updater service in Windows. When i type the "oraclebpmdatawarehouse install " command in the command prompt it gives error as follows:
    d:\OraBPMEnterpriseHome\bin>oraclebpmwarehouse install
    Installing...
    wrapper | OpenSCManager failed - Access is denied. (0x5)
    Please can anyone tell me how to get rid of this error.
    I have already done everything else like setting the database and other things.
    Thanks.

    From the error message you specified, I guess you are trying to install MS Office SP2 package. If you are then its not MS Office package its just a Service Pack; something like a patch. You need to install a Full Base package first. Again, as mentioned by Rajiv - refer to MS Support

  • Just downloaded Firefox 6.0 and have restarted 4 plus times, but it continues to hang while launching. I cannot open new windows, change any settings, or do anything but Force Quit. I'm on Mac OSX 10.5.8. How do I get past this hang?

    Just downloaded Firefox 6.0 and have restarted 4 plus times, but it continues to hang while launching. I cannot open new windows, change any settings, or do anything but Force Quit. I'm on Mac OSX 10.5.8. How do I get past this hang?

    Long story short: Simply get CC for teams. At 500 bucks a year it's a steal and those 5 licenses in the base package (or was it 10 even?) cover all your computers, at least the 3 ones you mentioned. For system requirements refer to the individual product pages.
    Mylenium

  • Error while Installing R/3 4.7 on windows with Oracle

    Hello All,
    I am getting this error while installing R/3 4.7 on windows
    FSL-02097 The file system mounted on: C:\ does not support ACLs.
    ERROR 2009-06-02 17:30:06
    FSL-03006 Unknown exception caught when trying to add an entry to the service file.
    ERROR 2009-06-02 17:30:06
    MUT-02011 Internal error: A call to syslib failed. System error message: No error.
    ERROR 2009-06-02 17:30:06
    MUT-02011 Internal error: A call to syslib failed. System error message: No error
    Please help me out
    Rohit

    Thanks for your inputs
    I was able to continue the installation after that.During database Instance installation I get the following error:
    CJS-00095 Error return code.<br>DIAGNOSIS: Return code 35 of executable D:\oracle\ora92\bin\oradim indicates an error
    The log files oradim.log says
    "DIM-00035: You have entered and invalid option for the -EDIT command"
    and sapinst_dev says:
    " NFO       2009-06-04 14:42:50
               CJSlibModule::writeInfo_impl()
    Output of D:\oracle\ora92/bin/oradim -NEW -SID IDS -STARTMODE manual -SRVCSTART system is written to the logfile oradim.log.
    WARNING    2009-06-04 14:42:50
               CJSlibModule::writeWarning_impl()
    Execution of the command "D:\oracle\ora92/bin/oradim -NEW -SID IDS -STARTMODE manual -SRVCSTART system" finished with return code 35. Output:
    DIM-00035: You have entered and invalid option for the -EDIT command
    TRACE      [iaxxejsexp.cpp:208]
               EJS_Installer::writeTraceToLogBook()
    oradim -NEW -SID IDS -STARTMODE manual -SRVCSTART system returns 35
    TRACE      [iaxxejsexp.cpp:208]
               EJS_Installer::writeTraceToLogBook()
    oradim: Return codes indicating success are: [0]
    ERROR      2009-06-04 14:42:50
               CJSlibModule::writeError_impl()
    CJS-00095  Error return code.<br>DIAGNOSIS: Return code 35 of executable D:\oracle\ora92/bin/oradim indicates an error.<br>SOLUTION: See log file oradim.log for details.
    TRACE      [iaxxejsbas.hpp:270]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown std::ESAPinstJSError: ind-rel.ind-os.ora.badReturnCode
    TRACE      [iaxxcwalker.cpp:301]
               CDomWalker::processStep()
    <html><head></head><body><p>An error occurred while processing service <b>SAP R3E 4.7 Extension Set 2 SR1> ABAP System> Oracle> Non-Unicode> Database Instance Installation</b>. You may now</p><ul> <li>press <I>Retry</I> to repeat the current step.</li> <li>press the <I>View Log</I> button to get more information about the error.</li> <li>stop the task and continue with it later.</li> <li>reset your input for the current task. In this case, SAPinst will permanently remove all installation files from the installation directory. This gives you the opportunity to restart from scratch.</li></ul><p>Log files are written to <b>C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\ORA\NUC\DB</b>.</p></body></html>
    Please help
    Rohit

  • Error while appling INDIA LOCALIZATION PATCH 6167056 on windows

    hi all,
    Platform Windows 2003.
    I have use 6491231 patch utility to apply INLOC patch.I have successfully applied Patch 5498551 - Cummulative Patchset IN60107 patch with same tool.
    I got following error while appling INDIA LOCALIZATION PATCH 6167056 on windows.
    Copied admin\ja_in_cmn_5501681_apps.sql successfully to d:\oracle\visappl\ja\11.5.0\admin.
    Applied ja_in_cmn_5501681_apps.sql successfully.
    Copied admin\jai_rgm_mig_5694855.sql successfully to d:\oracle\visappl\ja\11.5.0\admin.
    Applied jai_rgm_mig_5694855.sql successfully.
    Copied admin\jai_upg_6274975.sql successfully to d:\oracle\visappl\ja\11.5.0\admin.
    Applied jai_upg_6274975.sql successfully.
    ***Error! Could not copy ja_in_57f4_form_number_aiu_trg.sql to C:\Documents and Settings\applmgr\Desktop\IL Patches\patch\6167056\backup\patch/115/sql. Skipping..The syntax of the command is incorrect.
    Copied patch\115\sql\ja_in_57f4_form_number_aiu_trg.sql successfully to d:\oracle\visappl\ja\11.5.0\patch\115\sql.
    Applied ja_in_57f4_form_number_aiu_trg.sql successfully.
    ****Error! Could not copy* ja_in_apps_ar_lines_update_trg.sql to C:\Documents and Settings\applmgr\Desktop\IL Patches\patch\6167056\backup\patch/115/sql. Skipping..The syntax of the command is incorrect.
    Copied patch\115\sql\ja_in_apps_ar_lines_update_trg.sql successfully to d:\oracle\visappl\ja\11.5.0\patch\115\sql.
    Applied ja_in_apps_ar_lines_update_trg.sql successfully.
    ***Error! Could not copy ja_in_ar_hdr_complete_trg.sql to C:\Documents and Settings\applmgr\Desktop\IL Patches\patch\6167056\backup\patch/115/sql. Skipping..The syntax of the command is incorrect.
    Copied patch\115\sql\ja_in_ar_hdr_complete_trg.sql successfully to d:\oracle\visappl\ja\11.5.0\patch\115\sql.
    Applied ja_in_ar_hdr_complete_trg.sql successfully.
    ***Error! Could not copy JAINVRCV.fmb to C:\Documents and Settings\applmgr\Desktop\IL Patches\patch\6167056\backup\forms\US. Skipping..The syntax of the command is incorrect.
    Copied forms\US\JAINVRCV.fmb successfully to d:\oracle\visappl\au\11.5.0\forms\US.
    Generated d:\oracle\visappl\ja\11.5.0\forms\US\JAINVRCV.fmx successfully.
    Moved JAINVRCV.err successfully to d:\oracle\visappl\ja\11.5.0\log\VIS_apps\6167056.
    ***Error! Could not copy JAINEXCLIABILITY.rdf to C:\Documents and Settings\applmgr\Desktop\IL Patches\patch\6167056\backup\reports\US. Skipping..The syntax of the command is incorrect.
    Copied reports\US\JAINEXCLIABILITY.rdf successfully to d:\oracle\visappl\po\11.5.0\reports\US.
    Generated JAINEXCLIABILITY.rep successfully.Moved JAINEXCLIABILITY.rep successfully to d:\oracle\visappl\ja\11.5.0\log\VIS_apps\6167056.
    STATUS :
    Patch application completed successfully.
    Please check d:\oracle\visappl\ja\11.5.0\log\VIS_apps\6167056\6167056.log for patch application details.
    As per my observation its unable to copy from source, m i correct?
    can i apply same patch again after copy source on some other directory? or patch is applied successfully?
    Thanks in Advance,
    Sandeep.

    Hi,
    Please read the post properly
    there should be no spaces between the folder of PATCH_TOP directory like below
    C:\Documents and Settings \applmgr\Desktop \ IL Patches \patch\6167056\backup\reports\US
    copy the patch in c:\>6167056 and apply the patch
    Regards
    Edited by: hungry_dba on Feb 11, 2010 6:13 AM

  • Error while launching WebClient from GUI in CRM 2007

    When I try to launch WebClient application from workbench, I see the following information:
    Error while loading the runtime repository via HTTP.
    When I proceed to log on in the web browser, it throws an error:
    The URL http://.......com....was not called due to an error.
    Any one please let me know how to resolve this.
    Thanks

    Look at the OSS note
    Note 1084490 - Loading the runtime repositories with inactive plug-ins
    Thirumala.

  • Getting Java Error while launching Juniper SBR from Mozila and IE

    Hi,
    I am getting the following error message on Java console while Launching SBR (Steel-Belted Radius).
    Here is the error:
    java.io.IOException: Cannot run program "C:\Documents": CreateProcess error=193, %1 is not a valid Win32 application
    Any help, will be greatly appreciated.
    Rohan

    Guys!!!!!!! Please help me out.......

  • Getting a 'Runtime Error' while launching Crystal Reports

    Hello
    I have Crystal Report XI R2 installed on an XP machine. However, while launching it, I get the following error:
    Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program ...am Fils\Business Objects\Crystal Reports 11.5\crw32.exe
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information.
    Any help would be appreciated.
    Thanks,
    Alok.

    Hi Alok
    Are you logged in as Administrator?
    If not try logging in as Administrator,is still the issue persists then you need to manually uninstall Crystal Reports and reinstall it again.
    This issue happens because the installation of Crystal Reports has not been successful, despite a message stating that it has been  successfully installed.
    Manual Uninstalling Process:
    Symptom
    Crystal Reports XI is installed on your computer. You need to manually uninstall Crystal Reports XI for one of the following reasons:
    u2022 To verify that all Crystal Reports XI components have been completely removed prior to installing a later version of Crystal Reports.
    u2022 To remove the remaining Crystal Reports XI components that have not been removed using the 'Add/Remove Programs' command (Start > Settings > Control Panel).
    u2022 To remove the remaining Crystal Reports XI components that have not been removed using the Setup.exe file from Crystal Reports XI installation CD.
    How do you manually uninstall Crystal Reports XI?
    Resolution
    Before getting started, uninstall Crystal Reports XI by launching the Setup.exe file from the installation CD or by using the 'Add/Remove Programs' command. If either of these methods fails to remove all Crystal Reports directories, files and registry keys, then continue with the resolution of this article.
    ==========
    WARNING:
    This resolution can be applied if Crystal Reports XI is the only software installed on the computer that uses the Business Objects directories, files and registry keys.
    For example, Crystal Analysis, Crystal Enterprise and BusinessObjects Enterprise XI are applications that may share the same directories, files and registry keys.
    Removing these directories, files and registry keys may cause other software to function incorrectly.
    ==========
    1. To manually uninstall Crystal Reports XI, delete the following directories:
    u2022 C:\Program Files\Common Files\Business Objects\3.0
    u2022 C:\Program Files\Business Objects
    ====================
    NOTE:
    Do not remove the directory C:\Program Files\Common Files\Business Objects\3.0 if you have BusinessObjects Enterprise XI or Crystal Reports Server XI installed. These files are shared by both applications and removal of these files will cause Business ObjectsEnterprise XI and Crystal Reports Server XI to function incorrectly.
    ====================
    2. Delete the following registry keys:
    ====================
    WARNING:
    The following resolution involves editing the registry. Using the Registry Editor incorrectly can cause serious problems that may require you to reinstall the Microsoft Windows operating system. Use the Registry Editor at your own risk.
    HELP:
    For information on how to edit the registry key, view the 'Changing Keys And Values' online Help topic in the Registry Editor (Regedit.exe).
    RECOMMENDATION:
    It is strongly recommended that you make a backup copy of the registry files (System.dat and User.dat on Win9x computers) before you edit the registry.
    ====================
    u2022 HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\
    u2022 HKEY_CURRENT_USER\Software\Business Objects\Suite 11.0\Crystal Reports
    u2022 HKEY_USERS\S-#-#-##-...-####\Software\Business Objects\Suite 11.0\Crystal Reports
    (The number signs (#) represent a series of numbers that are different on each computer.)
    ====================
    NOTE:
    After making changes to the registry, restart the affected service or application as required.
    ====================
    Hope this Helps,
    Shraddha

  • Permgen error while launching the weblogic server in windows

    Hi,
    While starting the weblogic server from the windows, I am getting the below error 'Permgen space error' for Sip Server. Please let me know how can I avoid running the sip server while starting the weblogic server or how can I avoid the permgen error.
    <21 Apr, 2012 7:33:33 AM IST> <Warning> <J2EE> <BEA-160195> <The application ver
    sion lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLif
    ecycleListener is ignored because the application em is not versioned.>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <SipServer.Resource> <BEA-332401> <Initia
    lizing SipServer Resource with configuration com.bea.wcp.sip.management.descript
    or.beans.SipServerBeanImpl>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <SipServer.Resource> <BEA-332404> <Engine
    AdminServer is in NON-REPLICATED mode>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330071> <WebLogic Sip
    Server "AdminServer" patch version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06
    PDT 2011 1398638
    Javax Server Pages Client Capable 1.2 Tue Jul 13 02:43:41 EDT 2010
    Expression Language 2.1 for JSP 1.0 Sun Jul 18 23:17:34 PDT 2010
    Javax Enterprise Servlets Client Capable 1.0 Thu Aug 2 12:41:25 EDT 2007
    Eclipse Java Development Tools 3.5.2 Thu Sep 2 09:47:11 EDT 2010
    WebLogic java compiler utils package Client Capable 1.2 Thu Feb 11 03:38:50 EST
    2010
    WebLogic WebApp Container Public API Client Capable 1.4 Fri Oct 1 20:01:15 PDT 2
    010
    Oracle WebLogic Server Module Dependencies 10.3 Thu Mar 3 14:37:52 PST 2011
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu F
    eb 3 16:30:47 EST 2011
    ANTLR Java based compiler generator Client 2.7 Mon Jun 11 12:19:48 EDT 2007
    WebLogic Descriptors for J2EE 1.5 Wed May 5 14:32:58 EDT 2010
    WebLogic Descriptors for J2EE 1.5 Binding Bundle
    WebLogic Specific Descriptors 1.3 Tue Sep 14 18:48:42 PDT 2010
    WebLogic Specific Descriptors 1.3 Binding Bundle
    WebLogic Datasource 1.9 Tue Oct 26 13:50:26 PDT 2010
    WebLogic Datasource 1.9 Binding Bundle
    WebLogic Beangen Client Capable 1.7 Wed Feb 24 16:02:48 PST 2010
    WebLogic Beangen 1.7 Binding Bundle
    WLDF Accessor Client Capable 1.5 Fri Sep 3 17:10:52 EDT 2010
    WLDF Accessor 1.5 Binding Bundle
    WebLogic Management Core Interfaces Client Capable 2.8 Thu Mar 3 12:10:10 EST 20
    11
    WebLogic Management Core Interfaces 2.8 Binding Bundle
    WebLogic EJBGen Client Capable 1.1 Thu Jun 3 13:17:07 EDT 2010
    Apache Byte Code Engineering Library (BCEL) extracted from 5.2.zip from http://j
    akarta.apache.org/site/downloads/downloads_bcel.cgi with packages renamed from o
    rg.apache.bcel to com.bea.core.repackaged.apache.bcel Client 5.2 Tue May 15 09:5
    2:37 EDT 2007
    Apache commons collections package 3.2 Tue Mar 20 15:48:25 MDT 2007
    Apache commons lang package 2.1 Tue Mar 20 15:48:30 MDT 2007
    Apache commons pool package 1.3 Tue Mar 20 15:48:36 MDT 2007
    Apache commons io 1.4 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache commons fileupload 1.2.1 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache DOM implementation 1.0 Tue Mar 20 15:36:46 MDT 2007
    Apache Logging Support 1.0 Tue Mar 20 15:36:50 MDT 2007
    Apache OpenJPA classes 1.2 Thu Jul 22 05:16:07 EDT 2010
    XMLBeans - Apache SVN rev 962560 2.1 Thu Jul 15 09:52:54 EDT 2010
    BEA Logging Runtime Support Client Capable 1.8 Mon Jun 7 12:07:02 PDT 2010
    BEA Common Security Open SAML 1.0 Fri May 14 20:18:10 PDT 2010
    BEA OpenSAML 2.0 1.0 Wed Mar 24 13:18:27 PDT 2010
    bea-harvester-api2.0 Client Capable 2.3 Mon Feb 15 14:41:06 EST 2010
    bea-harvester-jmx2.0 Client Capable 2.3 Wed Feb 3 11:54:03 PST 2010
    bea-harvester-utils Client Capable 1.4 Mon Feb 15 14:41:06 EST 2010
    bea-mbean-typing-util 1.4 Wed Feb 24 19:15:33 EST 2010
    Javolution 3.7.19 3.7 Tue Aug 28 17:32:21 PDT 2007
    Joda-time 1.2.1 1.2 Tue Aug 28 17:32:27 PDT 2007
    BEA STAX Build Time Support 1.5 Tue May 4 07:32:25 PDT 2010
    BEA STAX Runtime Time Support Client Capable 1.7 Wed Aug 4 19:40:47 EDT 2010
    BEA Generic Annotations Client Capable 1.3 Sat Jul 11 00:30:54 EDT 2009
    BEA Kodo 1.4 Mon Feb 7 16:22:04 PST 2011
    BEA Kodo Integration Client Capable 1.6 Sun Nov 22 16:29:06 PST 2009
    BEA Kodo Integration 1.6 Binding Bundle
    BEA Kodo Integration Tools 1.4 Thu Feb 3 16:07:53 EST 2011
    XML Beans Marshalling (package renamed com.bea) SVN 962560 2.3 Thu Mar 3 12:10:1
    0 EST 2011
    WebLogic Utils Client Capable 1.9 Thu Mar 3 12:10:10 EST 2011
    Aspect 5.3 Fri Jun 4 14:55:18 PDT 2010
    BEA Apache Commons Logging Repackaged 1.2 Mon Jun 11 12:47:12 EDT 2007
    Spring Framework 1.1 Thu Dec 3 12:21:08 EST 2009
    Pitchfork 1.3 Thu Jun 3 13:17:07 EDT 2010
    ${description} 1.2 Fri Jun 25 16:25:26 EDT 2010
    CSS i18n 1.0 Fri Oct 8 10:32:52 EDT 2010
    CSS xacml 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML2 Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Interfaces 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security API 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security JDK Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 Management JavaBeans 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    XACML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Environment 1.0 Fri Oct 8 10:32:52 EDT 2010
    RSA certj 3.1 Wed May 5 15:11:55 PDT 2010
    Netscape LDAP JDK 1.2 Mon Jun 7 15:56:47 EDT 2010
    Commons Networking Utilty classes 1.0 Wed Feb 6 15:01:03 PST 2008
    WebLogic SAAJ 1.6 Wed Jun 16 22:02:31 EDT 2010
    WebLogic STAX Client Capable 1.9 Thu Feb 10 18:00:52 PST 2011
    jaxb-impl.jar taken from Glassfish JAXB 2.1.9 1.0 Fri Aug 20 14:37:07 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.12 1.0 Thu May 6 16:10:04 PDT 2010
    resolver.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:24 EST 2009
    Fastinfoset.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:27 EST 2009
    jaxws-rt.jar taken from Glassfish JAXWS 2.1.5 1.2 Mon Feb 28 17:53:01 PST 2011
    Java.net implementation of MimePull.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu
    Dec 3 11:46:33 EST 2009
    Codehaus STaX Interfaces 3.0.1 1.0 Mon Mar 8 20:49:50 PST 2010
    Woodstox STaX Parser 4.0.5 1.0 Thu Dec 3 11:35:43 EST 2009
    jaxws-tools.jar taken from Glassfish JAXWS 2.1.5 1.1 Fri Sep 24 17:55:05 PDT 201
    0
    Java.net Stax Extensions 1.0 Tue Jun 3 07:12:06 PDT 2008
    Java.net xml stream buffer 1.0 Tue Mar 17 05:24:12 PDT 2009
    Jakarta ORO 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Enterprise Activation 1.1 Tue Apr 8 09:31:17 PDT 2008
    Javax Annotation 1.0 Fri Dec 25 09:02:47 PST 2009
    Javax Interceptor 1.0 Tue Mar 20 15:37:16 MDT 2007
    Javax Enterprise Beans 3.0 Mon Jun 11 12:21:01 EDT 2007
    Java Data Objects 2.0 Mon Jun 11 12:20:56 EDT 2007
    Java Enterprise Deployment APIs 1.2 Tue Mar 20 15:37:28 MDT 2007
    Java Enterprise Messaging 1.1 Mon Jun 11 12:21:11 EDT 2007
    Java Web Services 2.0 Tue Mar 20 15:37:37 MDT 2007
    Javax Enterprise Mail 1.1 Mon Jul 6 10:41:09 MDT 2009
    Java Enterprise Management APIs 1.0 Tue Mar 20 15:37:49 MDT 2007
    Java Persistence Client Capable 1.0 Tue Oct 7 12:18:34 PDT 2008
    Java Connector 1.5 Mon Jun 11 12:22:07 EDT 2007
    Java Authorization Contract for Containers 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Transaction APIs Client Capable 1.0 Thu Aug 2 12:42:14 EDT 2007
    JAXB 2.1 Mon Jun 11 12:22:53 EDT 2007
    Java XML Registry 1.0 Wed Feb 6 15:01:03 PST 2008
    Java XML Soap Extensions 1.3 Mon Jun 11 12:22:59 EDT 2007
    Java Stream XML Extensions 1.1 Mon Jun 11 12:23:05 EDT 2007
    JAX-WS APIs 2.1 Mon Jun 11 12:23:16 EDT 2007
    Java API for XML-based RPC 1.2 Mon Jun 11 12:23:10 EDT 2007
    Monfox Dynamic SNMP Agent 1.1 Fri Mar 19 05:46:27 MDT 2010
    Serp bytecode manipulation framework 1.14.3 Fri Jun 11 12:06:08 PDT 2010
    WebLogic Apache Classes Client Capable 1.2 Thu Feb 18 22:06:19 PST 2010
    WebLogic BeanInfo Caching and Discovery Client Capable 2.4 Sat Oct 25 20:46:29 P
    DT 2008
    WebLogic Descriptor Client Capable 1.9 Tue Jul 20 16:03:09 EDT 2010
    Repackaged ASM-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-commons-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-tree-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-util-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Oracle JFR 1.0 Thu Feb 18 19:06:33 PST 2010
    WebLogic Diagnostics Core Interfaces Client Capable 2.5 Thu Jun 3 05:20:41 PDT 2
    010
    WebLogic Diagnostics Logging Client Capable 1.2 Fri Dec 12 11:37:59 MST 2008
    WebLogic Diagnostics Query Module Client Capable 1.2 Tue Oct 27 02:48:36 PDT 200
    9
    WebLogic Diagnostics Instrumentor Tool 1.7 Tue May 18 03:51:46 PDT 2010
    WebLogic Diagnostics Instrumentor Config Tool 1.7 Tue Jun 29 16:41:19 EDT 2010
    WebLogic Diagnostics JRockit Flight Recorder Interfaces Client Capable 1.1 Fri O
    ct 29 16:32:05 EDT 2010
    Diagnostics Notifications Module Client Capable 1.4 Sun Nov 22 16:03:32 PST 2009
    BEA Logging Runtime Support Client Capable 1.5 Thu Apr 29 20:43:42 EDT 2010
    WebLogic i18n Runtime Support Client Capable 1.8 Fri Sep 10 08:12:34 EDT 2010
    WebLogic i18n Build Support Client Capable 1.5 Fri Feb 19 15:03:15 EST 2010
    WebLogic I18N tools Client Capable 1.3 Sun Nov 22 16:03:32 PST 2009
    WebLogic Management JMX Interfaces 1.4 Thu Aug 12 11:16:22 PDT 2010
    WebLogic Security Provider Generation Tool 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Security Provider Generation Tool Client Capable 1.5 Wed Oct 14 16:39:2
    8 MDT 2009
    WebLogic Messaging Kernel Client Capable 1.8 Mon Aug 23 21:42:11 EDT 2010
    WebLogic Resource Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    WebLogic Socket Muxer API Client Capable 1.2 Thu Apr 1 21:16:27 EDT 2010
    WebLogic RMI Client Capable 1.10 Tue Mar 22 16:56:32 PDT 2011
    Common Security WebLogic Server Integration Support 1.0 Fri Oct 8 10:32:52 EDT
    2010
    Server Lifecycle Interfaces Client Capable 1.4 Fri Feb 19 15:03:15 EST 2010
    WebLogic Store Client Capable 1.7 Fri Dec 17 16:52:31 EST 2010
    WebLogic STORE GXA Client Capable 1.6 Mon Aug 23 21:16:10 EDT 2010
    WebLogic Store Admin Tool Client Capable 1.2 Thu Jan 21 10:24:18 PST 2010
    WebLogic JDBC Store Client Capable 1.3 Mon May 17 10:46:33 PDT 2010
    WebLogic JTA implementation Client Capable 2.7 Fri Sep 17 12:19:45 PDT 2010
    WebLogic Utils 1.9 Thu Mar 3 12:10:10 EST 2011
    Agent Utililities 1.1 Tue Feb 16 00:16:03 EST 2010
    WebLogic Utility Classloader implementations Client Capable 1.9 Wed Mar 2 14:10:
    04 PST 2011
    WebLogic Utils for working with Expressions Client Capable 1.4 Tue Sep 29 14:45:
    53 EDT 2009
    WebLogic Utils for Dynamically Generated Class Wrappers Client Capable 1.4 Fri F
    eb 13 14:44:23 MST 2009
    WebLogic Timers Client Capable 1.7 Thu Feb 18 13:08:44 EST 2010
    WebLogic Work Manager Client Capable 1.10 Thu Feb 17 10:25:54 PST 2011
    WebLogic Workarea Client Capable 1.7 Wed Feb 24 17:18:56 PST 2010
    WebLogic XML XPath Implementation Client Capable 1.4 Mon Feb 22 15:07:14 PST 201
    0
    Weblogic Tuxedo Connector Core Client Capable 1.5 Sat Jul 3 19:05:38 EDT 2010
    WebLogic Security 1.0 Fri Oct 8 10:32:52 EDT 2010
    Weblogic Server Java Authentication Helper Classes Client Capable 1.1 Mon Jul 5
    20:42:35 EDT 2010
    Weblogic Server Message Digest Utilities Client Capable 1.0 Thu Aug 2 12:51:30 E
    DT 2007
    Weblogic Server Authenticated Subject Client Capable 1.1 Thu Oct 28 05:46:37 PDT
    2010
    Weblogic Server Authenticated Subject Client Capable 1.5 Thu Sep 9 10:23:21 MDT
    2010
    PrintingSecurityManager - PSM 1.1 Tue Feb 16 05:30:08 PST 2010
    WebLogic security ssl classes 1.0 Tue Jun 15 17:39:53 EDT 2010
    WebLogic Nodemanager Plugin Client Capable 1.3 Tue Nov 18 18:23:10 EST 2008
    nodemanager module for managed processes 1.0 Thu Apr 8 15:14:38 PDT 2010
    WebLogic JMS Pool Client Capable 1.8 Thu Mar 3 14:11:40 PST 2011
    Contains compiled schema type from WLS 9.0 for WLP compatibility 1.3 Wed Feb 24
    19:15:33 EST 2010
    WebLogic Http Pub/Sub Module Client Capable 1.6 Mon Jul 12 02:31:07 EDT 2010
    Class Redefinition Project 1.5 Mon May 10 19:48:21 EDT 2010
    Class Redefinition Project Client Capable 1.5 Mon Apr 5 17:00:52 PDT 2010
    Class Redefinition Project 1.5 Binding Bundle
    Commonj SDO 1.0 Wed Sep 24 19:11:23 PDT 2008
    WebLogic Coherence Descriptor 1.1 Wed May 5 15:17:47 EDT 2010
    WebLogic Coherence Descriptor 1.1 Binding Bundle
    This module contains all message catalogs 1.1 Fri Dec 17 08:04:35 PST 2010
    WebLogic WebService Public API's 1.1 Tue Sep 21 22:15:05 EDT 2010
    WebLogic EclipseLink Integration 1.0 Thu Feb 25 14:56:43 PST 2010
    WebLogic SCA Client 1.0 Thu Feb 25 00:27:10 EST 2010
    WebLogic RAC Module UCP Client Capable 1.0 Mon Sep 13 09:03:00 PDT 2010
    BEA Patches of apache ant Client Capable 1.2 Wed Jan 13 08:48:17 PST 2010
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server Datatier 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    WebLogic SIPServer Extension API 10.3.4.0 at 709997 built on 2010/09/27
    WebLogic SIPServer Extension API 10.3.4 at 709997 built on 2010/09/27
    WebLogic SIPServer CallState 10.3.4 at 709997 built on 2010/09/27
    Oracle WebLogic Communications SCTP 10.3.1 at 688160 built on 2009/03/11
    ALSB Client 1.3 Mon Apr 12 19:21:38 PDT 2010
    WebLogic WebService Databinding 1.2 Fri Oct 15 06:35:13 PDT 2010
    WebLogic WebService Databinding Plugins 1.2 Fri Oct 15 07:38:46 PDT 2010
    WebLogic SCA Engine 1.2 Mon Aug 16 20:42:39 EDT 2010
    WebLogic WebService Databinding Plugins 1.2 Fri Oct 15 07:38:46 PDT 2010
    WebLogic WebService Databinding 1.2 Fri Oct 15 06:35:13 PDT 2010
    WebLogic SIP Activator 10.3.4 at 710163 built on 2010/09/30
    >
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330065> <SIP server re
    plication is DISABLED>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330000> <WebLogic SIP
    Server "sipserver" has started.>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SI
    P Message processor (Transport TCP)" is listening on port 5060>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SI
    P Message processor (Transport TCP)" is listening on port 5061>
    <21 Apr, 2012 7:34:40 AM IST> <Error> <WLSS.Setup> <BEA-331210> <Skip SIP relate
    d logic, because error occurs when parsing sip related annotations of "em"
    com.bea.wcp.sip.engine.server.setup.SipAnnotationParsingException:
    at com.bea.wcp.sip.engine.server.setup.SipAnnotationData.<init>(SipAnnot
    ationData.java:146)
    at com.bea.wcp.sip.util.DeploymentUtil.getOrCreateAnnotationData(Deploym
    entUtil.java:70)
    at com.bea.wcp.sip.util.DeploymentUtil.isSipModule(DeploymentUtil.java:9
    6)
    at com.bea.wcp.sip.engine.server.SipServerTailModule$1.visit(SipServerTa
    ilModule.java:127)
    at com.bea.wcp.sip.engine.server.SipServerTailModule.visitAllContexts(Si
    pServerTailModule.java:112)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.OutOfMemoryError: PermGen space
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:630)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:614)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:14
    1)
    at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericCla
    ssLoader.java:343)
    Truncated. see log file for complete stacktrace
    >
    <21 Apr, 2012 7:35:05 AM IST> <Warning> <J2EE> <BEA-160181> <An error was encoun
    tered and ignored during undeployment. The error was: weblogic.utils.ErrorCollec
    tionException:
    There are 2 nested errors:
    java.lang.OutOfMemoryError: PermGen space
    and
    java.lang.OutOfMemoryError: PermGen space
    weblogic.utils.ErrorCollectionException:
    There are 2 nested errors:
    java.lang.OutOfMemoryError: PermGen space
    and
    java.lang.OutOfMemoryError: PermGen space
    at weblogic.application.utils.StateMachineDriver.previousState(StateMach
    ineDriver.java:227)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:63)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.
    java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.ja
    va:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(Deploym
    entStateChecker.java:161)
    Truncated. see log file for complete stacktrace
    >

    What options have you selected when you set-up WebLogic?
    You can increase the PermSize and MaxPermSize parameters of the JVM to avoid java.lang.OutOfMemoryError: PermGen space.
    These parameters can be set in the setDomainEnv file.

  • Error while Launching Scenario from IOP UI

    Hi ,
    I am getting below error on launching the scenario from IOP UI. Few days back it was working fine however when I tried to open it today, excel is not launching at all. So I ran Dbmon to check error and this is what I am getting. I uninstalled and installed IOP excel control but error persists. Let me know what could be the problem.
    C:\Oracle\IOP\bin>dbmon.exe
    4360: iexplore.exe
    10:22:02.509 7148 Oracle SOP Excel Control 1.0.326.14 2009-08-31T15:06:00 log:6
    | 0553E0C4-CC6A-4E45-A618-9917E7AD701C C:\Windows\Downloaded Program Files\ambassador.dll
    10:22:02.509 7148 Network::getIPAddresses couldn't create socket
    10:22:03.023 7148 Network::getIPAddresses couldn't create socket
    10:22:03.538 7148 Network::getIPAddresses couldn't create socket
    10:22:04.053 7148 Network::getIPAddresses couldn't create socket
    10:22:04.568 7148 Network::getIPAddresses couldn't create socket
    10:22:05.083 7148 Network::getIPAddresses couldn't create socket
    10:22:05.597 7148 Network::getIPAddresses couldn't create socket
    10:22:06.097 7148 Network::getIPAddresses couldn't create socket
    10:22:06.611 7148 Network::getIPAddresses couldn't create socket
    10:22:07.111 7148 Network::getIPAddresses couldn't create socket
    10:22:07.625 7148 Network::getIPAddresses couldn't create socket
    10:22:08.125 7148 Network::getIPAddresses couldn't create socket
    10:22:08.639 7148 Network::getIPAddresses couldn't create socket
    10:22:09.154 7148 Network::getIPAddresses couldn't create socket
    10:22:09.669 7148 Network::getIPAddresses couldn't create socket
    10:22:10.184 7148 Network::getIPAddresses couldn't create socket
    10:22:10.699 7148 Network::getIPAddresses couldn't create socket
    10:22:11.213 7148 Network::getIPAddresses couldn't create socket
    10:22:11.713 7148 Network::getIPAddresses couldn't create socket
    10:22:12.227 7148 Network::getIPAddresses couldn't create socket
    10:22:12.742 7148 Network::getIPAddresses couldn't create socket
    10:22:13.257 7148 Network::getIPAddresses couldn't create socket
    10:22:13.772 7148 Network::getIPAddresses couldn't create socket
    10:22:14.287 7148 Network::getIPAddresses couldn't create socket
    10:22:14.801 7148 Network::getIPAddresses couldn't create socket
    10:22:15.301 7148 Network::getIPAddresses couldn't create socket
    10:22:15.815 7148 Network::getIPAddresses couldn't create socket
    10:22:16.315 7148 Network::getIPAddresses couldn't create socket
    10:22:16.829 7148 Network::getIPAddresses couldn't create socket
    10:22:17.329 7148 Network::getIPAddresses couldn't create socket
    10:22:17.843 7148 Network::getIPAddresses couldn't create socket
    10:22:18.358 7148 Network::getIPAddresses couldn't create socket
    10:22:18.873 7148 Network::getIPAddresses couldn't create socket
    10:22:19.388 7148 Network::getIPAddresses couldn't create socket
    10:22:19.903 7148 Network::getIPAddresses couldn't create socket
    10:22:20.417 7148 Network::getIPAddresses couldn't create socket
    10:22:20.932 7148 Network::getIPAddresses couldn't create socket
    10:22:21.447 7148 Network::getIPAddresses couldn't create socket
    10:22:21.962 7148 Network::getIPAddresses couldn't create socket
    10:22:22.477 7148 Network::getIPAddresses couldn't create socket
    10:22:22.991 7148 Network::getIPAddresses couldn't create socket
    10:22:23.491 7148 Network::getIPAddresses couldn't create socket
    10:22:24.005 7148 Network::getIPAddresses couldn't create socket
    10:22:24.505 7148 Network::getIPAddresses couldn't create socket
    10:22:25.019 7148 Network::getIPAddresses couldn't create socket
    10:22:25.534 7148 Network::getIPAddresses couldn't create socket
    10:22:26.049 7148 Network::getIPAddresses couldn't create socket
    10:22:26.564 7148 Network::getIPAddresses couldn't create socket
    10:22:27.079 7148 Network::getIPAddresses couldn't create socket
    10:22:27.593 7148 Network::getIPAddresses couldn't create socket
    ^C

    Yes I tried to use it from another machine (Client) & same issue. Not sure whats wrong with my machine

  • Error while installing 10g EM Grid Control on Windows 2003

    Hi Experts,
    I am facing following error while installing EM Grid Control, please help me find solution:
    Here are the installation error found in the log file:
    INFO: oracle.sysman.top.oms:Start Opmn Error = CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl startall
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl startall have completed with exitCode=206
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'opmnctl: starting opmn and all managed processes...
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    '================================================================================
    opmn id=emgc:6201
    5 of 6 processes started.
    ias-instance id=EnterpriseManager0.emgc
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server
    Error
    --> Process (pid=1416)
    failed to start a managed process after the maximum retry limit
    Log:
    C:\OracleHomes\oms10g\opmn\logs\HTTP_Server~1
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 5 have been completed with status=false
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Completed EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=configuration in step=2:microstep=0
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration has failed its perform method
    INFO: OuiConfigVariables:IAction.perform() was called on {Action state:OUICA in CfmAggregateInstance: OuiConfigVariables:1.0.0.0.0:common:family=CFM:oh=C:\OracleHomes\oms10g:label=0}
    INFO: Framework waiting for Action to complete at 11:45:05.168
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=OUICA Status=is running with ActionStep=0 stepIndex=0 microStep=0
    INFO: OuiConfigVariables:About to execute plug-in OUI_CA
    INFO: OuiConfigVariables:The plug-in OUI_CA is running
    INFO: OuiConfigVariables:Launching CmdExec
    INFO: OuiConfigVariables:ExitCode=0
    INFO: OuiConfigVariables:The plug-in OUI_CA executed as attached=true in separate process with exitcode=0
    INFO: OuiConfigVariables:The plug-in OUI_CA has successfully been performed
    INFO: done waiting for Action from 11:45:05.168
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 21 aggregate instances saved
    Any help or direction will be highly appreciated.
    Regards,
    MS

    i followed the link and all the instructions things seemed to go well: it still asked for two files i did not have or could not locate: first its asked for generalstub, then it asked for seedstup and then generalstup again. at this point the installation was at 67% and had passed the link succesful stage and was at the setup succeful stage. when i clicked ignore on generalstub, seedstup and then generalstup again it quicly moved to 100% and never took me to the stage for me to run oraInstroot.sh and allroot.sh
    the configuration assistant stage never cameup and it skipped to the page Specify Repository Database Configuration
    where it asked for repository database hostname port, service/sid and SYSMAN password and also manament service security password. whe i input all the infor mation it will give errors. i have tries deleting all oracle 3 or 4 times and all files that oracle has and repeated the process and am always stuck here.
    error reads :
    -error cheching the existence of the SYSMAN user in Management repository
    -exception occured while connecting to database . please check the connection details you specified and retry
    -io exception connection refused: (DESCRIPTION=(TMP=)(VSNUMM=168821760)(ERR=12514)(ERRO_STACK=(ERROR=(CODE=12514)(EMFI=4))))
    REP DB HOSTNAME:SA-OMS-01
    PORT:1521
    SERVICE/SID:OMSDB01
    SYSMAN PASSWORD:PASS
    THE REST I PUT PASS AS PASSWORD
    NOT SURE WHAT TO DO NEXT.

Maybe you are looking for

  • How can I salvage a defective Time Machine?

    I had a major system failure with multiple kernel craches that wiped my system disk.  No errors reported when I tried to rebuild it from the Time Machine, but I only recovered about 10%.  When I opened Time Machine, there was a list of backup dates g

  • Ipod mini troubles: Help Needed

    I really need help with ipod mini troubleshooting.. I've had my Ipod mini for about 3 years now and lately have been running into a few problems. In the past few months: -My Ipod's "battery meter" has been acting really strange, one second it may be

  • PDF export to word problems

    I paid for the 12 month free deal to export my files and it is not working I would like to work or get my money back.

  • Magic Mouse under XP

    I bet youve heard this problem before... My Magic mouse doesent work under winxp. I have no usb mouse, I have no Vista or 7... I tried putting the 0000 for the pass, changing the name on OSX but nothing, at most what I guet is to get the pass enabele

  • Refx and dms

    Dear Friends, I am looking for integration between refx and dms. Kindly provide me some details related to that as how we can use DMS with REFX. Regards Abhishek