Resource start timeout always at 60 seconds

Hello all,
I'm using clusterware for a standard database cluster. As my storage is NetApp I want to use snapdrive software to load dynamically LUN (3 per database). I've a script correctly working by hand. Time needed for LUNs to be attached is variable between 80 and 120 seconds. Resource is called database.ofa.
crs_profile -print database.ofa
NAME=database.ofa
TYPE=application
ACTION_SCRIPT=/app/oracle/product/crs/crs/public/act_snapdrive.pl
ACTIVE_PLACEMENT=0
AUTO_START=restore
CHECK_INTERVAL=450
DESCRIPTION=mantprd.ofa
FAILOVER_DELAY=0
FAILURE_INTERVAL=0
FAILURE_THRESHOLD=0
HOSTING_MEMBERS=
OPTIONAL_RESOURCES=
PLACEMENT=balanced
REQUIRED_RESOURCES=database
RESTART_ATTEMPTS=1
SCRIPT_TIMEOUT=450
START_TIMEOUT=0
STOP_TIMEOUT=0
UPTIME_THRESHOLD=7d
USR_ORA_ALERT_NAME=
USR_ORA_CHECK_TIMEOUT=0
USR_ORA_CONNECT_STR=/ as sysdba
USR_ORA_DEBUG=0
USR_ORA_DISCONNECT=false
USR_ORA_FLAGS=
USR_ORA_IF=
USR_ORA_INST_NOT_SHUTDOWN=
USR_ORA_LANG=
USR_ORA_NETMASK=
USR_ORA_OPEN_MODE=
USR_ORA_OPI=false
USR_ORA_PFILE=
USR_ORA_PRECONNECT=none
USR_ORA_SRV=mantprd
USR_ORA_START_TIMEOUT=0
USR_ORA_STOP_MODE=immediate
USR_ORA_STOP_TIMEOUT=0
USR_ORA_VIP=
Starting manually resource will fail. crsd.log reports:
2009-03-24 16:01:23.538: [  CRSRES][1510144352]0Attempting to start `database.ofa` on member `server01`
2009-03-24 16:02:26.537: [  CRSEVT][1510144352]0CAAMonitorHandler :: 0:Could not join /app/oracle/product/crs/crs/public/act_snapdrive.pl(start)
category: 1234, operation: scls_process_join, loc: childcrash, OS error: 0, other: Abnormal termination of the child
2009-03-24 16:02:26.537: [  CRSEVT][1510144352]0CAAMonitorHandler :: 0:Action Script /app/oracle/product/crs/crs/public/act_snapdrive.pl(start) timed out for database.ofa! (timeout=60)
2009-03-24 16:02:26.537: [  CRSAPP][1510144352]0StartResource error for database.ofa error code = -2
2009-03-24 16:03:29.559: [  CRSEVT][1510144352]0CAAMonitorHandler :: 0:Could not join /app/oracle/product/crs/crs/public/act_snapdrive.pl(stop)
category: 1234, operation: scls_process_join, loc: childcrash, OS error: 0, other: Abnormal termination of the child
2009-03-24 16:03:29.559: [  CRSEVT][1510144352]0CAAMonitorHandler :: 0:Action Script /app/oracle/product/crs/crs/public/act_snapdrive.pl(stop) timed out for database.ofa! (timeout=60)
2009-03-24 16:03:29.559: [  CRSAPP][1510144352]0StopResource error for database.ofa error code = -2
2009-03-24 16:03:29.572: [  CRSRES][1510144352]0X_OP_StopResourceFailed : Stop Resource failed
(File: rti.cpp, line: 1803
2009-03-24 16:03:29.573: [  CRSRES][1510144352][ALERT]0`database.ofa` on member `server01` has experienced an unrecoverable failure.
2009-03-24 16:03:29.573: [  CRSRES][1510144352]0Human intervention required to resume its availability.
Seems that timeout reported is always 60seconds I've manually changed for all resources options st=450 as shown above but always crs fails at 60 seconds.
Any hints to debug?
Thanks
Stefano

Hi,
for: "+I didn't run crs_register to update resource. Using crs_profile is not enough?+": YES, crs_profile creates a profile (only). You need to register the resource using crs_register to make it manageable by Oracle Clusterware:
[CLUSTERWARE]> crs_profile -create MyProfTest -t application
[CLUSTERWARE]> crs_stat -t |grep MyProfTest
[CLUSTERWARE]> touch /ora/clusterware/crs/public/MyProfTest.scr
[CLUSTERWARE]> crs_register MyProfTest
[CLUSTERWARE]> crs_stat -t |grep MyProfTest
MyProfTest application OFFLINE OFFLINE
Concluding, if crs_profile is used on a resource that has been registered already, the changes would only change the profile. To make the changes take effect, you would need to re-register the resource with crs_register -update. Now, if it is only a minor update, you can actually use crs_register directly and change the attribute that needs to be changed and re-register the resource in one go:
Usage: crs_register resource_name [-dir directory_path] [...] [-u] [-f] [-q]
crs_register resource_name -update [-a action_script]
[-d description] [-h hosting_members] [-r required_resources]
[-l optional_resources] [-p placement_policy]
[-o as=auto_start,ci=check_interval,ft=failure_threshold,
fi=failure_interval,ra=restart_attempts,fd=failover_delay,
st=script_timeout,ap=active_placement,
ut=uptime_threshold,*rt=start_timeout*,pt=stop_timeout] [-q]
Hope that helps. Thanks,
Markus

Similar Messages

  • InitialContext always takes 5 seconds on a WebLogic Cluster

    Hi,
    I want to create a context on a cluster to lookup a EJB with JNDI. This works well but it always take 5 seconds, When I put 1 of the managed servers down, it will take even longer.
    When I dont use a cluster it is really fast.
    I also already changed the cluster algo. but no change in performance.
    How can I speed up this initialContext.
    thanks
    protected static Context getInitialContext() throws NamingException {
    Environment env = new Environment();
    env.setInitialContextFactory( "weblogic.jndi.WLInitialContextFactory" );
    env.setProviderURL( "t3://localhost:7101");
    env.setRequestTimeout(1000L);
    env.setRMIClientTimeout(1000L);
    env.setEnableServerAffinity(true);
    env.setProviderURL( "t3://193.176.63.36,193.176.63.37:7001");
    env.setSecurityPrincipal( "weblogic");
    env.setSecurityCredentials( "weblogic1");
    return env.getInitialContext();
    }

    The problem is the so-called stringification process when you are locating objects. More information about this
    process can be found here: http://www.javaworld.com/jw-02-1999/jw-02-enterprise.html and the javadoc
    http://download.oracle.com/javase/1.4.2/docs/api/org/omg/IOP/IOR.html
    Take the following test case, here we are looking up three different object:
    - a JMS connection factory
    - a JDBC datasource (for which stringification is done)
    - a JMS Queue
    The JMS connection factory and the JMS Queue are present in the client classpath, through the wljmsclient.jar.
    The code for the test case looks as follows:
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import java.util.Hashtable;
    public class Test {
        private static Context context;
        private static Object lookup;
        public Test() {
        public static void main(String[] args) {
            Hashtable hashtable = new Hashtable();
            hashtable.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
            hashtable.put(Context.PROVIDER_URL, "t3://172.31.0.107:7002,172.31.0.107:7003");
            long begin = System.currentTimeMillis();
            try {
                context = new InitialContext(hashtable);
            } catch (NamingException e) {
                e.printStackTrace();
            long end = System.currentTimeMillis();
            long timeseconds = (end - begin) / 1000;
            System.out.println("initialcontext creation time " + timeseconds);
            begin = System.currentTimeMillis();
            try {
                lookup = context.lookup("jms/ConnectionFactory");
            } catch (NamingException e) {
                e.printStackTrace();
            end = System.currentTimeMillis();
            timeseconds = (end - begin) / 1000;
            System.out.println("lookup resource time " + timeseconds + ", object " + lookup);
            begin = System.currentTimeMillis();
            try {
                lookup = context.lookup("jdbc/exampleDS");
            } catch (NamingException e) {
                e.printStackTrace();
            end = System.currentTimeMillis();
            timeseconds = (end - begin) / 1000;
            System.out.println("lookup resource time " + timeseconds + ", object " + lookup);
            begin = System.currentTimeMillis();
            try {
                lookup = context.lookup("jms/VideotheekQueue");
            } catch (NamingException e) {
                e.printStackTrace();
            end = System.currentTimeMillis();
            timeseconds = (end - begin) / 1000;
            System.out.println("lookup resource time " + timeseconds + ", object " + lookup);
            begin = System.currentTimeMillis();
            try {
                lookup = context.lookup("jdbc/exampleDS");
            } catch (NamingException e) {
                e.printStackTrace();
            end = System.currentTimeMillis();
            timeseconds = (end - begin) / 1000;
            System.out.println("lookup resource time " + timeseconds + ", object " + lookup);
            begin = System.currentTimeMillis();
            try {
                lookup = context.lookup("ejb/Videotheek#model.logic.Videotheek");
            } catch (NamingException e) {
                e.printStackTrace();
            end = System.currentTimeMillis();
            timeseconds = (end - begin) / 1000;
            System.out.println("lookup resource time " + timeseconds + ", object " + lookup);
            Videotheek videotheek = (Videotheek) lookup;
            List<Persoon> personen = videotheek.getPersonen(null);
            if (personen != null) {
                for (Persoon persoon : personen) {
                    System.out.println(persoon);
    }When we run this the following output is generated:
    initialcontext creation time 0
    lookup resource time 0, object weblogic.jms.client.JMSConnectionFactory@d1fa5
    lookup resource time 4, object IOR:0000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000100000000000005c8000102000000000d3137322e33312e302e31303700001b5b00000090004245410801030000000012566964656f746865656b536572766572320000000000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000432383200000000014245412a000000100000000000000000379650739d9850a000000006000000010000002c0000000000010020000000030001002000010001050100010001010000000003000101000001010905010001000000190000003b0000000000000033687474703a2f2f3137322e33312e302e3130373a373030332f6265615f776c735f696e7465726e616c2f636c61737365732f00000000001f000000040000000300000020000000040000000100000021000000580001000000000001000000000000002200000000004000000000000806066781020101010000001f0401000806066781020101010000000f7765626c6f67696344454641554c5400000000000000000000000000000000004245410300000420000000000000000c726f756e642d726f62696e00000000000000000f6a6462632e6578616d706c65445300000000000200000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000100000000000001a0000102000000000d3137322e33312e302e31303700001b5b00000090004245410801030000000012566964656f746865656b536572766572320000000000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000432383200000000014245412a000000100000000000000000379650739d9850a000000005000000010000002c0000000000010020000000030001002000010001050100010001010000000003000101000001010905010001000000190000003b0000000000000033687474703a2f2f3137322e33312e302e3130373a373030332f6265615f776c735f696e7465726e616c2f636c61737365732f00000000001f000000040000000300000020000000040000000100000021000000580001000000000001000000000000002200000000004000000000000806066781020101010000001f0401000806066781020101010000000f7765626c6f67696344454641554c54000000000000000000000000000000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000100000000000001a0000102000000000d3137322e33312e302e31303700001b5a00000090004245410801030000000012566964656f746865656b536572766572310000000000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000432383200000000014245412a00000010000000000000000073e6496c7f4c736900000005000000010000002c0000000000010020000000030001002000010001050100010001010000000003000101000001010905010001000000190000003b0000000000000033687474703a2f2f3137322e33312e302e3130373a373030322f6265615f776c735f696e7465726e616c2f636c61737365732f00000000001f000000040000000300000020000000040000000100000021000000580001000000000001000000000000002200000000004000000000000806066781020101010000001f0401000806066781020101010000000f7765626c6f67696344454641554c540000000000000000000000000000000000000000001ce4c409
    lookup resource time 0, object VideotheekModule!VideotheekQueue
    lookup resource time 0, object IOR:0000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000100000000000005c8000102000000000d3137322e33312e302e31303700001b5b00000090004245410801030000000012566964656f746865656b536572766572320000000000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000432383200000000014245412a000000100000000000000000379650739d9850a000000006000000010000002c0000000000010020000000030001002000010001050100010001010000000003000101000001010905010001000000190000003b0000000000000033687474703a2f2f3137322e33312e302e3130373a373030332f6265615f776c735f696e7465726e616c2f636c61737365732f00000000001f000000040000000300000020000000040000000100000021000000580001000000000001000000000000002200000000004000000000000806066781020101010000001f0401000806066781020101010000000f7765626c6f67696344454641554c5400000000000000000000000000000000004245410300000420000000000000000c726f756e642d726f62696e00000000000000000f6a6462632e6578616d706c65445300000000000200000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000100000000000001a0000102000000000d3137322e33312e302e31303700001b5b00000090004245410801030000000012566964656f746865656b536572766572320000000000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000432383200000000014245412a000000100000000000000000379650739d9850a000000005000000010000002c0000000000010020000000030001002000010001050100010001010000000003000101000001010905010001000000190000003b0000000000000033687474703a2f2f3137322e33312e302e3130373a373030332f6265615f776c735f696e7465726e616c2f636c61737365732f00000000001f000000040000000300000020000000040000000100000021000000580001000000000001000000000000002200000000004000000000000806066781020101010000001f0401000806066781020101010000000f7765626c6f67696344454641554c54000000000000000000000000000000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000100000000000001a0000102000000000d3137322e33312e302e31303700001b5a00000090004245410801030000000012566964656f746865656b536572766572310000000000000000000044524d493a7765626c6f6769632e6a6462632e636f6d6d6f6e2e696e7465726e616c2e52656d6f746544617461536f757263653a30303030303030303030303030303030000000000432383200000000014245412a00000010000000000000000073e6496c7f4c736900000005000000010000002c0000000000010020000000030001002000010001050100010001010000000003000101000001010905010001000000190000003b0000000000000033687474703a2f2f3137322e33312e302e3130373a373030322f6265615f776c735f696e7465726e616c2f636c61737365732f00000000001f000000040000000300000020000000040000000100000021000000580001000000000001000000000000002200000000004000000000000806066781020101010000001f0401000806066781020101010000000f7765626c6f67696344454641554c540000000000000000000000000000000000000000001ce4c409As you can see the objects that do need to be stringified (what a word) do not take long to lookup but the datasource (weblogic.jdbc.common.internal._RemoteDataSource_Stub) does.
    The second time the datasource is looked-up it uses the already calculated stringification.

  • Photoshop CC 2014 closes when start up for a few seconds

    Hi,
    When I try to open the Photoshop CC 2014. It will close after it has started up for a few seconds without any error message dialog in the Photoshop or error log in Event Viewer.
    I have just subscribed for the package Photoshop & Light Room combo yesterday and tried to install the Photoshop CC 2014.
    I have already tried to figure it out for at least 10 hrs in 2 days by searching all the solutions to this kind of problems and tried every means I could do, but nothing really works.
    What I have already tried are as follows:
    1. Un-install the ps cc 2014 with clear preference option and re-install it again with Creative Cloud application, but no luck.
    2. Update Nvidia graphic driver, which it has already been up-to-date, no luck. I even update the windows using window update center, but still get the same problem.
    3. Use Adobe Creative Cloud Cleaner tool after un-install the program. The cleaner tool works fine with successful message and no error message in the log file. Then, I try installing the ps again, but no luck again.
    4. Use the License Update Service tool, but no luck.
    5. Delete the opm.db and lunch the Photoshop again, but no luck, same problem.
    ***6. Rename the folder SLStore to SLStore_old. Open the program and it will ask me to license the software by signing in with my adobe account, it "works" only for the first time. However, once I close the application and open it again, same problem occurs, the program just closes right after I open it again. Now, I have to rename the folder every time I want to use the Photoshop.
    (By the way, this problem happen the same for the LR and now I have to re-name the SLStore folder every time I want to use the LR as well)
    It seems to me that I have some kind of the license problem, but I cannot understand why? and how to fix this?
    I am using Window 7 Ultimate 64-bit SP1 on my VAIO laptop.
    The specifications are Intel(R) Core i7 CPU [email protected], 6.0GB of RAM. The GPU is NVIDIA GEFORCE GT 425M.
    I really need to use the program and that is why I decide to purchase for the package, please help resolve this.
    Any help, any recommendation would be appreciated.
    Thank you.

    I found the solution to this from these thread Re: Photoshop CC opens and then closes immediately. What gives? and Re: Photoshop CC Crashes/Closes within seconds of startup
    I did it and it works for me So, I think I should share this so people who have faced the same issue as I can give it a try.
    Basically, Just uninstall the Photoshop and Creative Cloud, then rename the folder SLCache to SLCache_old. Restart your computer once and then re-install everything again. (CC and PS)
    It should work.
    Thanks

  • Mac get hangs or frozen on start Up always

    Hi,
    The problem occurs after, when I have updated my mac mini to 10.8.4, when mac start it always hangs up and its mouse dosen't work, what i need to do then is to press power button to take machine in sleep mode, then again I need to press power button to wake up machine. After this it works normally.
    But Apple products should not provide such kind of updates. Your team should provide some solutions.
    Let me know if you can check my machine by taking it on remote.
    I have purchase machine in Nov 2012. And I am very disappointed with the latest update. It is very bad. You guys should help to solve this problem
    Regards,
    Moiz.

    Hello Moiz,
    We're just other users here trying to help, you can call Apple to try to get it fixed, but might try this...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    If that doesn't help Reinstall the OS.

  • Why does Firefox Start page always says I need to update, but it is already updated.

    Firefox Start Page always has this message: " You're not on the latest version of Firefox. Upgrade today to get the best of the Web!"
    I open Help/About Firefox, and it tells me "Firefox is up to date." Version 6.0.2 Why do I keep getting a message to update it?
    Thank you.

    Just what is happening? When you restore via iTunes, the computer reinstalls the IOS on the iPod. To do that the computer first contacts Apple to find what the latest firmware for your device and and then downloads it if a copy does not already exist on the computer.

  • Ichat starts to open, lingers a second, then 'unexpectedly' quits. I'm in Snow Leopard 10.6.8. I can't find the ichat plist in hte library, even though I've custom re-installed (even the hard way) and downloaded the latest upgrade. Que pasa?

    ichat starts to open, lingers a second, then 'unexpectedly' quits. I'm in Snow Leopard 10.6.8. I can't find the ichat plist in the library, even though I've custom re-installed (even the hard way) and downloaded the latest upgrade. Que pasa?

    crash report, not a reply:
    Process:         iChat [611]
    Path:            /Applications/iChat.app/Contents/MacOS/iChat
    Identifier:      com.apple.iChat
    Version:         5.0.3 (745)
    Build Info:      iChat-7450300~8
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [101]
    Date/Time:       2011-12-17 19:23:00.671 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          387052 sec
    Crashes Since Last Report:           18
    Per-App Interval Since Last Report:  65 sec
    Per-App Crashes Since Last Report:   18
    Anonymous UUID:                      D59E7670-AAAB-498C-AEBF-93B692A2DE09
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000004
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ...thesis.MacinTalkSynthesizer          0x00000001159e418d MEOWReader::MEOWReader(int, void const*, char) + 35
    1   ...thesis.MacinTalkSynthesizer          0x00000001159b4246 SpeechChannelManager::UseVoice(VoiceSpec*, __CFBundle*) + 430
    2   ...thesis.MacinTalkSynthesizer          0x00000001159daf14 SEUseVoice + 71
    3   ....speech.synthesis.framework          0x00007fff85d42d4a NewSpeechChannel + 617
    4   com.apple.AppKit                        0x00007fff86ebee35 -[NSSpeechSynthesizerVars setSpeechChannelWithVoiceCreator:voiceID:] + 125
    5   com.apple.AppKit                        0x00007fff86ebc56d -[NSSpeechSynthesizerVars setSpeechChannelWithVoiceIdentifier:] + 89
    6   com.apple.AppKit                        0x00007fff86ebce7c -[NSSpeechSynthesizer initWithVoice:] + 336
    7   com.apple.iChat                         0x000000010009da09 0x100000000 + 645641
    8   com.apple.iChat                         0x000000010001b3ae 0x100000000 + 111534
    9   com.apple.IMCore                        0x00007fff865fa14c _IMPersonStatusIsOnline + 34989
    10  com.apple.IMCore                        0x00007fff865f9fee _IMPersonStatusIsOnline + 34639
    11  com.apple.IMCore                        0x00007fff865f1b78 _IMPersonStatusIsOnline + 729
    12  com.apple.iChat                         0x00000001000066ad 0x100000000 + 26285
    13  com.apple.iChat                         0x000000010001ac60 0x100000000 + 109664
    14  com.apple.IMCore                        0x00007fff865ecdaa _IMPersonStatusFromFZPersonStatus + 1525
    15  com.apple.CoreFoundation                0x00007fff8512493c __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff8512480d -[NSInvocation invoke] + 141
    17  com.apple.CoreFoundation                0x00007fff851406e1 -[NSInvocation invokeWithTarget:] + 49
    18  com.apple.iChat.IMUtils                 0x00007fff859d82f7 -[IMLocalObject _handleInvocation:] + 182
    19  com.apple.iChat.IMUtils                 0x00007fff859d7e6f _IMRDeliverComponentArray + 138
    20  com.apple.iChat.IMUtils                 0x00007fff859d7dba _XDeliverComponentArray + 119
    21  com.apple.iChat.IMUtils                 0x00007fff859d7d23 IMRemoteObjectsMIG_server + 52
    22  com.apple.iChat.IMUtils                 0x00007fff859d7c55 _IMRServerPortCallback + 120
    23  com.apple.CoreFoundation                0x00007fff8511365e __CFMachPortPerform + 366
    24  com.apple.CoreFoundation                0x00007fff850eb6b1 __CFRunLoopRun + 5201
    25  com.apple.CoreFoundation                0x00007fff850e9d8f CFRunLoopRunSpecific + 575
    26  com.apple.HIToolbox                     0x00007fff87b757ee RunCurrentEventLoopInMode + 333
    27  com.apple.HIToolbox                     0x00007fff87b755f3 ReceiveNextEventCommon + 310
    28  com.apple.HIToolbox                     0x00007fff87b754ac BlockUntilNextEventMatchingListInMode + 59
    29  com.apple.AppKit                        0x00007fff869f2eb2 _DPSNextEvent + 708
    30  com.apple.AppKit                        0x00007fff869f2801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    31  com.apple.AppKit                        0x00007fff869b868f -[NSApplication run] + 395
    32  com.apple.AppKit                        0x00007fff869b13b0 NSApplicationMain + 364
    33  com.apple.iChat                         0x0000000100002da0 0x100000000 + 11680
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff82939c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8293badd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8293b7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8293b2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8293ac08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8293aaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff8293aa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8293ae3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8293aaa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff8293aa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8293ae3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8293aaa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00000001010f2200  rbx: 0x00000001004c6670  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00000001010f2200  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfbf90  rsp: 0x00007fff5fbfbf60
       r8: 0x0000000000000017   r9: 0x00000001010f9a00  r10: 0x0000000000007000  r11: 0x0000000000000001
      r12: 0x00000001010f2200  r13: 0x00000001010f2200  r14: 0x0000000000000000  r15: 0x00000001004c70e0
      rip: 0x00000001159e418d  rfl: 0x0000000000010206  cr2: 0x0000000000000004

  • TS1717 I can't access Itunes Store via my Itunes. When Itunes start, CPU always 100%, I've tried uninstall and reinstall Itunes but it seems to be useless. Please help !!!

    I can't access Itunes Store via my Itunes. When Itunes start, CPU always 100%, I've tried uninstall and reinstall Itunes but it seems to be useless. Please help !!!

    I can't access Itunes Store via my Itunes.
    Is iTunes endlessly saying "Accessing iTunes Store"? Or is something a bit different going on?

  • HELP!!  I will click on itunes and it will start loading for about 2 seconds...

    So I just downloaded the new itunes, and immediately after it started acting up.  I would click on it, it would start loading for about 3 seconds, and then it would completely die.  I have tried EVERYTHING I can think of to try to fix this, but of no avail.  Can someone help me??

    So I just downloaded the new itunes, and immediately after it started acting up.  I would click on it, it would start loading for about 3 seconds, and then it would completely die.
    Are you getting any sort of error message, Al? if so, what does it say? (Precise text, please.)

  • On the pages app on my IPad, how do I start my header on the second page?

    On the pages app on my IPad, how do I start my header on the second page?

    You can't. The iOS and Mac OS X versions of the same application are separate products, and where applicable, purchases.
    (65818)

  • BAM-00553: Resources start operation for destination jms/BAMTopic failed

    Hi ,
    im trying to subscribe to a JMS topic created in a different machine(OSB+weblogic) from BAM Enterprise Message sources .Bam is intalled in a different machine along with soa suite.
    when i try to subscribe to that topic im facing this issue BAM-00553: Resources start operation for destination jms/BAMTopic failed.
    Please suggest me on how to solve this problem.
    please share me any notes on how to subscribe to JMS Topic from Bam Enterprise message sources( Note: JMS topic and BAM are availabe in different machines)
    Any Suggestions are appreciated!
    Thanks,
    Karthik

    Hi ,
    im trying to subscribe to a JMS topic created in a different machine(OSB+weblogic) from BAM Enterprise Message sources .Bam is intalled in a different machine along with soa suite.
    when i try to subscribe to that topic im facing this issue BAM-00553: Resources start operation for destination jms/BAMTopic failed.
    Please suggest me on how to solve this problem.
    please share me any notes on how to subscribe to JMS Topic from Bam Enterprise message sources( Note: JMS topic and BAM are availabe in different machines)
    Any Suggestions are appreciated!
    Thanks,
    Karthik

  • Error in EMS - Test failed - BAM-00553: Resources start operation

    All:
    I am setting up a JMS Module with Foreign Server. I have created 2 Modules....the 2nd one is exactly similar as the first one.
    I get an error: Test failed - BAM-00553: Resources start operation for destination jms/BAM01Topic failed when I do the Test for the EMS in BAM Architect.
    I have restarted BAM Managed Server and also the WLS server...doesn't help.
    Here are the config files:
    This works:
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-jms xmlns="http://xmlns.oracle.com/weblogic/weblogic-jms" xmlns:sec="http://xmlns.oracle.com/weblogic/security" xmlns:wls="http://xmlns.oracle.com/weblogic/security/wls" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-jms http://xmlns.oracle.com/weblogic/weblogic-jms/1.0/weblogic-jms.xsd">
    <foreign-server name="BAM_EBIZ_FOREIGN">
    <default-targeting-enabled>true</default-targeting-enabled>
    <foreign-destination name="BAM_OM_EBIZ">
    <local-jndi-name>jms/BAMEBIZTopic</local-jndi-name>
    <remote-jndi-name>Topics/XX_OM_MONITOR_Q</remote-jndi-name>
    </foreign-destination>
    <foreign-connection-factory name="BAM_EBIZ_CF">
    <local-jndi-name>jms/BAMEBIZTopicCF</local-jndi-name>
    <remote-jndi-name>TopicConnectionFactory</remote-jndi-name>
    </foreign-connection-factory>
    <initial-context-factory>oracle.jms.AQjmsInitialContextFactory</initial-context-factory>
    <jndi-property>
    <key>datasource</key>
    <value>jdbc/db/EBSAM</value>
    </jndi-property>
    </foreign-server>
    </weblogic-jms>
    This doesn't:
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-jms xmlns="http://xmlns.oracle.com/weblogic/weblogic-jms" xmlns:sec="http://xmlns.oracle.com/weblogic/security" xmlns:wls="http://xmlns.oracle.com/weblogic/security/wls" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-jms http://xmlns.oracle.com/weblogic/weblogic-jms/1.0/weblogic-jms.xsd">
    <foreign-server name="BAM001_FOREIGN">
    <default-targeting-enabled>true</default-targeting-enabled>
    <foreign-destination name="BAM001_EBIZ">
    <local-jndi-name>jms/BAM01Topic</local-jndi-name>
    <remote-jndi-name>Topics/XX_OM_BAM01_Q</remote-jndi-name>
    </foreign-destination>
    <foreign-connection-factory name="BAM001_EBIZ_CF">
    <local-jndi-name>jms/BAM01TopicCF</local-jndi-name>
    <remote-jndi-name>TopicConnectionFactory</remote-jndi-name>
    </foreign-connection-factory>
    <initial-context-factory>oracle.jms.AQjmsInitialContextFactory</initial-context-factory>
    <jndi-property>
    <key>datasource</key>
    <value>jdbc/db/EBSAM</value>
    </jndi-property>
    </foreign-server>
    </weblogic-jms>
    Any help will be greatly appreciated.
    Santanu

    Deepan,
    Here are the exports for EMS
    <?xml version="1.0"?>
    <OracleBAMExport Version="2025">
    <EMS Version="2" Name="FINISH_PAY_HIST" ID="8"^M
    <EnterpriseMessageSource version="6"><Description><EMSType>EMST.ORACLE</EMSType><Location><Part1>weblogic.jndi.WLInitialContextFactory</Part1>
    <Part2>t3://uslx46c.intranet.local:9001</Part2>
    <Part3>jms/BAMEBIZTopicCF</Part3>
    <Part4>jms/BAMEBIZTopic</Part4>
    <Part5>aiujd16</Part5>
    <Part6>###3aYwb6Ww68LmirhFwkn5I8wn7OxTPrkzUqM34Y6s1tI=</Part6>
    <Part7>8</Part7>
    <Part8>TEMP1</Part8>
    <Part9/>
    <Part10>/Test DO/FINISH_PAY_HIST</Part10>
    <Part11>1</Part11>
    <Part12>1</Part12>
    <Part13>1</Part13>
    <Part14>Yes</Part14>
    <Part15/>
    <Part16/>
    </Location><Fields><Field System="0"><ID>DummyName</ID><Key>off</Key><ProvidersName>DummyName</ProvidersName><DisplayName>DummyName</DisplayName><Type>String</Type><MaxSize>0</MaxSize><PackingSpec Type="XML"><BatchNamespaceURI/><MsgNamespaceURI/><BatchNode/><RootNode>ORDER</RootNode><Path/><DTPattern/><DTLanguage/><DTCountry/><DTVariant/><Fields Type="Tags"><Field Key="true" Type="String"><Name>EXTRACT_WEEK</Name><DisplayName>EXTRACT_WEEK</DisplayName></Field><Field Key="true" Type="String"><Name>EXTRACT_TYPE</Name><DisplayName>EXTRACT_TYPE</DisplayName></Field><Field Key="true" Type="String"><Name>ORG_ID</Name><DisplayName>ORG_ID</DisplayName></Field><Field Key="true" Type="String"><Name>ORDER_NUMBER</Name><DisplayName>ORDER_NUMBER</DisplayName></Field><Field Key="false" Type="String"><Name>RECEIPT_TYPE</Name><DisplayName>RECEIPT_TYPE</DisplayName></Field><Field Key="false" Type="String"><Name>PAYMENT_TYPE</Name><DisplayName>PAYMENT_TYPE</DisplayName></Field><Field Key="false" Type="String"><Name>BUCKET_HIGH</Name><DisplayName>BUCKET_HIGH</DisplayName></Field><Field Key="false" Type="String"><Name>BUCKET</Name><DisplayName>BUCKET</DisplayName></Field><Field Key="false" Type="String"><Name>ELAPSED_TIME</Name><DisplayName>ELAPSED_TIME</DisplayName></Field></Fields></PackingSpec></Field></Fields></Description></EnterpriseMessageSource>^M
    </EMS>
    </OracleBAMExport>
    <?xml version="1.0"?>
    <OracleBAMExport Version="2025">
    <EMS Version="2" Name="FINISH_PAY_HIST1" ID="9"^M
    <EnterpriseMessageSource version="6"><Description><EMSType>EMST.ORACLE</EMSType><Location><Part1>weblogic.jndi.WLInitialContextFactory</Part1>
    <Part2>t3://uslx46c.intranet.local:9001</Part2>
    <Part3>jms/BAM01TopicCF</Part3>
    <Part4>jms/BAM01Topic</Part4>
    <Part5>aiujd16</Part5>
    <Part6>###ojE/zWMN2kMfDgtjuKomSBqC7TiPgDCGT5rrmlH4yXs=</Part6>
    <Part7>8</Part7>
    <Part8>TEMP1</Part8>
    <Part9/>
    <Part10>/Test DO/FINISH_PAY_HIST1</Part10>
    <Part11>1</Part11>
    <Part12>1</Part12>
    <Part13>1</Part13>
    <Part14>Yes</Part14>
    <Part15/>
    <Part16/>
    </Location><Fields><Field System="0"><ID>DummyName</ID><Key>off</Key><ProvidersName>DummyName</ProvidersName><DisplayName>DummyName</DisplayName><Type>String</Type><MaxSize>0</MaxSize><PackingSpec Type="XML"><BatchNamespaceURI/><MsgNamespaceURI/><BatchNode/><RootNode>ORDER</RootNode><Path/><DTPattern/><DTLanguage/><DTCountry/><DTVariant/><Fields Type="Tags"><Field Key="true" Type="String"><Name>EXTRACT_WEEK</Name><DisplayName>EXTRACT_WEEK</DisplayName></Field><Field Key="true" Type="String"><Name>EXTRACT_TYPE</Name><DisplayName>EXTRACT_TYPE</DisplayName></Field><Field Key="true" Type="String"><Name>ORG_ID</Name><DisplayName>ORG_ID</DisplayName></Field><Field Key="true" Type="String"><Name>ORDER_NUMBER</Name><DisplayName>ORDER_NUMBER</DisplayName></Field><Field Key="false" Type="String"><Name>RECEIPT_TYPE</Name><DisplayName>RECEIPT_TYPE</DisplayName></Field><Field Key="false" Type="String"><Name>PAYMENT_TYPE</Name><DisplayName>PAYMENT_TYPE</DisplayName></Field><Field Key="false" Type="String"><Name>BUCKET_HIGH</Name><DisplayName>BUCKET_HIGH</DisplayName></Field><Field Key="false" Type="String"><Name>BUCKET</Name><DisplayName>BUCKET</DisplayName></Field><Field Key="false" Type="String"><Name>ELAPSED_TIME</Name><DisplayName>ELAPSED_TIME</DisplayName></Field></Fields></PackingSpec></Field></Fields></Description></EnterpriseMessageSource>^M
    </EMS>
    </OracleBAMExport>

  • Error #1502: timeout period of 15 seconds. not a long calculation

    Hi guys,
    I got a strange problem of Error #1502. I don't do a long calculation. i tried to debug step by step, but can not find any possible cause yet.
    I took three stack traces:
    y::setUpBean( Bean{ source:
    RestaurantView206.TitleWindowSkin207._TitleWindowSkin_Group1.contents.contentGroup.HGroup 216.viewport.viewStack.NavigatorContent235.SkinnableContainerSkin236.contentGroup.VPanel69 5.PanelSkin696._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt707.SkinnableContainerSkin708.contentGroup.MenusView719._MenusView_VPanel2,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView206.TitleWindowSkin207._TitleWindowSkin_Group1.contents.contentGroup.HGroup 216.viewport.viewStack.NavigatorContent235.SkinnableContainerSkin236.contentGroup.VPanel69 5.PanelSkin696._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt707.SkinnableContainerSkin708.contentGroup.MenusView719._MenusView_VPanel2.PanelSkin880. _PanelSkin_Group1.contents.contentGroup.VGroup888.DisabledGroup890,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView206.TitleWindowSkin207._TitleWindowSkin_Group1.contents.contentGroup.HGroup 216.viewport.viewStack.NavigatorContent235.SkinnableContainerSkin236.contentGroup.VPanel69 5.PanelSkin696._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt707.SkinnableContainerSkin708.contentGroup.MenusView719._MenusView_VPanel2.PanelSkin880. _PanelSkin_Group1.contents.contentGroup.VGroup888.DisabledGroup890._MenusView_MenuCategory Component1,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView206.TitleWindowSkin207._TitleWindowSkin_Group1.contents.contentGroup.HGroup 216.viewport.viewStack.NavigatorContent235.SkinnableContainerSkin236.contentGroup.VPanel69 5.PanelSkin696._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt707.SkinnableContainerSkin708.contentGroup.MenusView719._MenusView_VPanel3,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView206.TitleWindowSkin207._TitleWindowSkin_Group1.contents.contentGroup.HGroup 216.viewport.viewStack.NavigatorContent235.SkinnableContainerSkin236.contentGroup.VPanel69 5.PanelSkin696._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt707.SkinnableContainerSkin708.contentGroup.MenusView719._MenusView_VPanel3.PanelSkin980. _PanelSkin_Group1.contents.contentGroup.VGroup988.DisabledGroup990,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView206.TitleWindowSkin207._TitleWindowSkin_Group1.contents.contentGroup.HGroup 216.viewport.viewStack.NavigatorContent235.SkinnableContainerSkin236.contentGroup.VPanel69 5.PanelSkin696._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt707.SkinnableContainerSkin708.contentGroup.MenusView719._MenusView_VPanel3.PanelSkin980. _PanelSkin_Group1.contents.contentGroup.VGroup988.DisabledGroup990._MenusView_RegularMenuI temComponent1,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView206.TitleWindowSkin207._TitleWindowSkin_Group1.contents.contentGroup.HGroup 216.viewport.viewStack.NavigatorContent235.SkinnableContainerSkin236.contentGroup.VPanel69 5.PanelSkin696._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt707.SkinnableContainerSkin708.contentGroup.MenusView719._MenusView_VPanel3.PanelSkin980. _PanelSkin_Group1.contents.contentGroup.VGroup988.DisabledGroup990._MenusView_RegularMenuI temComponent1.FormItem1033._RegularMenuItemComponent_HGroup2.HGroup1036.menuItemProperties ,
    name: null } )
    Error: Error #1502: A script has executed for longer than the default
    timeout period of 15 seconds.
             at org.swizframework.core::BeanFactory/isPotentialInjectionTarget()[/
    projects/swiz-framework/src/org/swizframework/core/BeanFactory.as:434]
             at org.swizframework.core::BeanFactory/setUpEventHandler()[/projects/
    swiz-framework/src/org/swizframework/core/BeanFactory.as:456]
             at org.swizframework.core::BeanFactory/setUpEventHandlerSysMgr()[/
    projects/swiz-framework/src/org/swizframework/core/BeanFactory.as:486]
             at flash.display::DisplayObjectContainer/addChildAt()
             at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::
    $addChildAt()
             at mx.core::UIComponent/addChildAt()
             at flashx.textLayout.container::ContainerController/addTextLine()
             at flashx.textLayout.container::ContainerController/http://
    ns.adobe.com/textLayout/internal/2008::updateCompositionShapes()
             at flashx.textLayout.compose::StandardFlowComposer/
    updateCompositionShapes()
             at flashx.textLayout.compose::StandardFlowComposer/
    updateToController()
             at flashx.textLayout.compose::StandardFlowComposer/
    updateAllControllers()
             at flashx.textLayout.container::TextContainerManager/
    updateContainer()
             at spark.components::RichEditableText/updateDisplayList()
             at mx.core::UIComponent/validateDisplayList()
             at mx.managers::LayoutManager/validateClient()
             at mx.core::UIComponent/validateNow()
             at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/
    internal::validateBaselinePosition()
             at spark.components.supportClasses::SkinnableComponent/
    getBaselinePositionForPart()
             at spark.components.supportClasses::SkinnableTextBase/get
    baselinePosition()
             at mx.containers::FormItem/updateDisplayList()
             at mx.core::UIComponent/validateDisplayList()
             at mx.core::Container/validateDisplayList()
             at mx.managers::LayoutManager/validateDisplayList()
             at mx.managers::LayoutManager/doPhasedInstantiation()
             at mx.managers::LayoutManager/doPhasedInstantiationCallback()
            BeanFactory::setUpBean( Bean{ source:
    RestaurantView203.TitleWindowSkin204._TitleWindowSkin_Group1.contents.conte
    ntGroup.HGroup213.viewport.viewStack.NavigatorContent232.SkinnableContainerSkin233.content Group.VPanel692.PanelSkin693._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack. NavigatorContent704.SkinnableContainerSkin705.contentGroup.MenusView716._MenusView_VPanel3 ,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView203.TitleWindowSkin204._TitleWindowSkin_Group1.contents.contentGroup.HGroup 213.viewport.viewStack.NavigatorContent232.SkinnableContainerSkin233.contentGroup.VPanel69 2.PanelSkin693._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt704.SkinnableContainerSkin705.contentGroup.MenusView716._MenusView_VPanel3.PanelSkin977. _PanelSkin_Group1.contents.contentGroup.VGroup985.DisabledGroup987,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView203.TitleWindowSkin204._TitleWindowSkin_Group1.contents.contentGroup.HGroup 213.viewport.viewStack.NavigatorContent232.SkinnableContainerSkin233.contentGroup.VPanel69 2.PanelSkin693._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt704.SkinnableContainerSkin705.contentGroup.MenusView716._MenusView_VPanel3.PanelSkin977. _PanelSkin_Group1.contents.contentGroup.VGroup985.DisabledGroup987._MenusView_RegularMenuI temComponent1,
    name: null } )
    BeanFactory::setUpBean( Bean{ source:
    RestaurantView203.TitleWindowSkin204._TitleWindowSkin_Group1.contents.contentGroup.HGroup 213.viewport.viewStack.NavigatorContent232.SkinnableContainerSkin233.contentGroup.VPanel69 2.PanelSkin693._PanelSkin_Group1.contents.contentGroup.menuDetailsViewStack.NavigatorConte nt704.SkinnableContainerSkin705.contentGroup.MenusView716._MenusView_VPanel3.PanelSkin977. _PanelSkin_Group1.contents.contentGroup.VGroup985.DisabledGroup987._MenusView_RegularMenuI temComponent1.FormItem1030._RegularMenuItemComponent_HGroup2.HGroup1033.menuItemProperties ,
    name: null } )
    Error: Error #1502: A script has executed for longer than the default
    timeout period of 15 seconds.
             at flashx.textLayout.compose::BaseCompose/fitLineToParcel()
             at flashx.textLayout.compose::ComposeState/composeNextLine()
             at flashx.textLayout.compose::BaseCompose/
    composeParagraphElementIntoLines()
             at flashx.textLayout.compose::ComposeState/composeParagraphElement()
             at flashx.textLayout.compose::BaseCompose/composeBlockElement()
             at flashx.textLayout.compose::BaseCompose/composeInternal()
             at flashx.textLayout.compose::ComposeState/composeInternal()
             at flashx.textLayout.compose::BaseCompose/composeTextFlow()
             at flashx.textLayout.compose::ComposeState/composeTextFlow()
             at flashx.textLayout.compose::StandardFlowComposer/http://
    ns.adobe.com/textLayout/internal/2008::callTheComposer()
             at flashx.textLayout.compose::StandardFlowComposer/internalCompose()
             at flashx.textLayout.compose::StandardFlowComposer/compose()
             at flashx.textLayout.container::TextContainerManager/compose()
             at flashx.textLayout.container::TextContainerManager/
    updateContainer()
             at spark.components::RichEditableText/updateDisplayList()
             at mx.core::UIComponent/validateDisplayList()
             at mx.managers::LayoutManager/validateClient()
             at mx.core::UIComponent/validateNow()
             at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/
    internal::validateBaselinePosition()
             at spark.components.supportClasses::SkinnableComponent/
    getBaselinePositionForPart()
             at spark.components.supportClasses::SkinnableTextBase/get
    baselinePosition()
             at mx.containers::FormItem/updateDisplayList()
             at mx.core::UIComponent/validateDisplayList()
             at mx.core::Container/validateDisplayList()
             at mx.managers::LayoutManager/validateDisplayList()
             at mx.managers::LayoutManager/doPhasedInstantiation()
             at mx.managers::LayoutManager/doPhasedInstantiationCallback()
    Error: Error #1502: A script has executed for longer than the default
    timeout period of 15 seconds.
             at mx.managers.layoutClasses::PriorityQueue/removeSmallestChild()
             at mx.managers::LayoutManager/validateClient()
             at mx.core::UIComponent/validateNow()
             at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/
    internal::validateBaselinePosition()
             at spark.components.supportClasses::SkinnableComponent/
    getBaselinePositionForPart()
             at spark.components.supportClasses::SkinnableTextBase/get
    baselinePosition()
             at mx.containers::FormItem/updateDisplayList()
             at mx.core::UIComponent/validateDisplayList()
             at mx.core::Container/validateDisplayList()
             at mx.managers::LayoutManager/validateDisplayList()
             at mx.managers::LayoutManager/doPhasedInstantiation()
             at mx.managers::LayoutManager/doPhasedInstantiationCallback()
             BeanFactory::setUpBean( Bean{ source:
    RestaurantView205.TitleWindowSkin206._TitleWindowSkin_Group1.contents.conte
    Any idea of how to solve the problem or how to find out the cause will be highly appreciated. My Flash builder profiler is not working today, that might help.
    Many thanks,
    Cheng Wei

    Thanks for your prompt reply.
    No, i am not. It is hard to create a simple demo here, but i can recreate it with my application. It is being very strange, it only happens to one MenuCategory(a concept from our application). I don't think screenshot will help here, but i will do some here. Is it possible to request a remote assistance(e.g. via TeamViewer, coming from java background, i sometimes find flex is hard to find out the cause of a problem)?
    1.good category
    The only bad category found so far, stuck when clicking on second category - Kids choice. Kids choice only has 4 menu items.
    Could be an application problem, but from the stack trace, i don't have an idea, where the problem is from yet.
    Your help is highly appreciated.
    Cheers,
    Cheng Wei

  • HT201412 ipad not turning on.On charging apple logo appears in between.But its not turning on,tried to restore by pressing start & home button for 10 seconds.But its not working.

    ipad not turning on.On charging apple logo appears in between.But its not turning on,tried to restore by pressing start & home button for 10 seconds.But its not working.

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Home button not working or unresponsive, fix
    http://appletoolbox.com/2013/04/home-button-not-working-or-unresponsive-fix/
    Fixing an iPad Home Button
    http://tinyurl.com/om6rd6u
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • Hi .after up dating my iphon5 to ios 8.1 and 8.1.1 my main cam dot wrong.dosnt work correctly.the cam frizing at the start for 10 sec.but second cam working normaly.

    hi .after up dating my iphon5 to ios 8.1 and 8.1.1 my main cam dot wrong.dost not  work correctly.the cam frizzing at the start for 10 sec.but second cam working normally.

    I hate being the bearer of bad news, but from what I have read on the Forum and FAQ, you will need to un-install Network Magic from all of your computers making sure that no NM settings folders are left behind under users.  Then unplug all wired computers and rebuild your network by re-installing NM  in each computer before connecting it to your router.  After you have added all of your wired computers, set up your wireless network and install NM and add each wireless computer.
    That is a lot of work.  I hope this helps.
    Gary

  • Videos stopping and starting every three to five seconds

    I am having problems downloading videos from U Tube and msn. I can't even download videos from the Apple Site. The videos from U Tube stop and start every 3 to 5 seconds. They resume after 3 to 5 seconds. I have downloaded the latest version of QuickTime. I have gone into preferences-advanced and changed the transport setup to custom; set transport protocol to http and post to 80. I have also clicked on the streaming tab; set the speed to one lower than the ISP connection and move th enable instant on slider 2-3 bars from the left. What else can I try?

    There is currently no official version of MSN Messenger for Mac that supports video, unfortunately-- you might try aMSN instead, but I haven't used it myself so can't comment on the video support:
    http://www.amsn-project.net/
    However, the built-in camera works fine for me on Skype (and Yahoo last time I tried, which was a while ago), which suggests something else might be wrong somewhere...

Maybe you are looking for

  • Work Order & Cost Center Commitment Management

    We have a business requirement to be able to view our work order commitments (Reqs and POs) from the work order as well as from the cost center assigned to the work order via a settlement rule. Our business users do not like the work order collecting

  • Berkeley  DB JE is getting hanged while calling environment sync method.

    Hi, I am developing an application in Java and I am using JE edition of Berkeley. I am facing an issue, during shutdown operation I am calling syn method of EntityStore class and Environment class. The EntityStore.sync() is getting completed but duri

  • Error while inserting xml data into table

    Hello I am running thid stored procedure and this compiles correctly , but when I try to execute it gives me a error, I have been trying this form the past 3 days , could anyone please help me ASAP SQL> CREATE OR REPLACE PROCEDURE loadxml12 AS 2 fil

  • Dreamweaver Help

    Hello, Every time I try to open Dreamweaver CS4 a message pops up that says: "Could not locate the Resources file in the Configuration folder. This file is required to run Dreamweaver. Please reinstall the application" Could you please help? I am run

  • Using Tabs for Master-Detail

    Hi. I've been searching some possibilities to navigate between pages having a master-detail relationship. One possible way is to use Breadcrumbs. Very easy to implement, but not very stylish. I thought about using tabs, but, is there a way to impleme