Stack overrun

Hi
I’m working on a script that reads a text file, creates objects from tags it finds using a recursive function, pushes these objects into an array, and then adds these to the layout. It works for up to about 400 objects, but above that I get a “Stack overrun” error. Is this InDesign’s way of telling me it has run out of memory?
Here is the first part of my code:
var myFile = File.openDialog("Choose a data file");
var listingString = "listing";
var myArray = [];
if((myFile != "") && (myFile != null)){
    var sourceFile = new File(myFile);
    sourceFile.open();
    var myString = sourceFile.read();
    sourceFile.close();
    var endIndex;
    var listingContents;
    var foundTags;
    var listing;
    var tagStart;
    var tagEnd;
    var tagContent;
    function checkString(startIndex){
        endIndex = myString.indexOf("</" + listingString + ">", startIndex);
        if(endIndex != -1){
            listingContents = myString.slice(startIndex + 2 + listingString.length, endIndex);
            foundTags = listingContents.match(/<[a-z ]+>/gi);
            listing = {};
            for(i = 0; i < foundTags.length; i++){
                tagStart = listingContents.indexOf(foundTags[i]) + foundTags[i].length + 1;
                tagEnd = listingContents.indexOf("</" + foundTags[i].substring(1)) - 1;
                tagContent = listingContents.slice(tagStart, tagEnd);
                listing[foundTags[i].substr(1, foundTags[i].length - 2)] = tagContent;
            myArray.push(listing);
            checkString(endIndex + 3 + listingString.length);
    checkString(myString.indexOf("<" + listingString + ">", 0));
Any suggestions on how I can fix it or optimise the code? I’m thinking of trying to split the string into multiple chunks and deal with one chunk at a time, but this seems like a clumsy workaround.
You may have guessed from the code that the source file I’m working with is XML, though because I don’t have much experience with XML and it seemed like much more work than what I’ve done here I went with this approach. I also thought this may be more flexible. Might working with it as true XML make a difference with the memory issue (if that’s what it is)?
I’m working in CS4 in Windows, but had the same problem in CS5 on a Mac that I tried.
I’d appreciate any help.

This is the reason:
function checkString {
if (..)
checkString
checkString
-- in each call, it calls itself at least once -- and possible twice.
Try using the native XML object wrapper instead! See http://jongware.mit.edu/idcs6js/pc_XML.html for the available functionality.
var sourceFile = new File(...);
    sourceFile.open();
    var myString = sourceFile.read();
    sourceFile.close();
myXml = new XML (myString);
// length is a *function* in XML!
alert (myXml.length());
This is sort of a chimeara, half Javascript, half XML, but it sounds like you can do all operations you want through this interface.

Similar Messages

  • CS3 / Javascript - Script Error 27: Stack overrun

    Hi
    I have a script who is running all the time (like an Idle). This script calls a method in my own plugin, this method execute an action in my plugin. During this action, I call another Javascript to checkout a document from a content management system.
    This means:
    - A running script (Idle) calls a method in my plugin written in C++
    - The plugin calls another Javascript to checkout the document while the first plugin (Idle) is still runnung.
    This generates an error 27, stack overrun. I have tried several possibilities (with and without a main function, with and without #targetengine and so on), but always the same error.
    - What can I do?
    - Is it possible to run another script during the execution of one?
    - How can I do that?
    - Can I run two Javascript in her own environments? I mean own stack, own main and so on...
    Thanks for any hint.
    Hans

    John is right, this is more of a plugin/SDK question, I would have expected it in that forum first hand.
    Hans has cross posted this question into a swiss/german scripting forum with more details, and I've given a few suggestions. It broils down to the fact that the plugin access to scripting in CS3 had to address the JavaScript scripting subsystem rather than talk to a specific engine. And my strong guess is that the RunFile function triggered by the idle task of the first plugin is not reentrant so the second plugin can not invoke a method the same way.
    My suggestions, in brief: upgrade to CS4 where engines are independently addressible. Alternatively, one can try the other methods to invoke the script - RunScript rather than RunFile, or even use the callback mechanism that underlies the event listener registration. Easily accessible from the same interface class.
    Of course for the reentrancy problem I would not expect a Stack overrun error, so maybe it is not reentrancy at all but just the obvious - the second plugin calling itself in recursion. A breakpoint should easily tell.
    Dirk

  • Trying to export to DReamweaver getting a Stack overrun error.

    I have created a multiple InDesign file book. I previuosly exported the contents of one document to dreamweaver and it created the text and images all very well so that my webmaster could use the raw spec infomation to input to a data base for our new website web base product catalog.
    I am trying to do the same thing with to the other sections of the book created the same way with the same type of layout graphic elemtns and content layout.
    I have tried changing up the settings for the export to Dreamwaever filter but no luck.
    I still get the Export to XHTML for Dreamweaver window and it says Stack overrun.
    I even slimmed down the docuemnt got rid of any loose objects and deleted the graphics lept the photos and spec info and it still gives me the error.
    Any suggestions would be appreciated.
    Added 11-18-09 7am cst
    I tried creating a file from an original. Removed graphic elements layers all the way down to the picture of the product and spec info in 2 tables on one single page.
    I still get the same results as above.
    No resolve.
    Anyone?
    Message was edited by: INVT

    Try using these installers:
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)

  • Memory overrun (stack) between _tmstartserver and the tpsvrinit callback.

    Hi all
    And thanks in advance.
    We are trying to setup a Linux environment with both Tuxedo And Oracle XA.
    Details:
    Linux Ubuntu 9.06
    Tuxedo 10gR3_32 Linux 01 x86 (downloaded as tuxedo10gR3_32_Linux_01_x86.zip)
    oracle 10201 client Linux 32 (downloaded as oracle_10201_client_linux32.zip)
    Unfortunately, We have run into a memory overrun (stack) between _tmstartserver and the tpsvrinit callback.
    We set up 2 breakpoints one on _tmstartserver and the other on the tpsvrinit callback entry.
    Now on the 1 breakpoint we have setup a watch on a local variable address (lets say char x[25] = {0};) declared at some other function (stack).
    Now on the 2 breakpoint we can clearly see the stack overrun.
    *there is a way to predict local variable address in memory.
    Note: When we actually reach the relevant function we can clearly see that the values of the array are the same values as the over run.
    We also get an unclear message in the ULOG:
    143046.ubuntudev!tmp.16277.3025016528.0: NLS:4: Cannot open message catalog LIBTUX_CAT, set 1, num 262; check TUXDIR=/usr/local/bea/tuxedo10.0, LANG=en_US.UTF-8
    Thanks TechSgin

    Hi Ian
    Thanks for your help :-)
    We made the changes according to your suggestion, and still we get the same error.
    Note: you can see in the log that error 262 is reported currect before the overrun.
    050135.ubuntudev!BBL.4841.3081389760.0: 08-04-2009: Tuxedo Version 10.0, 32-bit, Patch Level 005
    050135.ubuntudev!BBL.4841.3081389760.0: LIBTUX_CAT:262: INFO: Standard main starting
    050337.ubuntudev!TMS_ORACLE.5068.3064227520.0: 08-04-2009: Tuxedo Version 10.0, 32-bit
    050337.ubuntudev!TMS_ORACLE.5068.3064227520.0: LIBTUX_CAT:262: INFO: Standard main starting
    050338.ubuntudev!TMS_ORACLE.5069.3064018624.0: 08-04-2009: Tuxedo Version 10.0, 32-bit
    050338.ubuntudev!TMS_ORACLE.5069.3064018624.0: LIBTUX_CAT:262: INFO: Standard main starting
    050345.ubuntudev!tmadmin.5070.3081168576.-2: 08-04-2009: Tuxedo Version 10.0, 32-bit
    050345.ubuntudev!tmadmin.5070.3081168576.-2: TMADMIN_CAT:1330: INFO: Command: bbc
    050629.ubuntudev!tmp.5283.3026777808.0: 08-04-2009: Tuxedo Version 10.0, 32-bit
    050629.ubuntudev!tmp.5283.3026777808.0: NLS:4: Cannot open message catalog LIBTUX_CAT, set 1, num 262; check TUXDIR=/usr/local/bea/tuxedo10.0, LANG=en_US.UTF-8
    050629.ubuntudev!tmp.5283.3026777808.0: Attempting to initialize Workflow server...
    Thanks
    TechSgin

  • Memory_Management BSOD after upgrading to Windows 8.1

    hey everyone, so I updated to windows 8.1 this week mostly to try out Project Spark, and it's given me nothing but trouble since. My computer has never had a problem running but now all of a sudden I'm getting blue screens left and right, shockwave refuses
    to work sometimes, and my computer went into auto repair. I have gotten multiple BSODs with MEMORY_MANAGEMENT as well as at least one for 0xC000021a. It may have to do with all the games I have loaded on my computer, as it's particularly active when I want
    to play League of Legends. the dump files are here: https://skydrive.live.com/redir?resid=2E2E8DA8870596AC%21117 . Thank you for your time :)

    * Bugcheck Analysis *
    MEMORY_MANAGEMENT (1a)
    # Any other values for parameter 1 must be individually examined.
    Arguments:
    Arg1: 0000000000041793, The subtype of the bugcheck.
    Arg2: fffff680000b9800
    Arg3: 0000000000000011
    Arg4: 0000000000000010
    Debugging Details:
    BUGCHECK_STR: 0x1a_41793
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: WIN8_DRIVER_FAULT
    PROCESS_NAME: dota.exe
    CURRENT_IRQL: 0
    LAST_CONTROL_TRANSFER: from fffff802f0fe5bf2 to fffff802f0fc6ca0
    STACK_TEXT:
    ffffd000`2cf4f338 fffff802`f0fe5bf2 : 00000000`0000001a 00000000`00041793 fffff680`000b9800 00000000`00000011 : nt!KeBugCheckEx [d:\blue_gdr\minkernel\ntos\ke\amd64\procstat.asm @ 176]
    ffffd000`2cf4f340 fffff802`f0ebee82 : ffffe000`0381c360 00000000`00000001 00000000`00000000 ffffe000`53646156 : nt!MiDeleteVirtualAddresses+0x124802 [d:\blue_gdr\minkernel\ntos\mm\deleteva.c @ 248]
    ffffd000`2cf4f5a0 fffff802`f1230591 : ffffe000`051f7150 ffffe000`051f7150 ffffe000`00000000 ffffe000`00000000 : nt!MiDeleteVad+0xc02 [d:\blue_gdr\minkernel\ntos\mm\umapview.c @ 394]
    ffffd000`2cf4f690 fffff802`f126b440 : 00000000`00040000 ffffd000`2cf4f7c0 00000000`00000000 fffff802`f12888f2 : nt!MmCleanProcessAddressSpace+0x8d [d:\blue_gdr\minkernel\ntos\mm\procsup.c @ 3080]
    ffffd000`2cf4f6f0 fffff802`f129e820 : ffffe000`008ec6c0 ffffc000`0237f060 ffffd000`2cf4f7c0 00000000`00000000 : nt!PspRundownSingleProcess+0xac [d:\blue_gdr\minkernel\ntos\ps\psdelete.c @ 530]
    ffffd000`2cf4f780 fffff802`f1327334 : 00000000`00000001 ffffe000`00c2d1c0 ffffd000`2cf4fa80 ffffe000`00c2d268 : nt!PspExitThread+0x4c8 [d:\blue_gdr\minkernel\ntos\ps\psdelete.c @ 2039]
    ffffd000`2cf4f890 fffff802`f0f1f37a : ffffe000`03344160 ffffd000`2cf4f9e0 ffffe000`00c2d1c0 fffff802`f0f1aaf2 : nt!KiSchedulerApcTerminate+0x18 [d:\blue_gdr\minkernel\ntos\ke\thredsup.c @ 4146]
    ffffd000`2cf4f8c0 fffff802`f0fcbbc0 : 00000000`17c306ac ffffd000`2cf4f940 fffff802`f0f6ddd0 00000000`00000000 : nt!KiDeliverApc+0x2fa [d:\blue_gdr\minkernel\ntos\ke\apcsup.c @ 377]
    ffffd000`2cf4f940 fffff802`f0fd255a : ffffe000`00c2d1c0 00000000`00000000 ffffe000`075721a0 ffffe000`075721a0 : nt!KiInitiateUserApc+0x70 [d:\blue_gdr\minkernel\ntos\ke\amd64\apcint.asm @ 130]
    ffffd000`2cf4fa80 00000000`77742772 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiSystemServiceExit+0x9f [d:\blue_gdr\minkernel\ntos\ke\amd64\trap.asm @ 2406]
    00000000`1bb4ebd8 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x77742772
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    nt!MiDeleteVirtualAddresses+124802 [d:\blue_gdr\minkernel\ntos\mm\deleteva.c @ 248]
    fffff802`f0fe5bf2 cc int 3
    FAULTING_SOURCE_LINE: d:\blue_gdr\minkernel\ntos\mm\deleteva.c
    FAULTING_SOURCE_FILE: d:\blue_gdr\minkernel\ntos\mm\deleteva.c
    FAULTING_SOURCE_LINE_NUMBER: 248
    SYMBOL_STACK_INDEX: 1
    SYMBOL_NAME: nt!MiDeleteVirtualAddresses+124802
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: nt
    DEBUG_FLR_IMAGE_TIMESTAMP: 52718d9c
    IMAGE_NAME: memory_corruption
    BUCKET_ID_FUNC_OFFSET: 124802
    FAILURE_BUCKET_ID: 0x1a_41793_nt!MiDeleteVirtualAddresses
    BUCKET_ID: 0x1a_41793_nt!MiDeleteVirtualAddresses
    Followup: MachineOwner
    Hi,
    One of the memory dumps is a Stack Overrun - which is sometimes caused by malware. Please scan your system for malware.
    Meanwhile,update your all drivers to the latest version.
    Regards,
    Kelvin hsu
    TechNet Community Support

  • Calling a DLL from LabVIEW causes crash

    Okay, this is an odd one. I have searched through various posts and have found several things that were close but not quite the same.
    I have a DLL. I pass to the function in the DLL two strings, each one representing an absolute path to a pair of files. I use a path control to get the paths and then convert those paths to strings. The function also has about 13 other parameters, each of which are U8's passed by reference. I have attached my VI and the DLL. I had to zip the DLL to get it a valid extension.
    The function opens the file pointed to by the first string and parses information out of it. It then tries to create some temporary files in a folder that W7 considers to be a safe temporary folder. The problem is that when I run this VI, LabVIEW crashes...hard. I get the message that LV needs to close. However, before it crashes, it successfully opens the file, parses the info out of it and creates one new file in the temp folder. So, the issue seems to happen after the function mostly finishes with everything it needs to do.
    One interesting note: I replaced the outputs of the path2string conversions with string constants pointing to the exact same files. Now LV doesn't crash. Instead I get an unhandled exception error in the DLL.
    Next interesting note: This same procedure called from another application written in C (on another system) works fine.
    Finally, I do have one advantage that most others don't: the developer of the DLL is a coworker of mine. So I have access to the source code.
    My coworker feels that the function is failing "between the lines" of code. He thinks it is some type of stack overrun but can't place it.
    Any thoughts?
    Thanks,
    Joe
    Attachments:
    dll_LoadConstantsFile.vi ‏15 KB
    gui_confread_dll.zip ‏40 KB

    Rolf, if I understood you correctly, here is the portion of the header file that declares the function:
    #define
    DLL_EXPORT __declspec(dllexport)
    BOOL WINAPI DLLMain(HINSTANCE hinstDLL,DWORD,LPVOID);
    extern
    "C" DLL_EXPORT void__cdecl LoadConstantsFile(char*filename,
    char*patch,
    uInt8 *load_status,
    uInt8 *device_type,
    uInt8 *multi_bom_available,
    uInt8 *hires_gain_available,
    uInt8 *dcdc_bom_option,
    uInt8 *bat_rail_type,
    uInt8 *num_mb_genconf,
    uInt8 *num_ring_presets,
    uInt8 *num_dcfeed_presets,
    uInt8 *num_impedance_presets,
    uInt8 *num_fsk_presets,
    uInt8 *num_tone_presets,
    uInt8 *num_pcm_presets);
    Here is a description of the function:
    Constants File Reader
    This is the main function that parses the constants files, collects information, and creates temporary script files. Run this FIRST.
    void LoadConstantsFile(char *filename,
    char *patch,
    uInt8 *load_status,
    uInt8 *device_type,
    uInt8 *multi_bom_available,
    uInt8 *hires_gain_available,
    uInt8 *dcdc_bom_option,
    uInt8 *bat_rail_type,
    uInt8 *num_mb_genconf,
    uInt8 *num_ring_presets,
    uInt8 *num_dcfeed_presets,
    uInt8 *num_impedance_presets,
    uInt8 *num_fsk_presets,
    uInt8 *num_tone_presets,
    uInt8 *num_pcm_presets);
    Inputs
    filename
    Full path and filename of constants file to be read
    patch
    Full path and filename of patch file to be loaded
    I/O
    load_status
    Updated with 0 if load successful, non-zero if unsuccessful (see codes table)
    device_type
    Updated with value representing device supported by the configuration file (see codes table)
    multi_bom_available
    Updated with 1 if configuration file supports the multi-bom format, 0 otherwise
    hires_gain_available
    Updated with 1 if configuration file supports the hires gain format, 0 otherwise
    dcdc_bom_option
    Updated with DCDC BOM Option of
    default General Configuration detected (see codes table)
    bat_rail_type
    Updated with Battery Rail Type of
    default General Configuration detected (see codes table)
    num_mb_genconf
    Number of general configuration presets detected (if multi-bom is supported)
    The items marked as "inputs" are meant to have something passed in as a value. The parameters marked as I/O are meant to have a pointer to them passed so the function can modify the values (passed as reference).
    The function simply opens the file at "filename" and parses out the info to update the other U8 parameters. The file pointed to by "patch" is simply opened to verify it exists and then closed.

  • Error during dump file Import  from 11g DB into XE database

    Hi ,
    I have a dump file exported from a 11g database. First i imported this dump file into another 11gdb test database and it worked fine.
    Later i tried to import it into an XE database. But import completed with error message as shown below. This error message appeared only for few tables.
    IMP-00015: following statement failed because the object already exists:
    Note - I created a new schema in XE database and tried to import the dump into this schema. So there is no chance for the object to exist before the import operation.
    Does anyone have any idea why import in XE fails? Is there any limitation/restriction in XE?
    FYI - All the tables that failed to import contains LOB data in it. Is LOB datatype is not supported in XE? Does this cause the problem during import?
    Regards,
    Ashok Kumar.G

    Going from 11g to XE(10g) is problematic for two reasons 1st - 11g exports not necessarily compatible with an earlier version and 2nd I have found that in some cases 11g exports can have problems when importing back into another 11g(11.1.0.7) instance due to stack overruns whereas an 10g export to 11g normally works fine..
    ./bob h.

  • HELP, need quick script fix

    Hi,
    Our InDesign is acting up here. We are designing massive amounts of tables for various annual reports. After the design for print is done, these tables need exporting to xHTML.
    We have tested this extensively, and written complicated CSS files and many cell-styles to make it work.
    The thing is, that now when the final test-export needs to be done. InDesign suddenly returns a Stack Overrun error message when exporting. The only thing that seems to happen is that we cut out each page, paste it into a new document, save, and then do the xHTML export. But we are talking hundreds of pages here.
    My Apple script is not too good, but I am sure this can be done by a simple script. And I am quite sure it has been done before.
    Can anyone here please point me in the correct direction.
    PS. A bug report has been made to Adobe about this issue

    Thank you for the quick reply. Smart ports look very cool. I like the idea and may find this useful for other purposes but if I am reading this right, it won't work for what I need. It looks like he would need to log into the switch to apply the macro. He is a phone guy and does not want to actually touch the switch. So I was looking for like a perl script of something that I could configure with my TACACS credentials. Also I won't know what port he needs reconfigured until he needs it, so I need him to be able to add the port number as a variable without him actually having to do any programming. he would be will to run it as part of a command (i.e run command.exe 10.10.10.22 g1/0/22 222, where 10.10.10.22 is switch IP, g1/0/22 is port, and 222 is the new vlan) or if I can do somekind of prompt that would be great!

  • Expressions Optimization

    I use a lot of expressions - to a point where I sometimes get stack overrun errors in renders, and other glitches.
    I am wondering if anyone has advice for optimizing expressions and reducing the amount of redundant calculations.
    At the moment, the only way I can think of to make a 'comp-level variable', is to create a text layer, calculate something in the 'Source Text' property, and have other expressions refer to that.  For numerical values, I might use a Slider or Point control for the same purpose, depending on the value type.  Does anyone know if this actually helps to optimize expression evaluation?
    Thanks,
    Bryan

    Was just thinking of a better way to store variables (im hoping that this layer containing the variables is only calculated once every frame)
    layer "JAVASCRIPT" sourceText property:
    var obj = {
            myvar:2,
              myothervar:'test',
    obj.toSource();
    Then in an expression in that comp that needs this data:
    var obj=eval(thisComp.layer("JAVASCRIPT").text.sourceText.toString());
    obj.myvar;
    I just hope this is actually helping -- I worry that "eval" may be a heavy operation? 

  • High CPU usage - 3750 X stack

    Support Community
    We recently configured a stack of four 48 port 3750-x switches . We are noticing high CPU usage. "Hulc LED process" seems pretty high.
    This has coincided with VMware servers getting slow and non-responsive at times, perhaps a coincidence, not sure.
    Below I provided some outputs that might help to diagnose it
    Thanks
    John
    System image file is "flash:/c3750e-ipbasek9-mz.122-58.SE2/c3750e-ipbasek9-mz.122-58.SE2.bin"
    Show inventory output
    NAME: "1", DESCR: "WS-C3750X-48"
    PID: WS-C3750X-48T-S   , VID: V02  ,
    NAME: "Switch 1 - Power Supply 0", DESCR: "FRU Power Supply"
    PID: C3KX-PWR-350WAC   , VID: V02L ,
    NAME: "2", DESCR: "WS-C3750X-48"
    PID: WS-C3750X-48T-S   , VID: V02 
    NAME: "Switch 2 - Power Supply 0", DESCR: "FRU Power Supply"
    PID: C3KX-PWR-350WAC   , VID: V02D ,
    NAME: "3", DESCR: "WS-C3750X-48"
    PID: WS-C3750X-48T-S   , VID: V02 
    NAME: "Switch 3 - Power Supply 0", DESCR: "FRU Power Supply"
    PID: C3KX-PWR-350WAC   , VID: V02L ,
    NAME: "4", DESCR: "WS-C3750X-48"
    PID: WS-C3750X-48T-S   , VID: V02 
    NAME: "Switch 4 - Power Supply 0", DESCR: "FRU Power Supply"
    PID: C3KX-PWR-350WAC   , VID: V02L ,
    SWITCH#sh processes cpu sorted
    CPU utilization for five seconds: 61%/5%; one minute: 50%; five minutes: 49%
    PID Runtime(ms)     Invoked      uSecs   5Sec   1Min   5Min TTY Process
    168   260466386    44948517       5794 14.53% 13.98% 13.70%   0 Hulc LED Process
    231    97586088    27253906       3580  4.95%  4.73%  4.64%   0 Spanning Tree
    213    63106121   154928892        407  4.15%  3.89%  3.91%   0 IP Input
    284    70113217    34537588       2030  3.51%  3.98%  4.17%   0 RARP Input
       4     6663412      421278      15817  3.03%  0.43%  0.32%   0 Check heaps
    374     9872291    10805181        913  3.03%  0.77%  0.62%   0 IP SNMP
    376    11142951     5370604       2074  3.03%  0.73%  0.66%   0 SNMP ENGINE
      12    35389011    32152175       1100  2.87%  2.08%  2.20%   0 ARP Input
    128    34962407     3622140       9652  2.07%  1.69%  1.63%   0 hpm counter proc
      85    49034286     8536062       5744  1.91%  2.44%  2.44%   0 RedEarth Tx Mana
    107    25127806    46459053        540  1.27%  1.10%  0.93%   0 HLFM address lea
    174        2412        1714       1407  0.95%  0.39%  0.25%   1 SSH Process
    220     6423643    12634764        508  0.79%  0.70%  0.56%   0 ADJ resolve proc
    181     6913179     2890070       2392  0.63%  0.31%  0.36%   0 HRPC qos request
    375     1681949     5000777        336  0.47%  0.08%  0.07%   0 PDU DISPATCHER
      84    10180707    12623537        806  0.47%  0.30%  0.37%   0 RedEarth I2C dri
            1
          666666096996666666666666659666667666666666666666666766676666666656666666
          249363098992351145264823289455360612252332233522344115537230141392553343
      100       ** **               *
       90       ** **               *
       80       ** **               *
       70   * * *****  *   * * *    * ** ***   *       *     * ****         **
       60 **********************************************************************
       50 ######################################################################
       40 ######################################################################
       30 ######################################################################
       20 ######################################################################
       10 ######################################################################
         0....5....1....1....2....2....3....3....4....4....5....5....6....6....7..
                   0    5    0    5    0    5    0    5    0    5    0    5    0
                       CPU% per hour (last 72 hours)
                      * = maximum CPU%   # = average CPU%
          455555555554444444444555554444455555555555555555555444444444
          922222111118888866666000009999911111555554444422222444448888
      100
       90
       80
       70
       60                                     *****
       50 ***************************************************     **
       40 **********************************************************
       30 **********************************************************
       20 **********************************************************
       10 **********************************************************
         0....5....1....1....2....2....3....3....4....4....5....5....6
                   0    5    0    5    0    5    0    5    0    5    0
                   CPU% per second (last 60 seconds)
          565756555555555555555555555555555556555555555555565555565556
          518841757869248569271526666733778330496833777819929379701861
      100
       90
       80    *
       70    *
       60 **** *******  **** * * *****  ***  * ***  **** **** **** *
       50 ##########################################################
       40 ##########################################################
       30 ##########################################################
       20 ##########################################################
       10 ##########################################################
         0....5....1....1....2....2....3....3....4....4....5....5....6
                   0    5    0    5    0    5    0    5    0    5    0
                   CPU% per minute (last 60 minutes)
                  * = maximum CPU%   # = average CPU%

    Thanks to all for your replies.
    Jeff
    I was aware of the many ACLs however we used to have the same ACLs in a previous 3750G stack about 2 weeks ago and we never had this issue. I agree I need to optimize them and do somehing because it is reaching its max before the CPU starts processing them but I am not certain this is what is causing the issue.
    Nikolay,
    I am trying to understand "interrupts" with the analysis of the outputs I posted. Here is another output deom the link you provided. Please post your thoughts if you can.
    This switch also serves as a gateway(L3 role)  for many systems. Would it make sense to offload that responsability from this switch and let an actual router do it?
    Thanks
    Johnny
    show controllers cpu-interface
    ASIC    Rxbiterr   Rxunder    Fwdctfix   Txbuflos   Rxbufloc   Rxbufdrain
    ASIC0     0          0          0          0          0          0
    ASIC1     0          0          0          0          0          0
    ASIC2     0          0          0          0          0          0
    HOL Fix Counts
    No Fixes:          0 Added:          0 In Use:          0 Both:          0
    CPU Heartbeat Statistics
    Tx Success Tx Fail    1st Thr    2nd Thr    Unthr      RetryCtMax
      37139562          0          0          0          0          1
    Rx Delay
             0          1          2          3          4
      37139562          0          0          0          0
    AddlDelay AdvanceCnt
             0          0
    Rx Retries by RetryCount
             0          1          2          3          4          5          6
      37139562          0          0          0          0          0          0
             7          8          9
             0          0          0
    AddlRetry
             0
    cpu-queue-frames  retrieved  dropped    invalid    hol-block  stray
    rpc               104077409  0          0          0          0
    stp               19189469   0          0          0          0
    ipc               11093838   0          0          0          0
    routing protocol  141021559  0          0          0          0
    L2 protocol       230347     0          0          0          0
    remote console    17         0          0          0          0
    sw forwarding     257436702  0          0          0          0
    host              21146276   0          0          0          0
    broadcast         332154608  0          0          0          0
    cbt-to-spt        0          0          0          0          0
    igmp snooping     2796987    0          0          0          0
    icmp              90752156   0          0          0          0
    logging           0          0          0          0          0
    rpf-fail          0          0          0          0          0
    dstats            0          0          0          0          0
    cpu heartbeat     37139562   0          0          0          0
    cpu-queue         static inuse static added
    rpc               0            0
    stp               0            0
    ipc               0            0
    routing protocol  0            0
    L2 protocol       0            0
    remote console    0            0
    sw forwarding     0            0
    host              0            0
    broadcast         0            0
    cbt-to-spt        0            0
    igmp snooping     0            0
    icmp              0            0
    logging           0            0
    rpf-fail          0            0
    dstats            0            0
    cpu heartbeat     0            0
    Supervisor ASIC receive-queue parameters
    queue 0 maxrecevsize 7E0 pakhead 5505A88 paktail 54655A8
    queue 1 maxrecevsize 7E0 pakhead 5689164 paktail 5687F54
    queue 2 maxrecevsize 7E0 pakhead 5547AA4 paktail 554719C
    queue 3 maxrecevsize 7E0 pakhead 5DC233C paktail 5DBA4CC
    queue 4 maxrecevsize 7E0 pakhead 56A7198 paktail 56A7AA0
    queue 5 maxrecevsize 7E0 pakhead 5D61304 paktail 5D72F80
    queue 6 maxrecevsize 7E0 pakhead 5D856D4 paktail 5D989E4
    queue 7 maxrecevsize 7E0 pakhead 5BDE29C paktail 5BDC784
    queue 8 maxrecevsize 7E0 pakhead 5CC00A8 paktail 5CB3574
    queue 9 maxrecevsize 7E0 pakhead 59DD86C paktail 59DD86C
    queue A maxrecevsize 7E0 pakhead 59BF43C paktail 59C13D8
    queue B maxrecevsize 7E0 pakhead 5DD18A0 paktail 5DCE6F4
    queue C maxrecevsize 7E0 pakhead 59E9CBC paktail 5A049B8
    queue D maxrecevsize 7E0 pakhead 59D8EA0 paktail 59DD25C
    queue E maxrecevsize 0 pakhead 0 paktail 0
    queue F maxrecevsize 7E0 pakhead 59A7080 paktail 59A6BFC
    Supervisor ASIC exception status
    Receive overrun    00000000   Transmit overrun 00000000
    FrameSignatureErr  00000000   MicInitialize    00000002
    BadFrameErr        00000000   LenExceededErr   00000000
    BadJumboSegments   00000000
    Supervisor ASIC Mic Registers
    MicDirectPollInfo               80000200
    MicIndicationsReceived          00000000
    MicInterruptsReceived           00000009
    MicPcsInfo                      0000001F
    MicPlbMasterConfiguration       00000000
    MicRxFifosAvailable             00000000
    MicRxFifosReady                 0000BFFF
    MicTimeOutPeriod:       FrameTOPeriod: 00000EA6 DirectTOPeriod: 00004000
    MicTransmFramesCopied           00000003
    MicTxFifosAvailable             0000000E
    MicConfiguration:       Conf flag: 00000110     Interrupt Flag: 00000008
    MicReceiveFifoAssignmen Queue 0 - 7: 33333333   Queue 8 - 15:33333333
    MicReceiveFramesReady:  FrameAvailable: 00000181        frameAvaiMask: 00000000
    MicException:
            Exception_flag  00000000
            Message-1       00000000
            Message-2       00000000
            Message-3       00000000
    MicIntRxFifo:
            ReadPtr         000005C0        WritePtr        000005C0
            WHeadPtr        000005C0        TxFifoDepth     C0000800
    MicIntTxFifo:
            ReadPtr         00000728        WritePtr        00000728
            WHeadPtr        00000728        TxFifoDepth     C0000800
    MicDecodeInfo:
    Fifo0:  address:        03FF4000 asic_num:      00000100
    Fifo1:  address:        03FF4400 asic_num:      00000101
    MicTransmitFifoInfo:
    Fifo0:   StartPtrs:     0E2CE800        ReadPtr:        0E2CEBE8
            WritePtrs:      0E2CEBE8        Fifo_Flag:      8A800800
            Weights:        001E001E
    Fifo1:   StartPtrs:     0E02D000        ReadPtr:        0E02D138
            WritePtrs:      0E02D138        Fifo_Flag:      89800400
            Weights:        000A000A
    MicReceiveFifoInfo:
    Fifo0:  StartPtr:       0E4AF000        ReadPtr:        0E4AF2A8
            WritePtrs:      0E4AF308        Fifo_Flag:      8B000FA0
            writeHeaderPtr: 0E4AF308
    Fifo1:  StartPtr:       0E78C000        ReadPtr:        0E78C2E8
            WritePtrs:      0E78C2E8        Fifo_Flag:      89800400
            writeHeaderPtr: 0E78C2E8
    Fifo2:  StartPtr:       0E744800        ReadPtr:        0E744A70
            WritePtrs:      0E744A70        Fifo_Flag:      89800400
            writeHeaderPtr: 0E744A70
    Fifo3:  StartPtr:       0EBD1000        ReadPtr:        0EBD13B8
            WritePtrs:      0EBD13B8        Fifo_Flag:      89800400
            writeHeaderPtr: 0EBD13B8
    Fifo4:  StartPtr:       0E7D3800        ReadPtr:        0E7D3A58
            WritePtrs:      0E7D3A58        Fifo_Flag:      89800400
            writeHeaderPtr: 0E7D3A58
    Fifo5:  StartPtr:       0EB40600        ReadPtr:        0EB40688
            WritePtrs:      0EB40688        Fifo_Flag:      88800200
            writeHeaderPtr: 0EB40688
    Fifo6:  StartPtr:       0EB87400        ReadPtr:        0EB874F0
            WritePtrs:      0EB874F0        Fifo_Flag:      89800400
            writeHeaderPtr: 0EB874F0
    Fifo7:  StartPtr:       0E880000        ReadPtr:        0E880E20
            WritePtrs:      0E881520        Fifo_Flag:      8C001900
            writeHeaderPtr: 0E881520
    Fifo8:  StartPtr:       0EB1A600        ReadPtr:        0EB1A770
            WritePtrs:      0EB1A780        Fifo_Flag:      880001F0
            writeHeaderPtr: 0EB1A780
    Fifo9:  StartPtr:       0E2E0CD8        ReadPtr:        0E2E0CD8
            WritePtrs:      0E2E0CD8        Fifo_Flag:      82800008
            writeHeaderPtr: 0E2E0CD8
    Fifo10: StartPtr:       0E81D000        ReadPtr:        0E81D1D8
            WritePtrs:      0E81D1D8        Fifo_Flag:      88800200
            writeHeaderPtr: 0E81D1D8
    Fifo11: StartPtr:       0E4AEF00        ReadPtr:        0E4AEF60
            WritePtrs:      0E4AEF60        Fifo_Flag:      86800080
            writeHeaderPtr: 0E4AEF60
    Fifo12: StartPtr:       0E84A000        ReadPtr:        0E84A300
            WritePtrs:      0E84A000        Fifo_Flag:      89000100
            writeHeaderPtr: 0E84A000
    Fifo13: StartPtr:       0E4AEE00        ReadPtr:        0E4AEE00
            WritePtrs:      0E4AEE00        Fifo_Flag:      86800080
            writeHeaderPtr: 0E4AEE00
    Fifo14: StartPtr:       00000000        ReadPtr:        00000000
            WritePtrs:      00000000        Fifo_Flag:      00800000
            writeHeaderPtr: 00000000
    Fifo15: StartPtr:       0E02CEC0        ReadPtr:        0E02CED0
            WritePtrs:      0E02CED0        Fifo_Flag:      84800020
            writeHeaderPtr: 0E02CED0
    ===========================================================
    Complete Board Id:0x00B2
    ===========================================================

  • Whats causing Input drops and overruns between 3502lap and 3750g switch?

    At our HQ we have 6 3502 LAPs terminating into a 3750g switch stack.  We have an issue with performance in some instances which I think is RF related, however in doing all due diligence I am looking at the Ethernet layer as well between the switch and the AP's in the area's of the performance issues.
    I am seeing some Input Overruns and Input Drops on all of the AP's at the HQ location.  One I am looking at now has 330 overrun and 34564 input drops.  I have other remote sites and when checking those interface statistics they have 0 input drops and overruns.  The other difference is that the remote sites are in flex connect mode whereas the HQ is in local mode.
    Are the input drops and overruns a concern, or is it just because there's a lot more traffic at the HQ?
    Thanks for your assistance!

    Ok here is the port this AP is connected to that I referenced above.
    GigabitEthernet1/0/30 is up, line protocol is up (connected)
      Hardware is Gigabit Ethernet, address is 6416.8dc9.609e (bia 6416.8dc9.609e)
      Description: Access Port Connection to Cisco Lightweight AP
      MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation ARPA, loopback not set
      Keepalive set (10 sec)
      Full-duplex, 1000Mb/s, media type is 10/100/1000BaseTX
      input flow-control is off, output flow-control is unsupported
      ARP type: ARPA, ARP Timeout 04:00:00
      Last input 00:00:19, output 00:00:01, output hang never
      Last clearing of "show interface" counters never
      Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 46951
      Queueing strategy: fifo
      Output queue: 0/40 (size/max)
      5 minute input rate 52000 bits/sec, 3 packets/sec
      5 minute output rate 30000 bits/sec, 31 packets/sec
         113080164 packets input, 47601198717 bytes, 0 no buffer
         Received 2211359 broadcasts (1347169 multicasts)
         0 runts, 0 giants, 0 throttles
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 watchdog, 1347169 multicast, 0 pause input
         0 input packets with dribble condition detected
         711149027 packets output, 153496944729 bytes, 0 underruns
         0 output errors, 0 collisions, 1 interface resets
         0 babbles, 0 late collision, 0 deferred
         0 lost carrier, 0 no carrier, 0 PAUSE output
         0 output buffer failures, 0 output buffers swapped out
    Here is the ports configuration:
    interface GigabitEthernet1/0/30
     description Access Port Connection to Cisco Lightweight AP
     switchport mode access
     ip access-group acl1 in
    end
    Doesn't look too bad on the switch, but on the cisco wireless controller for this AP in question (and others in the HQ) it shows the drops and overruns.  I uploaded a picture of that screen.
    If I change it to local, will it still allow other VLAN's through or would I have to change the switchport to a trunk?

  • Error while comitting a transaction in oSB. The following is the error stack

    Error while comitting a transaction in OSB. The following is the error stack
    <Apr 20, 2015 12:00:15 AM MDT> <Error> <EJB> <BEA-010026> <Exception occurred during commit of transaction Xid=BEA1-1AE41F1CAE45F2B146FD(296700848),Status=Rolled back. [Reason=Unknown],numRepliesOwedMe=0,numRepliesOwedOthers=0,seconds since begin=2,seconds left=120,XAServerResourceInfo[WLStore_SOA_PRDKS_DOMAIN_FileStore_SOA_MS2]=(ServerResourceInfo[WLStore_SOA_PRDKS_DOMAIN_FileStore_SOA_MS2]=(state=new,assigned=none),xar=null,re-Registered = false),XAServerResourceInfo[WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1]=(ServerResourceInfo[WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1]=(state=rolledback,assigned=OSB_MS1),xar=WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_11603460297,re-Registered = false),XAServerResourceInfo[weblogic.jdbc.jta.DataSource]=(ServerResourceInfo[weblogic.jdbc.jta.DataSource]=(state=ended,assigned=none),xar=CMSDS,re-Registered = false),SCInfo[OSB_PRDKS_DOMAIN+OSB_MS1]=(state=rolledback),SCInfo[SOA_PRDKS_DOMAIN+SOA_MS2]=(state=pre-prepared),properties=({}),local properties=({weblogic.jdbc.jta.CMSDS=[ No XAConnection is attached to this TxInfo ]}),OwnerTransactionManager=ServerTM[ServerCoordinatorDescriptor=(CoordinatorURL=OSB_MS1+soaprd-vip-osb-ms1.cos.is.keysight.com:8001+OSB_PRDKS_DOMAIN+t3+, XAResources={eis/wls/Queue, WEDB_EVEREST_OSB_PRDKS_DOMAIN, XREFDS_OSB_PRDKS_DOMAIN, eis/activemq/Queue, CustomSchemaDS_OSB_PRDKS_DOMAIN, MobileApps_CIA_DS1_OSB_PRDKS_DOMAIN, eis/tibjmsDirect/Queue, eis/jbossmq/Queue, eis/Apps/Apps, MobileApps_AOS_MDS_OSB_PRDKS_DOMAIN, MobileApps_AOS_DRDS_OSB_PRDKS_DOMAIN, WSATGatewayRM_OSB_MS1_OSB_PRDKS_DOMAIN, eis/webspheremq/Queue, eis/AQ/aqSample, SBLPROD_OSB_PRDKS_DOMAIN, wlsbjmsrpDataSource_OSB_PRDKS_DOMAIN, eis/aqjms/Queue, CMSDS_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN_WseeFileStore_auto_1, FAP_OSB_PRDKS_DOMAIN, eis/sunmq/Queue, eis/pramati/Queue, FMWAPPDS_OSB_PRDKS_DOMAIN, weblogic.jdbc.jta.DataSource, GSDC_OSB_PRDKS_DOMAIN, eis/tibjms/Topic, eis/fioranomq/Topic, WLStore_OSB_PRDKS_DOMAIN_FileStore_MS1, PresidioOracleAppsDS_OSB_PRDKS_DOMAIN, GSDCDS_OSB_PRDKS_DOMAIN, eis/aqjms/Topic, CustOutDS_OSB_PRDKS_DOMAIN, OFMW/Logging/BAM, MobileAppsDS_OSB_PRDKS_DOMAIN, FIDDS_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN__WLS_OSB_MS1, HRMSDS_OSB_PRDKS_DOMAIN, WEDB_OSB_PRDKS_DOMAIN, OracleAppsDS_OSB_PRDKS_DOMAIN, eis/wls/Topic, eis/tibjms/Queue, eis/tibjmsDirect/Topic, IntrastatDS_OSB_PRDKS_DOMAIN, MobileApps_AOS_COSDS_OSB_PRDKS_DOMAIN, MobileApps_CIA_DS2_OSB_PRDKS_DOMAIN, EVEREST_WEDB_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1, Everest_OSB_PRDKS_DOMAIN},NonXAResources={})],CoordinatorURL=SOA_MS2+soaprd-vip-soa-ms2.cos.is.keysight.com:8002+SOA_PRDKS_DOMAIN+t3+): javax.transaction.SystemException: Lost connection to server while commit was in progress, ignoring because initiating server is not coordinating server. Remote Exception received=weblogic.rjvm.PeerGoneException: ; nested exception is:
            java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
            java.io.InvalidClassException: oracle.jdbc.xa.OracleXAException; local class incompatible: stream classdesc serialVersionUID = -2542408691177300269, local class serialVersionUID = -4551795881821760665
            at weblogic.transaction.internal.TransactionImpl.commit(TransactionImpl.java:376)
            at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:237)
            at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:224)
            at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:552)
            at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:423)
            at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:325)
            at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
            at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
            at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
            at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
            at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Hi,
    Have you tried Cancelling the release before adding the version?
    Select the active version of the IDOC Segment and cancel its release first. Only then you will be able to add a version.
    Please let me know if it worked!
    Vijay

  • Instalação de EHp3 + ultimo Stack (15) + últimos SP de HR (44)

    Amigos, bom dia,
    Estou realizando um projeto de instalação de EHp3 + ultimo Stack (15) + últimos SP de HR (44) disponíveis hoje para um ECC 6.0 montado sobre Solaris SPARC 10 e Oracle 10g.
    O problema é o seguinte, montei um servidor de teste e realizei uma copia homogênea do sistema de PRD para poder evaluar o impacto e poder ter o tempo que o sistema estará em manutenção e sem acesso aos usuários. Como é um cliente que trabalha as 24hs, o sistema de PRD não pode estar fora do ar mais de 48hs como máximo (sábado e domingo), igualmente, este tempo para o cliente já é muito. Então estou precisando reduzir ao máximo os tempos de ajustes manuais da SPDD e SPAU.
    Por isso a minha idéia é que no ambiente DEV a equipe funcional, ao momento de realizar os ajustes da SPDD e SPAU, gerem ordens de transportes para que ao momento de realizar a instalação em QAS e PRD, eu possa adicionar essas ordens através da SAINT e fazer uma só u201Cqueueu201D.
    Alguém alguma vez fez algo pelo estilo? Já adicionaram ordens de transporte a SAINT? Estive vendo esta documentação:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/26/5a8c38e3494231e10000009b38f8cf/frameset.htm
    Mas não me esclareceu as duvidas. Como a SAINT vai saber qual é a ordem relacionada aos ajustes da SPDD e aos ajustes da SPAU?
    Alguém que possa me dar uma dica?
    Muito obrigado,
    Alejandro Olindo
    SAP Basis Consultant

  • How can I sync ONLY the top photo in the stack?

    I sync various Aperture photo albums to my IPad and iPhone. The problem is that when I have 'stacked' images (eg. one image showing in the album and two other copies 'hidden' underneath), all of the photos in the stack are copied to the ipad and iPhone. So instead of seeing just one version of an image, I see as many as are in the stack. How can I sync ONLY the top photo in the stack?
    Thanks for your help!

    I solved my own problem.
    The sync problem seemed to only occur on smart albums. There is a new check box option in Aperture 3 when making a smart album: "sync stack pick only." One click and the problem is solved!

  • Why do I need to declare "defaultButton" ? (In a component form part of view stack)

    After doing some research and some help from FlexGuy in another thread, I realize that I need to make sure I have custom components initialized before accessing parts of the component.  Just recently I was thrown for a long time when I tried to first click on a form field that was part of a component in my view stack, I'd get:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at mx.managers::FocusManager/focusInHandler()[C:\autobuild\galaga\frameworks\projects\framew ork\src\mx\managers\FocusManager.as:601]
    With the debugger it's occuring in the focusInHandler method of FocusManager.as: (apparently _defaultButton is null.)
    // restore the default button to be the original one
                    if (defButton && defButton != _defaultButton)
                        defButton.emphasized = false;
                        defButton = _defaultButton;
                       _defaultButton.emphasized = true;
    This prompted me, on a whim, to delcare a defaultButton:
    <mx:Form id="empForm" defaultButton="{submitButton}">
    which refers to my submit button:
    <mx:Button id="submitButton" click="submitEmployee()" label="{submitLabel}"/>
    My question, is why is this necessary? In some examples I don't see this declared at all, but I seem to need it? (I'm calling creationPolicy="all" to make sure my components are initialized but I still seem to have to this defaultButton declared?)

    It's a way of proving that you are able to purchase content from that country's store i.e. that you have a valid billing address in it
    From Why can’t I select None when I edit my Apple ID payment information? - Apple Support :
    If you changed your country or region
    When you change the country or region of an existing Apple ID, you must provide a payment method and update your billing options. If you want to remove your payment method after you change the country or region, you can change your payment information to None.

Maybe you are looking for

  • How do I get back my sidebar???

    About a month ago, after some buggy behavior on my iMac, including shut down/start up issues, my finder's sidebar disappeared. I get the Finder window, but NO sidebar (and no drives). The only way for me to summon it is to hit "Command FIND." I'm thi

  • EMET 3.0 to 4.1 Upgrade results in notifier bug on reboot

    I am testing upgrading our enterprise environment, which is currently on 3.0 to 4.1.  After installing the product with a silent install from the below directory: waithidden msiexec.exe /i "c:\windows\temp\EMET\EMET Setup.msi" /qn /norestart The inst

  • Multiple dropdown menu

    Hello I want to  just write a simple Labview program that would take an input from user (The input must be limited e.g creating a drop down menu). Then based on this input, it must ask user to enter other inputs. for example. Input 1. can be either a

  • Manually editing NetworkConfig.xml for multi-site VPN

    I'm designing a network comprised of on-premise, Azure East US VNet and Azure North Central US VNet. East will be my production VNet and North Central will be backup/dev. I want them routed together as well and accessible via on premise-VPN with RRAS

  • Comp settings vs. Output Module settings

    Oh geez I hate to even ask this question: What the heck did I do? Maybe I'm losing it here... I've been rendering HD videos in H.264 for some time, but all of a sudden I'm getting "settings mismatch" in output module settings. And my animations are a