[svn] 2706: Improve the information given during parse errors by providing more context about which parent token is not expecting a particular child token to follow .

Revision: 2706<br />Author:   [email protected]<br />Date:     2008-08-01 10:10:58 -0700 (Fri, 01 Aug 2008)<br /><br />Log Message:<br />-----------<br />Improve the information given during parse errors by providing more context about which parent token is not expecting a particular child token to follow.<br /><br />QA: Yes<br />Doc: No<br />Checkintests: Pass<br />Reviewer: Paul<br /><br />Bugs:<br /> SDK-15791 - [MXML Namespaces] Provide better error message when language tags are added as child of Declarations tag<br /> SDK-15659 - [MXML Namespaces] Error message not descriptive when Private tag is not immediate child of mxml document<br /> SDK-15669 - [MXML Namespaces] Error message not descriptive when incorrect <Library> and <Definition> tags are defined<br /><br />Ticket Links:<br />------------<br />    http://bugs.adobe.com/jira/browse/SDK-15791<br />    http://bugs.adobe.com/jira/browse/SDK-15659<br />    http://bugs.adobe.com/jira/browse/SDK-15669<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler_en.properties

Thank you for the sympathy and the information about the Adobe.com forum Michael.
I posted here because, to be honest, for a company that's acknowledged their installers and updaters and support needs some work, they seem very determined to obfuscate the means by which users can provide direct feedback to the company. Much like you, I've also noticed a trend in CS5 installations that mirrors the issues that were present in CS4. it's a sad state of affairs.
As for my installation, you are also quite right to say that a clean install would have been a lot faster than what I went through with TS and it was actually my first idea. Before calling TS I'd actually read through the forums and noticed that a large number of users who were faced with my situation had no other choice but to reformat. I was just giving Adobe the benefit of the doubt and wasted 2 and a half weeks through that course of action...
What makes this situation even more frustrating is that the installer failed on a fresh system. It was a custom-built design machine, assembled and configured by myself. The only software that had been installed on it prior to Design Premium was Firefox, an FTP client and the start of my problems, trial versions of various CS4 programs. I used trials just long enough to retire the previous design computer so that I wouldn't contravene the EULA's stipulation of not running more than one instance of software at the same time on different machines.  Turns out being honest once again penalised a legal customer.
If there is just thing users should learn from my far from unique tale of failed tech support it's that if you ever run into a problem with the installation, don't bother calling TS, just reformat and start from scratch.  It might seem like it'll take longer to get going again, but in actuality, it's the opposite. Reformatting means you'll be up and running in about 1 or 2 days rather than 2 weeks.
Marc

Similar Messages

  • Has anyone been able to upload an ibooks file with audio only files (m4a) in it? I keep getting the following error message during the upload in iTunes Producer: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets.

    Has anyone been able to upload an ibooks file with audio only files (m4a) in it? I keep getting the following error message during the upload in iTunes Producer: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets. then it names the file as an m4p file. Everything works beautifully on the iPad through Preview, and validates through iTunes Producer up until the attempted upload. If you've been able to accomplish this, please let me know how you prepared your audio files. Many thanks.

    Hello Fellow iBook Authors!
    Today I received the same error that you all have been discussing.  I tried selecting the DRM
    and this did not work for me, though I'm glad it did for some.  Here's what I did as a work-around. . .
    Since iBooks Author did not have a problem with Videos, I simply used one of my video programs, ScreenFlow to turn the audio into a video file m4v.  I added an image and extended the length or timing of the image to span the length of the audio file.  Then exported as an .mov.  I then opened QuickTime and opened the file and exported the file to iTunes. 
    You can use iMovie, Camtasia or any other progam that will allow you to export the audio as a movie file.  Does this make sense?  I hope this helps, at least in the short-term.
    Michael Williams

  • My Iphone 3 gs is restarting, and a screen to connect to Itunes. When I connect, and restoration, in order to process the information appears: "An unknown error occurred in the restoration (-1)". Help me please!

    My Iphone 3 gs is restarting, and a screen to connect to Itunes.When I connect, and restoration, in order to process the information appears: "An unknown error occurred in the restoration(-1)". Help me please!

    That is a baseband error. Has your phone ever been illegitimately unlocked? If so, that problem happens. If you haven't jailbroken/unlocked, visit your local Genius Bar.

  • I try "Get Info" of my Macintosh HD and the information given is incorrect

    I tried the "Get Info" option on my Macintosh HD icon and when it opens, the information that is given is incorrect.
    I checked that info with "System Information" and I found out that I have 424.88 GB out of 499.25 GB.
    How can I fix it?

    If you really want to start fresh and you have ANY PERSONAL files already backed up, or you don't care about them, stick the thumb drive in the USB port and reboot the system. Hold down the Option key when you hear the apple startup sound, let it go after about 15-20 second. That will give you a screen where you select which drive to boot off of, select the thumb drive. Once that has booted go to Disk Utility and RE-Partition the drive. That will wipe all information off it. Once that is done close Disk Utility and you will be back at the original screen. Select Install OS X Lion.
    Have fun.

  • Suppress the Information message during BAPI Call

    Hi, I am getting the information message pop up during the BAPI Call "BAPI_BUS2054_CREATE_MULTI". Is there any possiblity to suppress the message?

    Hi,
    use call function with destination. Here is a short example:
    REPORT  zhabitest.
    DATA:
      et_return LIKE bapiret2 OCCURS 0.
      CALL FUNCTION 'ZTEST'
        DESTINATION 'NONE'
        TABLES
          et_return = et_return.
    DATA:
      ele_return LIKE bapiret2,
      rc LIKE sy-subrc.
    CLEAR rc.
    LOOP AT et_return INTO ele_return.
      IF ( ele_return-type = 'E' )     "error
         OR ( ele_return-type = 'A' ). "abort
        rc = 8.
        EXIT.
      ENDIF.
    ENDLOOP.
    IF rc IS INITIAL.
      WRITE: / 'Call OK'.
    ELSE.
      WRITE: / 'Call error'.
    ENDIF.
    And the function is here:
    FUNCTION ztest.
    *"*"Lokale Schnittstelle:
    *"  TABLES
    *"      ET_RETURN STRUCTURE  BAPIRET2 OPTIONAL
      MESSAGE i208(00) WITH 'Separate I/O and processing!'.
      GET TIME.
      DATA:
        ele_return TYPE bapiret2.
    * return error randomly
      IF sy-uzeit+5(1) CA '13579'.
        ele_return-type = 'E'.
        APPEND ele_return TO et_return.
      ENDIF.
    ENDFUNCTION.
    Pay attention to the documentation of call with destination (db commit).
    Regards
    Walter Habich

  • SQL query works in the SQLPlus, but fires parse error after being cut and pasted into

    One of our client has a SQL query like this:
    SQL> SELECT LNAME,
    2 QUOTA/12,
    3 (SELECT SUM(CAMT) FROM CONSULTING WHERE CONSULTANT = P.EMPLOYEE
    4 AND ACTIVITYCODE = 'C'AND
    5 CDATE BETWEEN '01-JAN-2001' AND '31-JAN-2001') AS SUM,
    6 (SELECT SUM(CAMT) FROM CONSULTING WHERE CONSULTANT = P.EMPLOYEE
    7 AND ACTIVITYCODE = 'C'AND
    8 CDATE BETWEEN '01-JAN-2001' AND '31-JAN-2001') -
    QUOTA/12 AS PL
    9 FROM PERSONNEL P
    10 ORDER BY LNAME;
    Running the above query in the SQLPlus returns appropriate resultsets to the
    user. After the same SQL being cut and pasted into a portal report
    component, running the report component fires the following error:
    Failed to parse query
    Error:ORA-00911: invalid character (WWV-11230)
    Failed to parse as XXX - SELECT LNAME, QUOTA/12, (SELECT SUM(CAMT) FROM
    CONSULTING WHERE CONSULTANT = P.EMPLOYEE AND ACTIVITYCODE = 'C'AND CDATE
    BETWEEN '01-JAN-2001' AND '31-JAN-2001') AS SUM, (SELECT SUM(CAMT) FROM
    CONSULTING WHERE CONSULTANT = P.EMPLOYEE AND ACTIVITYCODE = 'C'AND CDATE
    BETWEEN '01-JAN-2001' AND '31-JAN-2001') - QUOTA/12 AS PL FROM PERSONNEL P
    ORDER BY LNAME; (WWV-08300)
    Cursor is not open
    Is this because of the multi-table queries, or something else? Is there any
    way around this? Any information regarding this will be highly appreciated.
    Thanks.
    null

    Sunny,
    From the error message that you posted it seems that you are putting a semicolon ";" at the end of your query. I checked the query that you have posted. It is working fine for me. (I am using 3.0.8) but I feel it will work in your version also. I tried the query without a ";" at the end --It worked.
    I tried with ";" at the end -- It gave the error that you have posted. So remove the ";" at the end and it should work. If you are still getting the same error then pls write down the version you are using. I will check in that version.
    Thanx,
    Chetan.

  • HT4479 After not receiving the Verification Email i realized the email had a typo/error. How do i correct it when it will not let me back in because i have not verified ?

    When creating a new ID i incorrectly entered the email address. How do i correct it when i cannot sign in because its telling me i must first verify

    Then, if there's any data on the drive that you want to keep, you have to back up before you do anything else -- assuming it's still possible.
    Basically you have three options:
    1. Install a copy of the Mac OS on an external hard drive, boot from it, and copy the data from the internal drive.
    2. Start the problem Mac in FireWire target mode (command-T at startup) and connect it to a working Mac with a FireWire cable. The internal drive will mount as a FireWire device.
    3. Remove the internal drive and mount in an external enclosure on another Mac.
    Once you've backed up, follow the sequence in the support article linked below. The article is somewhat outdated. Where it refers to booting from an installation disc, you should boot from your recovery partition (if running Lion) by holding down the key combination command-R at the chime.
    Mac OS X: Gray screen appears during startup

  • When firefox trys to auto update, or I manually download the new version, or some but not all downloads off of the web, I get this error message. C:\Users\John\AppData\Local\Temp could not be saved, because you cannot change the contents of that folder.

    First off, when firefox trys to auto update, it fails. It tells me to try and download the new version from mozilla's site. When I try to download the new version I get this: (C:\Users\John\AppData\Local\Temp could not be saved, because you cannot change the contents of that folder.)
    This is the same message I have been getting when I try to download other things off the net. (When I use other browsers to download I dont have this problem)

    Please help.
    It is getting worse
    Adobe flash player is crashing. I already uninstalled and re installed the latest ver. Also it is hanging randomly.
    Please help.

  • HT5312 the request for resetting security question is sent to an email which is unknown and not belonged to me

    I had an apple ID opened by an apple store a year ago. Since then I hadnt purchased any app from app store. Today i was doing it for the first time which I came across two security questions which i hadnt seen so far. I requested a reset but the email the instructions are sent to is one i dont know and doesnt belong to me. I even asked the store about it and they said they either didnt know the email address. Considering that I have my ID and my password, i wish to ask you to kindly unlock my account. I would provide any additional info that might be needed.
    Sincerely Yours
    AMJ

    The reset link will only show if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account. If you aren't getting the reset link then you don't have a rescue email address, and you won't be able to add one until you can answer 2 of your questions - you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the page that you posted from to add a rescue email address for potential future use

  • Changed Ulimits values for the Oracle user and getting error -bash: ulimit: max user processes: cannot modify limit: Operation not permitted when logging in.

    I'm trying to increate the ulimits for max user processes and open files for the oracle user.  I've set the values in limits.conf, /etc/profile and in oracle's environment scripts. Now when I log in as oracle I get the below errors. If I change the ulimits back to the original values errors go away but ulimits aren't changed.
    login as: oracle
    [email protected]'s password:
    Last login: Fri Mar  6 09:56:02 2015 from mtkadmin12
    You are logging onto an Oracle system.
    Kickstarted on: 2014-06-05
    -bash: ulimit: max user processes: cannot modify limit: Operation not permitted
    -bash: ulimit: max user processes: cannot modify limit: Operation not permitted
    [oracle@servername ~]$

    Thanks for the update.
    I modified the /etc/security/limits.d/90-nproc.conf and added a line for oracle and also modifed the oracle.sh file.  The ulimits are setting correctly when I su - oracle but they are still wrong when sshing in as oracle.
    [root@mtkdevorap11d-1 ~]# su - oracle
    [oracle@mtkdevorap11d-1 ~]$ ulimit -Ha
    core file size          (blocks, -c) unlimited
    data seg size           (kbytes, -d) unlimited
    scheduling priority             (-e) 0
    file size               (blocks, -f) unlimited
    pending signals                 (-i) 1030982
    max locked memory       (kbytes, -l) 94371840
    max memory size         (kbytes, -m) unlimited
    open files                      (-n) 65536
    pipe size            (512 bytes, -p) 8
    POSIX message queues     (bytes, -q) 819200
    real-time priority              (-r) 0
    stack size              (kbytes, -s) unlimited
    cpu time               (seconds, -t) unlimited
    max user processes              (-u) 16384
    virtual memory          (kbytes, -v) unlimited
    file locks                      (-x) unlimited
    [oracle@mtkdevorap11d-1 ~]$
    [oracle@mtkdevorap11d-2 ~]$ ssh mtkdevorap11d-1
    Last login: Mon Mar 16 13:04:16 2015 from mtkdevorap11d-2.conveydev.com
    You are logging onto an Oracle system.
    Kickstarted on: 2014-06-05
    [oracle@mtkdevorap11d-1 ~]$ ulimit -Ha
    core file size          (blocks, -c) unlimited
    data seg size           (kbytes, -d) unlimited
    scheduling priority             (-e) 0
    file size               (blocks, -f) unlimited
    pending signals                 (-i) 1030982
    max locked memory       (kbytes, -l) 64
    max memory size         (kbytes, -m) unlimited
    open files                      (-n) 4096
    pipe size            (512 bytes, -p) 8
    POSIX message queues     (bytes, -q) 819200
    real-time priority              (-r) 0
    stack size              (kbytes, -s) unlimited
    cpu time               (seconds, -t) unlimited
    max user processes              (-u) 16384
    virtual memory          (kbytes, -v) unlimited
    file locks                      (-x) unlimited
    [oracle@mtkdevorap11d-1 ~]$

  • ITunes saying "Your account has been accessed from a new computer or device, and you must verify your payment information before you can make purchases.For more informaion about account security."

    Whether I try to download a free or paid app. The roblem is I don't have that card anymore, I switched banks. I try to enter my new card info and I keep getting the same message.

    It means that is is the first time that the device that you are using has been used to make a purchase in the iTunes Store.
    I get the same message whenever I buy a new iPhone or iPad. It's normal.

  • Important!! Improve the life and performance of the battery.

    Reduce the operating temperature and increase battery life
    The battery in your notebook PC is designed to provide the necessary amount of energy for the processor while maintaining HP high safety standards. As a result, the battery may not charge or may stop providing power to the notebook when the battery temperature exceeds the specified, design safety level.
    If the battery life appears shorter than normal, the battery stops charging before it is 99%-100% full and the battery appears warmer than usual, the battery has most likely reached its designed "no charge" safety state. The battery will no longer charge until the temperature condition is corrected.
    Try one of the following methods to correct the battery temperature:
    When charging the battery, do not use applications that require large amounts of system resources such as graphic or memory intensive applications, heavy and extended hard drive usage.
    Turn off your notebook and remove the battery to allow it to return to a safe operating temperature.
    Make sure the notebook PC is operating on a hard surface. Using the Notebook PC on a bed or sofa may block the vents causing the notebook PC to heat up and shut down.
    By taking these steps, the battery will return to its normal operating temperature range and continue to charge and discharge as designed.
    Calibrating the battery while PC not in use
    Recalibrating the battery requires a cycle of a complete charge and a complete discharge. To recalibrate the battery while using the PC is not is use complete the following steps.
    The recalibration may take 1-5 hours depending on the age of the battery and the configuration of the notebook PC you own. The PC should not be used while you perform the following steps. Completing all the following steps will also calibrate the battery so that the power meter readings are accurate.
    Shut down the notebook PC
    Connect the AC Adapter to the notebook PC and to an electrical socket.
    Charge the Notebook PC until the Battery Charge light is Green. This indicates the battery is completely charged.
    Press and release the Power Button to start the computer.
    Press the F8 key several times when the HP Logo displays.
    When the Windows Advanced Startup Menu displays, select the Startup in Safe Mode option.
    Remove the AC power adapter from the notebook PC.
    Allow the battery to discharge completely until the notebook PC turns off.
    The battery is now calibrated and the battery level reading on the power meter is now accurate.
    If you are not using the notebook regularly then please unplug the AC adapter and shut down the notebook. By following these practices will improve the life and performance of the battery. Here is a quick list of Do's and Don'ts for the care of your Li-On batteries:
    Do's
    When you receive a new Notebook or Tablet PC, leave the battery to fully charge overnight.
    Condition a new battery by using it until it is fully discharged, and then re-charge it fully. Doing this once a month will help to accurately calibrate your battery.
    Always ensure the battery is recharged as soon as possible after it becomes fully discharged. A battery will be permanently damaged if left for an extended length of time in a fully discharged state.
    Remember that a Lithium-Ion battery will slowly deteriorate; a new battery will always perform better than one that is 6-months old.
    Remember that the battery half-life is rated for a certain total number of charge/discharge cycles (see your User Manual or Quick Start Guide for the rating). For example, a battery that is rated for 3 hours and 500 charge/discharge cycles, will still be considered as within specification, even if it only lasts for 1 hour 45 minutes after 500 charge/discharge cycles.
    Heat is the worst enemy of a battery. Allow plenty of air to circulate around the Notebook/Tablet PC, so that the battery is kept as cool as possible when charging and also when in use. If provided, use the integrated 'legs' under the Notebook to raise the notebook and improve air circulation.
    Remove the battery if storing for several months (the battery should be at approximately 50% charge or higher).
    If you use a NoteBus or if charging your Notebooks or Tablet PCs in a confined space, allow for adequate ventilation in order to keep the batteries as cool as possible.
    Don'ts
    Do Not - Expose the battery to excessive heat or cold (i.e. outside the range of 10-35 degrees Centigrade ambient).
    Do Not - Store the battery in a fully charged state (store batteries with about 50% charge).
    Do Not - Allow a nearly flat battery to be unused for more than a month or so. The battery will slowly discharge until it becomes fully discharged and this will permanently damage the battery cells.
    Do Not - Charge your Notebook/Tablet PC inside a carry case - the battery may overheat.
    Do Not - Charge your Notebook/Tablet PC when stacked on top of each other - the battery may overheat.
    Remember: Your battery is slowly degrading all the time, even if it is not used. Keeping your battery as cool as possible will slow down this degradation considerably.
    For more information please visit the following links:
    How to Improve the Performance of the Battery
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01297640&cc=us&lc=en&dlc=en
    10 Tips to make your Laptop Battery last longer
    http://labnol.blogspot.com/2006/03/10-tips-to-make-your-laptop-battery.html
    Disclaimer: By clicking on the link above, you will be leaving HP.com to visit a web site that is not maintained by HP and where the HP privacy policy does not apply. This link is provided to you for convenience and does not serve as an endorsement by HP of any information or contacts that you may find on this non-HP site.
    ||-Although I am working on behalf of HP, I am speaking for myself and not for HP.-||
    //Click on Kudos if my reply was helpful and answered your question//
    ||-If my answer solved the problem please mark the topic as the accepted solution-||

    I hope the above article will help you guys..
    ||-Although I am working on behalf of HP, I am speaking for myself and not for HP.-||
    //Click on Kudos if my reply was helpful and answered your question//
    ||-If my answer solved the problem please mark the topic as the accepted solution-||

  • Why is my macbook pro running so slow and how do I improve the speed?

    why is my macbook pro running so slow and how do I improve the speed?

    Write off the MS stuff as indicators for now--starting with Office 2008, they developed very long launch times. The time to launch 2008 on my old 1.25Ghz G4 and my MBP 2.2G are virtually the same. Even document opens/saves are slow compared to Office 2004 and earlier.
    1) You have adequate hard drive space so that eliminates one of the usual suspects.
    2) Check for runaway background processes. Quit all running user applications so the computer is at normal idle. Find Activity Monitor in Applications > Utilities and launch it. If you've not run it before, change the "Show" pulldown at the top of the AM window from its default of "User Processes" to "All Processes." There is a column for "%CPU." Click that column header to sort by CPU usage. Watch the processes "bubble" for about a minute to get a better picture of the usage.
    If any process is using more than about 25 percent of the CPU cycles while the computer is idling, post the names of the processes and we can see if they can be eliminated. My MBP shows nothing using more that about 5 percent on any given test run as long as I close all my user apps.
    3) If you have never done any sort of maintenance procedures, taht can slow you down. Simply restarting the computer a few times a week clear a lot of temporary files. You also may wish to review this article on the Mac OSX periodic maintenance scripts, which, if run, also do a lot of cleanup:
    http://thexlab.com/faqs/maintscripts.html
    There are other useful articles on file maintenance associated with the one. Here's the index:
    http://thexlab.com/faqs/faqs.html
    Check out articles with "Maintain" and "Tuning" in the titles.
    4) Use Disk Utility to check the SMART Status of your hard drive. A failing drive can make things slow before it makes things stop.

  • How to improve the performance of Swing Application?

    My project is a Swing based application which uses java 1.2.1 API.
    The problem is my application is very slow and gets hung many times, inspite of the system configuration being good ( 256 Mb RAM, 733MHz processor).
    Do give me some suggestions to improve the performance.
    Regards,
    sudhakar

    The system configuration is more than enough to run java applications.
    You are probalbly doing time-consuming operations in the event thread. Which blocks the event thread and the gui seems not to be responding. If you you have a very bad design.
    Use a thread for time consuming operations.

  • R12: "FRM-92101:There was a failure in the Forms Server during startup"

    LINUX VERSION:
    [oracle@USSLTC3118V StageR12]$ cat /etc/*-release
    Red Hat Enterprise Linux Server release 5.4 (Tikanga)
    LOGS:
    $/ebs/oracle/VIS/inst/apps/VIS_ussltc3118v/logs/ora/10.1.3/j2ee/forms/forms_default_group_1/application.log:
    12/06/07 08:55:15.661 formsweb: Forms session <11> aborted: unable to communicate with runtime process.
    12/06/07 08:55:15.663 formsweb: Forms session <11> exception stack trace:
    java.lang.StringIndexOutOfBoundsException: String index out of range: -6
    at java.lang.String.substring(String.java:1938)
    at oracle.forms.servlet.RunformProcess.connect(Unknown Source)
    at oracle.forms.servlet.RunformProcess.dataToRunform(Unknown Source)
    at oracle.forms.servlet.RunformSession.dataToRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    12/06/07 10:02:25.980 formsweb: Forms session <12> aborted: unable to communicate with runtime process.
    12/06/07 10:02:25.980 formsweb: Forms session <12> exception stack trace:
    java.lang.StringIndexOutOfBoundsException: String index out of range: -6
    at java.lang.String.substring(String.java:1938)
    at oracle.forms.servlet.RunformProcess.connect(Unknown Source)
    at oracle.forms.servlet.RunformProcess.dataToRunform(Unknown Source)
    at oracle.forms.servlet.RunformSession.dataToRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    [root@USSLTC3118V VIS]# cat ./inst/apps/VIS_ussltc3118v/logs/ora/10.1.3/opmn/forms_default_group_1/formsstd.out
    12/05/31 11:52:36 FormsServlet init():
    configFileName: /ebs/oracle/VIS/inst/apps/VIS_ussltc3118v/ora/10.1.2/forms/server/appsweb.cfg
    testMode: false
    12/05/31 11:52:36 Oracle Containers for J2EE 10g (10.1.3.4.0) initialized
    12/06/05 16:23:05 ListenerServlet init()
    12/06/05 16:23:09 Forms session <1> failed during startup: no response from runtime process
    12/06/05 16:23:32 Forms session <2> aborted: unable to communicate with runtime process.
    12/06/06 09:23:04 Forms session <3> aborted: unable to communicate with runtime process.
    12/06/06 10:48:47 Forms session <4> aborted: unable to communicate with runtime process.
    12/06/06 12:43:05 Forms session <5> aborted: unable to communicate with runtime process.
    12/06/06 19:48:33 Forms session <6> aborted: unable to communicate with runtime process.
    12/06/06 19:49:04 Forms session <7> aborted: unable to communicate with runtime process.
    12/06/07 08:43:26 Forms session <8> aborted: unable to communicate with runtime process.
    12/06/07 08:46:39 Forms session <9> aborted: unable to communicate with runtime process.
    12/06/07 08:52:56 Forms session <10> aborted: unable to communicate with runtime process.
    12/06/07 08:55:15 Forms session <11> aborted: unable to communicate with runtime process.
    12/06/07 10:02:25 Forms session <12> aborted: unable to communicate with runtime process.
    [root@USSLTC3118V VIS]#
    Solutions I Tried:
    REMOVE
    rpm -e openmotif21-2.1.30-11.EL5
    INSTALL
    rpm -i openmotif21-2.1.30-11.EL5.i386.rpm
    [root@USSLTC3118V lib]# make -f ins_forms.mk install
    ins_forms.mk:42: /forms/lib/env_forms.mk: No such file or directory
    ins_forms.mk:581: warning: overriding commands for target `-pure'
    ins_forms.mk:574: warning: ignoring old commands for target `-pure'
    ins_forms.mk:583: warning: overriding commands for target `-quantify'
    ins_forms.mk:576: warning: ignoring old commands for target `-quantify'
    ins_forms.mk:585: warning: overriding commands for target `-cov'
    ins_forms.mk:578: warning: ignoring old commands for target `-cov'
    ins_forms.mk:588: warning: overriding commands for target `-pure'
    ins_forms.mk:581: warning: ignoring old commands for target `-pure'
    ins_forms.mk:590: warning: overriding commands for target `-quantify'
    ins_forms.mk:583: warning: ignoring old commands for target `-quantify'
    ins_forms.mk:592: warning: overriding commands for target `-cov'
    ins_forms.mk:585: warning: ignoring old commands for target `-cov'
    ins_forms.mk:595: warning: overriding commands for target `-pure'
    ins_forms.mk:588: warning: ignoring old commands for target `-pure'
    ins_forms.mk:597: warning: overriding commands for target `-quantify'
    ins_forms.mk:590: warning: ignoring old commands for target `-quantify'
    ins_forms.mk:599: warning: overriding commands for target `-cov'
    ins_forms.mk:592: warning: ignoring old commands for target `-cov'
    make: *** No rule to make target `/forms/lib/env_forms.mk'. Stop.
    [root@USSLTC3118V lib]#
    Any insight as to what else shall I try?

    How do you get this error?
    Was this working before? If yes, any changes been done recently?
    Have you tried to run AutoConfig and see if it completes successfully?
    Please see these docs.
    R12: "FRM-92101: There Was a Failure in the Forms Server During Startup" Error When Executing EXECUTE_QUERY in Forms [ID 1111113.1]
    R12: "FRM-92101: There was failure in the Forms Server during startup" Error While Submitting Concurrent Requests [ID 867501.1]
    Users Receive FRM-92101 oracle.forms.net.ConnectionException Errors When Launching E-Business Suite Forms Responsibility and Function [ID 1258305.1]
    Forms are Erroring with FRM-92101:There was a failure in the forms server during start up. [ID 1433329.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Requisition notifications to Suppliers

    Dear All, How can PO requisition notify to suppliers for special requests form Iprocurement module , Specifically  for the  requisitions that auto create and do not come through  Buyers Regards Sai

  • Adobe CS6 Master Collection Trial and Adobe Download Assistant keeps freezing.

    I am downloading Adobe CS6 Master Collection Trial but Adobe Download Assistant keeps freezing.  I have tried to to start the download process over again, but keep running into the same issue.  Please help.

  • Change the default span in the iView

    Dear all, I have the following question: is it possible to somehow change the default span between the iView frame and the actual java iView inside of it, i.e.  I would really appreciate any helpful hint. Regards, Sybille

  • Business Area Error while doing GR(MIGO)

    Hi, I am unable to post GR because Business Area is missing during the GR . This is because BA is mandatory for the G/L. But I could find some PO's for which GR is posted successfully without Business Area event though FSG for the G/L have BA as mand

  • Is there a keyboard shortcut to Insert Link?

    So some options like Bold, Underline, Italics have keyboard shortcuts. Has any one figured out a keyboard shortcut to Insert Link? What about Insert Photo? What about a keyboard shortcut for pasting the text in the clipboard in as plain text?