Acrobat 3D Error on Launch

When launching Acrobat 3d, I'm now getting an error: "An error has been detected with a required application library and the product cannot continue.  Please reinstall the application."
I've reinstalled several times with the same error.  Program was working fine until this error started showing up.  Any help would be greatly appreciated.  Thanks.

Deactivating and reactivating worked for me, thanks,david
Are not conditions of happiness already present?
http://www.youtube.com/user/rezdoglatte
Date: Fri, 20 Jul 2012 17:28:50 -0600
From: [email protected]
To: [email protected]
Subject: Acrobat X Closes on Launch
    Re: Acrobat X Closes on Launch
    created by Sandeep V. in Adobe Creative Cloud - View the full discussion
Hi All, Kindly follow the help documentation: http://helpx.adobe.com/acrobat/kb/acrobat-x-closes-launch-creative.htm l Feel free to post back the results.
     Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4570996#4570996
     To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4570996#4570996. In the Actions box on the right, click the Stop Email Notifications link.
     Start a new discussion in Adobe Creative Cloud by email or at Adobe Forums
  For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Similar Messages

  • Error when launching Acrobat XI Pro

    I get an error when launching Acrobat XI Pro:
    Adobe License Utility has stopped working.
    A problem has caused the program to stop working
    correctly.  Please close the program.

    Hi toeneez,
    Please try repairing Acrobat and check.
    Try running the licensing fix patch available at : Error 213:19 | Problem has occurred with the licensing of this product | Acrobat X and XI
    Regards,
    Rave

  • I just migrated everything from an old Mac to a new one, but now Acrobat Professional will not launch. I get an error message: "Adobe Acrobat 8 Professional cannot be launched at this time......"

    I just migrated everything from an old Mac to a new one, but now Acrobat Professional will not launch. I get an error message: "Adobe Acrobat 8 Professional cannot be launched at this time......"

    I used "Migration Assistant" to send everything from my old mac to my new which included my copy of Adobe Acrobat 8 Professional. I tried downloading an update but when it asked me to find the version of acrobat to replace it was grayed out and I was unable to select it. My OS is 10.9.4

  • Acrobat 8 will not launch

    I have a new Dell running XP after launching I get an error:
    "Adobe Acrobat Pro cannot be launched at this time. You must launch at least one other suite component(such as Adobe Photoshop) before launching Acrobat 8 pro."
    Even if Photoshop is open I still get this error. I click ok and the program closes.
    This is very irritating.

    There is a good chance that you have previously installed a trial version and when you launch Acrobat it still thinks it is a trial. Uninstall Acrobat from add/remove programs (if it is a seperate entry then you definitely have installed Acrobat as a stand alone and not as part of the Suite) and then reinstall only Acrobat from the first disc of whatever version of the Suite you have.

  • Acrobat XI won't launch

    Downloaded acrobat xi successfully on my new pc (windows 8) but it won't launch, error 213:19.  I previously installed and used it on my old pc successfully.  I was thinking it might be a registration issue, so I just registered my Acrobat, but still no launch.  Any ideas?

    Hi Screenjolie,
    Please refer to the following help document on Error code: 213:19 while installing Acrobat XI.
    http://helpx.adobe.com/acrobat/kb/error-213-19-licensing-acrobat.html
    Hope this helps.
    Please if you face any problem.
    Regards,
    Sumit Singh

  • I get this error upon launching PS5: "could not open a scratch file because the file is locked .."

    I get this error upon launching PS5: "could not open a scratch file because the file is locked or ou do not have the necessary access privileges. Use the 'properties' command in the Windows Explorer to unlock the file". The applicaiton will not launch.
    Supporting information - I recently changed the scratch disk from C drive to D drive (the back up/restore drive). The application wont launch so I cant change it back to the C drive.
    Questions:
    - How to I fix this .. from windows explorer how do I find "the file" that the error message refers to?
    - Other ways to fix this?
    Thanks Steve

    Hi there! Because the forum you originally posted in is for beginners trying to learn the basics of Photoshop, I moved your question to the Photoshop General Discussion forum, where you'll get more specialized help.
    To help others help you, please read through this article and provide any additional relevant details.

  • 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?

  • Error when launching Crystal XIR2 report ..."Table could not be found."

    We have a customer that sees an error when launching any report in InfoView for Crystal Server XIR2:
    Description: Error in File E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\Data\slvnsb41.pageserver\slvnsb41.pageserver\child.2\temp\procReportTemp\mgrTemp\ps_13ec5b68e6bfbc0.rpt: The table could not be found.
    These steps have been taken:
    1) The Crystal Server Business View install and BIAR file imports are successful.
    2) Database connection has been configured and tested.
    3) All the tables are browseable in the Business View Manager and contain data.
    4) All the required tables exist in the database.
    Options or suggestions anyone?

    Can someone tell me how to open this as a SUPPORT CASE that someone will actually help solve? 
    Sorry to say but I don't find these forums of much use.

  • Error when launching Photoshop CS5

    Photoshop CS5 bring up the following error when launching the application
    "The program can't start because MSVCP110.dll is missing from your computer"
    Uninstalling and resintalling the application does not resolve this problem

    http://helpx.adobe.com/creative-cloud/kb/missing-msvcp110dll.html
    Mylenium

  • Error when launching a BPF

    Hi
    I receive the following error when launching af BPF:
    System.Exception: Index was outside the bounds of the array.
       at Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack)
       at OSoft.Services.Webservice.BPFProxy.BPFProxy.GetBPFContents(String strAppSet, String strApp, String strBPFID, String strDataRegion)
    We are running BPC 5.1 SP09-2 and accessing Excel via Citrix.
    I did work before we applied SP09-2.
    Any suggestions?
    Jesper

    After upgrading the client installation on Citrix was not correctly upgraden. Re-installing the client fils solved the problem.

  • Error when launching Key figure monitor iview in portal

    Hi all,
    I get an error when launching a key figure monitor iview in portal ; the error is RABAX-STATE
    In r/3 under transaction ST22 i got following :
    "UNCAUGHT_EXCEPTION" "CX_WDR_RT_EXCEPTION"
    "CL_WDR_INTERNAL_WINDOW========CP" or "CL_WDR_INTERNAL_WINDOW========CM00B"
    "IF_WD_WINDOW~SUBSCRIBE_TO_BUTTON_EVENT"
    Anybody knows how to resolve the problem?
    Regards
    Gwen

    Hey was your problem resolved ???
    I am facing the same problem..
    please help!!!
    reply asap.
    ~Veena.

  • Error when launching promoted app from RemoteAPP

    Hi:
    We are receiving this error when launching any application from RemoteAPP, we tried promoting Calculator, Notepad, etc. and received the same error as well.
    "Personalization:
    This theme can't be applied to the desktop.
    Try clicking a different theme"
    Help!
    Thank you,
    Stangride

    If you launch the app directly from the session hosts using the same account that your using with remoteapp what are you getting? Try and RDP to the session host when you attempt it. I would also check rsop.msc to see if you have any GPO or scripts that
    are manipulating themes.

  • When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Thx for your help,  Bruce

    When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Happens from Chrome, IE, Word, Excel, Powerpoint. Previously had deskPDF installed but uninstalled correctly. Can't find a preference setting for the auto launch. Thx for your help,  Bruce

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • After Effects Plugin Error when launching

    I recently installed Red Giant Knoll Light Magic Pro plugin and get the following error when launching AE CS4 9.02 on a 2.53Ghz Intel Macbook Pro with 4Gb Ram and Snow Leopard.
    After Effects has encountered an error.
    [/Chincillada/pro/ext/adobe/MediaCore/MediaLayer/VideoFilterHost/Make/Mac/../../Src/AEPlug inVideoFilterModule.cpp-107]
    then I get:
    After Effects can't continue: An output contract violation has occured!
    then:
    After Effects warning: Failed to initialize mediacore
    I have also lodged a support ticket with Red Giant but wanted to see if anyone had experienced, or could shed any light on this error code.
    Thanks

    As a start, move the KLF plug-in out of the shared MediaCore folder (Library:Apllication Support:Adobe and something; not on my Mac ATM) to the conventional AE plug-in folder (Applications:Adobe After Effects CS4:Support Files:Plug-Ins) I've reminded my friends at RG a hundred times, but their installer stil luses bad default locations. If that doesn't fix it, then indeed you have a problem. Which version of the plug-in are you using? Most complaints revolve around v2.5's GPU usage, which is on by default and causes a lot of trouble. Older versions do not do this, so they are more stable....
    Mylenium

  • 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á

Maybe you are looking for

  • Can't Login To iCloud on Mac - Post Mobileme transition

    Last week when all of the updates hit, I set my iMac and Macbook to use my Apple Store/iTunes ID for the iCloud and kept my MobileMe settings as-is (not knowing what all I should have done...transition tool was broken anyway). Today, I see that the M

  • SAP office messages can't be opened in UWL

    Hi, I have installed and tested SONIC (SAP Office Notification Connector). I have a SAP_ALL profile. When I receive a SAP office message, I can either open it in the SBWP or in the UWL notification tab (all my messages show up and I can display its c

  • RFC_SENDER_XI : RFC Dest Error

    Hi All I am configuring the RFC Destination on the ECC6 of typer TCP/IP to communicate RFC to XI, when i create the RFC destination RFC_SENDER_XI of type TCP/IP i am getting error Error Details     SAP gateway connection failed. Is SAP gateway starte

  • Uniform Distributed Queue - Delay in handing over to listener

    Hi, We have cluster of two managed servers. We have two physical destinations (queues) configured as uniform distributed queues. With this setup we observed that when a message is put in to the uniform distributed queue, it takes a while before it ha

  • Load an external clip in all connected user ?

    hi everybody i have a problem and I will try to explain.. : i load a external clip on the stage (with loadClip), and i want for all users connected (FMS) on this time to load also this clip ? how can a triggered the load of the clip to other users ?