In CSM map, can we configure a url not match?

Hello! Expert,
Seems we can only configure the url match by "match protocol http url /a/b/*" in CSM, but wonderring if we can configure "not match protocol http url /a/b/*"? checked the docs, could not find the Regular Expression in CSM has "not match" or "!" pattern. However, in our J2EE env. we really need this kind of configuration. Thans, Q.Xie

Thx Gilles for your feedback, but I don't think this 2 policies method will work for us. The 2nd policy "match any" just likes our default serverfarm. Seems it's hard for me to describe what exactly the issue we have. Could you or some one tell me directly if there is a "not match pattern" in CSM map implementation?
Thx, Q.Xie

Similar Messages

  • How can I configure ReFS to NOT fail read operations when a checksum error is detected (on non-Storage-Spaces volumes where data integrity streams are enabled)?

    According to William Stanek, in his Windows Server 2012 R2 Inside Out: Configuration, Storage & Essentials book, this is apparently possible: (pg. 615 - here it is on Google Books: https://books.google.ca/books?id=0IyfBAAAQBAJ&pg=PT819&lpg=PT819&dq=read+operation )
        Integrity can be enabled when the system is not running on Storage Spaces. When
        integrity is enabled and ReFS detects a checksum mismatch, ReFS logs an event and
        fails the read operation by default. If you don’t want the read operation to fail, you
        can configure ReFS to continue with the read operation. A related event will be logged
        regardless.
    So then how do I configure it to do that???
    (And just to make it super-clear, I'm NOT using Storage Spaces, so there is no redundancy via mirroring/parity, and I'm not expecting any file repair - just detection of corruption. It's just a basic volume formatted with ReFS and
    with integrity streams enabled, via format E: /fs:ReFS /i:enabled
    For those who want more details, here's the situation: 
    I try to perform a read operation on a file with corrupted data (purposely done for testing using a low-level disk editor), I get a the following error message:
    And an event ID 133 from ReFSv1 gets logged in the System log:
    Clicking "Try Again" just brings up the same message, and clicking "Skip" skips the operation entirely.
    This is indeed the correct default behaviour.
    What I want instead is for the read operation to be allowed to complete, with corrupt data and all, and ONLY for the event to be logged. And according to William Stanek, this is supposed to be configurable somewhere - and after hours of searching, I haven't
    been able to find anything.

    Hi Tommy,
    >>How can I configure ReFS to NOT fail read operations when a checksum error is detected
    We can use PowerShell command Set-FileIntegrity to configure this. The specific parameter for controlling this behavior is
    -Enforce <Boolean>which indicates whether to enable blocking access to a file if integrity streams do not match the data.  
    Regarding this point, the following article can be referred to as reference.
    Set-FileIntegrity
    https://technet.microsoft.com/en-us/library/jj218351.aspx
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Ie 11 fails with 'IE Security detected that the URL and the configuration link to not match

    HI,
    I Have a user that is using IE 11 and is getting the following error:
    IE Security detected that the URL and the configuration link to not match. Please use the URL as configured.  Is and IP based URL. On IE 10 we get a similar message, but as soon as we add it to our trusted site and switch to compatibility
    mode the issue goes away.
    For example http://10.10.10.180/xxx/iafwebsite_810/
    What would be causing this issue?
    Any help would be appreciated.
    Thanks,
    Trish
    Trish Leppa

    Hi,
    It seems that this URL doesn't meet security level. Thus, as long as you add this URL to Trusted sites zone, this issue is fixed.
    Thanks!
    Andy Altmann
    TechNet Community Support

  • The local node entry in Cluster Configuration information does not match wi

    In installing 10.1.0.3 CRS on Solaris 8 x86, I keep getting the error, "The local node entry in Cluster Configuration information does not match with the entry in /etc file." Both addresses are defined in the /etc/inet/hosts and are pingable. There seems to be no way to get past this issue. Earlier I installed 10.2.0.1 CRS on SLES9 SP2 on a system with the same network settings and had no problem. Is there some way to force the installer to accept the addresses given and proceed past this step?

    All,
    I think there can be two problems
    1.
    if your host file looks as follows
    # Public
    192.168.2.x rac1.localdomain rac1
    192.168.2.x rac2.localdomain rac2
    #Private
    192.168.0.x rac1-priv.localdomain rac1-priv
    192.168.0.x rac2-priv.localdomain rac2-priv
    #Virtual
    192.168.2.x rac1-vip.localdomain rac1-vip
    192.168.2.x rac2-vip.localdomain rac2-vip
    then you should be able to do rsh or ssh sucessfully for each aliases at least one from each nodes
    (ex)
    on node rac1
    ssh rac1 date
    ssh rac1.localdomain date
    ssh rac2 date
    ssh rac2.localdomain date
    2. you should create user equivalance on all the nodes as follows
    Edit the /etc/hosts.equiv file to include all the RAC nodes:
    +rac1 oracle
    +rac2 oracle
    +rac1-priv oracle
    +rac2-priv oracle                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • URLs not matching the mappings I set in web.xml

    Below is what I observe, I would have expected the URL to match all 3 but it only matches for the first one , any ideas?
    Web.xml contains
    <filter>
         <filter-name>MyFilter</filter-name>
         <filter-class>HWfilter</filter-class>
    </filter>
    <filter-mapping>
         <filter-name>MyFilter</filter-name>
         <url-pattern>/*</url-pattern>
    </filter-mapping>
    http://localhost/Chapter7/test.txt  - URL matches filter
    Web.xml contains
    <filter>
         <filter-name>MyFilter</filter-name>
         <filter-class>HWfilter</filter-class>
    </filter>
    <filter-mapping>
         <filter-name>MyFilter</filter-name>
         <url-pattern>*</url-pattern>
    </filter-mapping>
    http://localhost/Chapter7/test.txt  - URL DOES NOT match filter
    Web.xml contains
    <filter>
         <filter-name>MyFilter</filter-name>
         <filter-class>HWfilter</filter-class>
    </filter>
    <filter-mapping>
         <filter-name>MyFilter</filter-name>
         <url-pattern>/*.txt</url-pattern>
    </filter-mapping>
    http://localhost/Chapter7/test.txt  - URL DOES NOT match filter
    ----------------------------------------------------------------

    I found this in the Servlet API specification:
    � A string beginning with a �/� character and ending with a �/*� postfix is used
    for path mapping.
    � A string beginning with a �*.� prefix is used as an extension mapping.
    � A string containing only the �/� character indicates the "default" servlet of the
    application. In this case the servlet path is the request URI minus the context
    path and the path info is null.
    � All other strings are used for exact matches only.
    According to this, your third one should work if you remove the / and just have *.txt.

  • Where can I configure the URL I receive after login into SRA gateway

    Hi folks,
    I enter the URL of my gateway http://gw.machine.com
    I am redirected to http://gw.machine.com/http://portal.machine.com/amserver/UI/Login?gw=gw.machine.com&org=o%3Dec&goto=http%3A%2F%2Fportal.machine%3A80%2Fportal%2Fdt
    Where can I change, add, remove the got parameter f.e.
    Kind Regards
    Roland

    Hi,
    I have the same problem. Did you find a solution?
    Vincent

  • Regex to split a URL, not matching

    I'm trying to port Steve Levithan's [parseUri JavaScript function|http://blog.stevenlevithan.com/archives/parseuri] to Java, but I'm having problems getting the regular expression to match anything, even basic URLs. I can confirm that the regular expression +^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)+ matches http://www.google.com/, but I can't get it to work in Java. The code I'm using is:
    String spec = "http://www.google.com/";
    HashMap tempUri = new HashMap();
    String[] parts = {"source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"};
    Pattern pattern = Pattern.compile("^(?:(?![^:@]+:[^:@/]*@)([^:/?#.]+):)?(?://)?((?:(([^:@]*):?([^:@]*))?@)?([^:/?#]*)(?::(\\d*))?)(((/(?:[^?#](?![^?#/]*\\.[^?#/.]+(?:[?#]|$)))*/?)?([^?#/]*))(?:\\?([^#]*))?(?:#(.*))?)");
    Matcher matcher = pattern.matcher(spec);
    String match;
    int i=0;
    while(matcher.find()) {
        try {
            match = matcher.group(i);
            tempUri.put(parts, match);
    } catch(Exception ex) {
    tempUri.put(parts[i],"");
    i++;
    The problem is, the matcher only ever finds one match (the whole string), it should be splitting it. I'm sure I'm escaping the characters properly.
    Edited by: Echilon on Nov 3, 2008 5:08 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    As usual, after trying for hours in vain, I stumble upon the answer just after posting. :P
    Rather than while(matcher.find()), I used if(matcher.find()), then looped through the groups.
    For anyone interested, [http://leghumped.com/blog/2008/11/03/java-matching-urls-with-regex-wildcards/|http://leghumped.com/blog/2008/11/03/java-matching-urls-with-regex-wildcards/] might help :)
    Edited by: Echilon on Nov 3, 2008 11:08 AM

  • How can I get WebAS to not start-up after restarting Windows?

    I would like to not have my WebAS auto start after I reboot windows.
    I found of couple of options in Configuration tool but they did not stop it.
    We have a firewall product that I cannot disable (per security policy), but I can terminate it once I get the desktop.  However by that time WebAS has started and encounters blocks from firewall, and once this happens, half the time it causes my jcontrol.exe to result in NIETIMEOUT messages and once THAT happens I have to uninstall and reinstall EVERYTHING. 
    So, how can I configure WebAS to not automatically start-up after rebooting windows?  I have searched help.sap.com and looked for options in Visual Admin and Configure tools.

    Easier than it seems
    Go to Administrative Tools/ Services in Windows.
    Change Startup type of the services to Manual.
    You can just sort by the 'Log On As' Column
    ".\SAPServiceJ2E"
    or whatever you instance name is. You can always start the service from the MMC console after this.

  • Can we configure Format Mapping in ELM!!!!

    Hi CRM Experts,
    1)Can any one tell me, can we configure format mapping In ELM?
    2)What are Coupan code and Campaign Element ID in Lead whle uploading the file through ELM?
    Thanks in Advance
    Sree

    Hi Sree,
    The format mapping is well defined and all the fields that you require are available for use in the transaction code CRMD_MKTPL_MAP.
    You also have BADI for enhancements CRM_MKTLIST_CUSTOMER
    Campaign element ID is the field for entering the campaign due to which you have been able to track the lead. For example if your company has run a road show and during that you get some visiting cards from people interested in the product then they become lead in your system and the campaign is the reference from which you got them so that road show's id will be maintained in the campaign Id field
    Regards,
    Rekha Dadwal
    <b>You gain a point for every point that you reward. So reward helpful answers generously</b>

  • Can you create an image map hotspot for an external URL in Dreamweaver CS6?

    Can you create an image map hotspot for an external URL in Dreamweaver CS6?

    Duplicate post: http://forums.adobe.com/thread/1338701?tstart=0

  • How to map a url that does not match with the context root  ?

    does weblogic support url that does not match the context root ?
    ex. the context root is AAA. the welcome page can be
    retrieved using http://localhost:7001/AAA
    Can it be configured to use http://localhost:7001/BBB to bring up the index.html in context root AAA ? if so, how ?

    I agree with Imp68.
    It still amazes me that in 2014 so many web sites are still not standards-compliant and instead insist on sniffing for the user-agent.  And, in the majority of cases, I've found that the websites work fine with any modern browser.
    phardell,
    To be clear, Safari is not the problem, the website is!  The developer of this website is still living in the 1990s and needs to move forward with the times.  Imp68's suggestion will cause Safari to "pretend" to be whatever browser you wish.  Try choosing "Safari 7" if that worked for you in the past and the website will likely go back to working.  If that does not work then try choosing "Internet Explorer 10" from the menu and see if that works.
    No matter what the result, you should look at the bottom of the page for a link to report problems with the website.  Submit a comment that tells them that they need to "modernize your website to support all modern web browsers".
    Good luck.

  • Can we configure company policy in ESS?

    Hi All,
    My client wants to update company policy in ESS (Like Company Dress Code, Office Timings etc,)
    HR Log-in into ESS and post company policies. After that
    This should be display for individuals who logs in ESS with their own user name and password.
    This above requirement in which workset can we configure.
    My idea about that........
    I think company should maintain separate blog (Website).
    After that create Custom URL (Iview)- Then we can call that URL (Blog/ Website).
    Am I right ? or Wrong?
    Else is there any other way to configure.
    Anoku

    Hi Raj,
    This can be achieved, ask your ABAP consultant to define a WD application to display PDF / Image documents and upload the respective file to repository. We can call such applications into ESS Portal and can display them.
    But end users can not update the same documents whenever changes happen in Policy, there is a dependency with consultant again.
    SAP has come up with HR Policy Management in India. Please check below link:
    https://websmp106.sap-ag.de/~sapidb/011000358700000959092012E/HR_Policy_Management.pdf

  • Can I configure two webserver domain in one windows server

    Can I configure two webserver domain in one windows server with default port. ( i.e 80 )
    For Ex:- http://server-name/psp/DOMAIN/?cmd=login and another one
    http://server-name/psp/DOMAIN2/?cmd=login.
    If not please let me know the workaround to do so. B'coz i don't want to put portnumber in my second URL..

    Hi,
    You can even have serveral domains within the same webserver instance.
    During PIA installation (of the second) choose option existing domain and then add an additional site.
    Give the domain a unique name and port to your second application server and you are ready to go.
    I usually do this on sandbox environments to keep the sandbox small , with several databases (Portal, HCM, FIN, CRM) and one PIA with serveral domain.
    But is definitely not what you should do for production systems.
    Each application should have it's one PIA instance.
    Hakan
    I didn't read the port number requirement.
    You can only run one webserver instance on a port number for example port 80.
    But you can still have one webserver PIA with serveral domain on the same port number as described above.
    Edited by: Hakan Biroglu on Mar 14, 2012 2:28 PM

  • How can we configure or control records go into single idoc thru BODS?

    Hi,
    Our case is -
    IDOC format has three segment. Each segments has child nodes -
    1. CONTROL SEGMENT - This is required only once per idoc.
    child1
    child2
    2. SEGMENT1 - sinlge source record to be broken into two segments.
    child1
    child2
    3. SEGMENT2 - sinlge source record to be broken into two segments.
    child1
    child2
    we have a single source (lest say having 100 records).
    In the current design which does generates IDOCS but as many as the no of records in source. Currently we use a row generation transform as dummy (with row count as 1) to pass to the IDOC parent nodes's from clause to escape the error - invalid input to the parent nodes.
    Child nodes are either mapped to the source table or are null.
    Question - How can we configure this in a way that we control how many records go into single idoc. Ex - lets say 50 per idoc so only 2 idoc should be created if 100 records are there.

    HI,
    this sounds to me like Data Services. If so I would suggest to post this into the Data Service forum.
    regards
    Ingo HIlgefort

  • Can we configure SAP server installed in RHEL in windows sapmmc?

    Can we configure SAP server installed in RHEL in windows sapmmc(Which is also sap server with same version and same DB)?
    I have tried to configure using help from previous post in SCN ( SAP MMC in one server to control the entrie landscape ) but it is not working...  As picture shown below after entering the details am clicking on add but nothing is happening...
    Scenario is I have installed 4 VM's with SAP installed in all (out of it 3 linux and 1 windows) & all communicating well and they are in same Network/Landscape & I can configure/manage/logon all servers in host GUI... But If I shutdown my VM or a Laptop...  Every time I have to start all the servers... by starting lsnrctl, DB, sap for all the servers,
    Is there any chance to configure sap in windows sapmmc...???
    Kindly suggest the process step by step...
    Thanks in advance...

    Hi Yüksel
    Thank you for the reply It helped me to configure but i struck in some place.. Dispatcher is getting stopped... I tried to add 3 different sap servers in sapmmc and tried to start.. Three are getting same errors(Guess same error)
    After your suggestion i was able to configure and start SIDadm of host but immediately or after 30sec Dispatcher gets stopped tried to find out some solutions but didnt worked... But i was able to start from there servers manually in linux way startsap, but not in SAPMMC way...
    Could you or please help me in solving trace given below...
    trc file: "dev_disp.new", trc level: 1, release: "700"
    sysno      00
    sid        W41
    systemid   387 (Intel x86 with Linux)
    relno      7000
    patchlevel 0
    patchno    353
    intno      20050900
    make:      single threaded, Unicode, optimized
    pid        22162
    kernel runs with dp version 247000(ext=110000) (@(#) DPLIB-INT-VERSION-247000-UC)
    length of sys_adm_ext is 576 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 22162) [dpxxdisp.c   1345]
      shared lib "dw_xml.so" version 353 successfully loaded
      shared lib "dw_xtc.so" version 353 successfully loaded
      shared lib "dw_stl.so" version 353 successfully loaded
      shared lib "dw_gui.so" version 353 successfully loaded
      shared lib "dw_mdm.so" version 353 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Tue Mar 31 00:02:41 2015
    *** WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0042.qqq.nxst) took 21 seconds
    Tue Mar 31 00:02:52 2015
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 11 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5540]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >willsys41_W41_00                        <
    DpShMCreate: sizeof(wp_adm) 17120 (1712)
    DpShMCreate: sizeof(tm_adm) 4480000 (22288)
    DpShMCreate: sizeof(wp_ca_adm) 28800 (96)
    DpShMCreate: sizeof(appc_ca_adm) 9600 (96)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/524056/524064
    DpShMCreate: sizeof(comm_adm) 524064 (1036)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (92)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (68)
    DpShMCreate: sizeof(vmc_adm) 0 (1684)
    DpShMCreate: sizeof(wall_adm) (38456/34360/80/184)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: SHM_DP_ADM_KEY (addr: 0x4ed2000, size: 5141584)
    DpShMCreate: allocated sys_adm at 0x4ed2000
    DpShMCreate: allocated wp_adm at 0x4ed4260
    DpShMCreate: allocated tm_adm_list at 0x4ed8540
    DpShMCreate: allocated tm_adm at 0x4ed8570
    DpShMCreate: allocated wp_ca_adm at 0x531e170
    DpShMCreate: allocated appc_ca_adm at 0x53251f0
    DpShMCreate: allocated comm_adm at 0x5327770
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0x53a7690
    DpShMCreate: allocated gw_adm at 0x53a76d0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0x53a7700
    DpShMCreate: allocated wall_adm at 0x53a7790
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: Parameter rdisp/queue_lock_level = 2
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> EsILock: use spinlock for locking
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation map
    <EsMap> EsMapUnamFileMapInit: Initialize the memory 240 MB
    Linux: Kernel supports shared memory disclaiming
    Linux: using madvise(<pointer>, <size>, 9).
    Linux: disclaiming for shared memory enabled
    <ES> 239 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 96 MB
    Tue Mar 31 00:02:53 2015
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1752]
    ***LOG Q0K=> DpMsAttach, mscon ( willsys41) [dpxxdisp.c   12953]
    DpStartStopMsg: send start message (myname is >willsys41_W41_00                        <)
    DpStartStopMsg: start msg sent
    Warning: Swap space is configured quite small with 5035 MB.
    It should be two times larger than the amount of RAM (3066 MB).
    See note 171356 for more information.
    Warning: tmpfs at /dev/shm is configured quite small with 1532 MB!
    Minimum value is 2048 MB.
    Recommended size is 75 % of RAM + swap.
    *** INFO  Shm 13 in Pool 10    59082 KB estimated     58800 KB real (    -282 KB    -72 %)
    CCMS: start to initalize 3.X shared alert area (first segment).
    *** ERROR => DpWPCheck: W0 (pid 22217) died (severity=0, status=65280) [dpxxdisp.c   16083]
    child (pid=22217) exited with exit code 255
    my types changed after wp death/restart 0xbf --> 0xbe
    *** ERROR => DpWPCheck: W1 (pid 22218) died (severity=0, status=65280) [dpxxdisp.c   16083]
    child (pid=22218) exited with exit code 255
    *** ERROR => DpWPCheck: W2 (pid 22219) died (severity=0, status=65280) [dpxxdisp.c   16083]
    child (pid=22219) exited with exit code 255
    *** ERROR => DpWPCheck: W3 (pid 22220) died (severity=0, status=65280) [dpxxdisp.c   16083]
    child (pid=22220) exited with exit code 255
    my types changed after wp death/restart 0xbe --> 0xbc
    my types changed after wp death/restart 0xbc --> 0xb8
    my types changed after wp death/restart 0xb8 --> 0xb0
    my types changed after wp death/restart 0xb0 --> 0xa0
    my types changed after wp death/restart 0xa0 --> 0x80
    *** DP_FATAL_ERROR => DpWPCheck: no more work processes
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:04 2015
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long) Tue Mar 31 07:03:04 2015
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA    22217 Ended         no      1   0        0                                                                         
    1 DIA    22218 Ended         no      1   0        0                                                                         
    2 DIA    22219 Ended         no      1   0        0                                                                         
    3 DIA    22220 Ended         no      1   0        0                                                                         
    4 UPD    22221 Ended         no      1   0        0                                                                         
    5 ENQ    22222 Ended         no      1   0        0                                                                         
    6 BTC    22223 Ended         no      1   0        0                                                                         
    7 BTC    22224 Ended         no      1   0        0                                                                         
    8 SPO    22225 Ended         no      1   0        0                                                                         
    9 UP2    22226 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics Tue Mar 31 07:03:04 2015
    ===========================
    +------+--------+--------+--------+--------+--------+
    |  Typ |    now |   high |    max | writes |  reads |
    +------+--------+--------+--------+--------+--------+
    | NOWP |      4 |      4 |   2000 |      4 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  DIA |      1 |      1 |   2000 |      1 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  UPD |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  ENQ |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  BTC |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  SPO |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  UP2 |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    max_rq_id 6
    wake_evt_udp_now 1
    wake events       total     5,  udp     1 ( 20%),  shm     4 ( 80%)
    since last update total     5,  udp     1 ( 20%),  shm     4 ( 80%)
    Dump of tm_adm structure: Tue Mar 31 07:03:04 2015
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks Tue Mar 31 07:03:04 2015
    =============================
    Slots: 300, Used: 0, Max: 0
    +------+--------------+----------+-------------+
    |   id | owner        |   pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:10 2015
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >willsys41_W41_00                        < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_OFF
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect( key 57 valid )
    ShmProtect( slot Index 56 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x151f000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 57 prot 3/0 done
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect( key 57 valid )
    ShmProtect( slot Index 56 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x151f000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 57 prot 1/4096 done
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing proc (22215) (SOFT_KILL)
    Stop icman
    killing proc (22216) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    kill(22215,0) -> ESRCH: process died
    wait for end of icman
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:11 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:12 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:13 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:14 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:15 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:16 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:17 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:18 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:19 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:20 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:21 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) successful -> process alive
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Mar 31 00:03:23 2015
    NiISelect: TIMEOUT occured (1000ms)
    kill(22216,0) -> ESRCH: process died
    DpStartStopMsg: send stop message (myname is >willsys41_W41_00                        <)
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiBufIAlloc: malloc NIBUF-IN, to 32110 bytes
    MsIBufAlloc: allocated buffer
    NiIRead: hdl 2 received data (rcd=458,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=458
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 458 bytes
    MSG received, len 110+348, flag 4, from willsys41_W41_00    , typ 0, key FFFFFFFF00000000
    DpHalt: received 348 bytes from message server
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    DpHalt: received 4 bytes from message server
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    DpHalt: received 4 bytes from message server
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    DpHalt: received 4 bytes from message server
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    DpHalt: received 4 bytes from message server
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    DpHalt: received 4 bytes from message server
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    DpHalt: received 4 bytes from message server
    NiIRead: hdl 2 received data (rcd=214,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=214
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 214 bytes
    MSG received, len 110+104, flag 3, from MSG_SERVER          , typ 0, key -
    DpHalt: received 104 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 2 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 2 (r)
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    Tue Mar 31 00:03:24 2015
    NiIPeek: peek for hdl 2 timed out (r; 1000ms)
    NiIRead: read for hdl 2 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   13304]
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 2 in set0
    SiSelPSet: set events of sock 11 to: ---
    NiBufISelRemove: remove hdl 2 from set0
    SiSelPRemove: removed last sock 11 (pos=3)
    NiSelIRemove: removed hdl 2
    NiICloseHandle: shutdown and close hdl 2 / sock 11
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EsCleanup destroy slot 0
    <EsMap: unlink /SAP_ES_00_000
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ShmCreate( 76, 0, 2, 0x0xcef3328 )
    ShmKeyPermission( 76 ) = 0740 (octal)
    ShmDelete( 13 )
    cleanup event management
    cleanup shared memory/semaphores
    ShmCleanup SHM_SYS_ADM_KEY
    ShmCleanup( 1 )
    ShmCreate( 1, 0, 2, 0x0xbf99a5e8 )
    ShmProtect( 1, 3 )
    ShmProtect( key 1 valid )
    ShmProtect( slot Index 0 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x5e1000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 1 prot 3/0 done
    ShmCreate( 1, 0, 2, -> 0x0x5e1000 )
    ShmCleanup SHM_DP_ADM_KEY
    ShmCleanup( 2 )
    ShmCreate( 2, 0, 2, 0x0xbf99a5e8 )
    ShmProtect( 2, 3 )
    ShmProtect( key 2 valid )
    ShmProtect( slot Index 1 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x4ed2000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 2 prot 3/0 done
    ShmCreate( 2, 0, 2, -> 0x0x4ed2000 )
    ShmCleanup SHM_DP_CA_KEY
    ShmCleanup( 3 )
    ShmCreate( 3, 0, 2, 0x0xbf99a5e8 )
    ShmProtect( 3, 3 )
    ShmProtect( key 3 valid )
    ShmProtect( slot Index 2 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x1655000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 3 prot 3/0 done
    ShmCreate( 3, 0, 2, -> 0x0x1655000 )
    ShmCleanup SHM_PF_KEY
    ShmCleanup( 4 )
    ShmCreate( 4, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 4 ) = 0740 (octal)
    ShmCleanup SHM_PRES_BUF
    ShmCleanup( 14 )
    ShmCreate( 14, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 14 ) = 0740 (octal)
    ShmCleanup SHM_CALI_BUFFER
    ShmCleanup( 11 )
    ShmCreate( 11, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 10, 11, 0, 2, 0x0xbf99a52c )
    ShmCleanup SHM_DB_TBUFF
    ShmCleanup( 19 )
    ShmCreate( 19, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 19 ) = 0740 (octal)
    ShmCleanup SHM_DB_TBUFF_P
    ShmCleanup( 33 )
    ShmCreate( 33, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 33 ) = 0740 (octal)
    ShmCleanup SHM_DB_STBUFF
    ShmCleanup( 41 )
    ShmCreate( 41, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 41 ) = 0740 (octal)
    ShmCleanup SHM_DB_TTBUFF
    ShmCleanup( 42 )
    ShmCreate( 42, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 40, 42, 0, 2, 0x0xbf99a52c )
    ShmCreate( 40, 0, 2, 0x0xbf99a1ec )
    ShmKeyPermission( 40 ) = 0740 (octal)
    ShmCleanup SHM_DB_FTBUFF
    ShmCleanup( 43 )
    ShmCreate( 43, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 40, 43, 0, 2, 0x0xbf99a52c )
    ShmCreate( 40, 0, 2, 0x0xbf99a1ec )
    ShmKeyPermission( 40 ) = 0740 (octal)
    ShmCleanup SHM_DB_SNTBUFF
    ShmCleanup( 45 )
    ShmCreate( 45, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 40, 45, 0, 2, 0x0xbf99a52c )
    ShmCreate( 40, 0, 2, 0x0xbf99a1ec )
    ShmKeyPermission( 40 ) = 0740 (octal)
    ShmCleanup SHM_DB_IRBUFF
    ShmCleanup( 44 )
    ShmCreate( 44, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 40, 44, 0, 2, 0x0xbf99a52c )
    ShmCreate( 40, 0, 2, 0x0xbf99a1ec )
    ShmKeyPermission( 40 ) = 0740 (octal)
    ShmCleanup SHM_DB_OBJ_BUFFER
    ShmCleanup( 54 )
    ShmCreate( 54, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 54 ) = 0740 (octal)
    ShmCleanup SHM_DB_SYNC
    ShmCleanup( 46 )
    ShmCreate( 46, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 40, 46, 0, 2, 0x0xbf99a52c )
    ShmCreate( 40, 0, 2, 0x0xbf99a1ec )
    ShmKeyPermission( 40 ) = 0740 (octal)
    ShmCleanup SHM_DB_CUA_BUFFER
    ShmCleanup( 47 )
    ShmCreate( 47, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 40, 47, 0, 2, 0x0xbf99a52c )
    ShmCreate( 40, 0, 2, 0x0xbf99a1ec )
    ShmKeyPermission( 40 ) = 0740 (octal)
    ShmCleanup SHM_DB_OTR_BUFFER
    ShmCleanup( 64 )
    ShmCreate( 64, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 64 ) = 0740 (octal)
    ShmCleanup SHM_DB_ESM_BUFFER
    ShmCleanup( 65 )
    ShmCreate( 65, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 65 ) = 0740 (octal)
    ShmCleanup SHM_ROLL_AREA_KEY
    ShmCleanup( 9 )
    ShmCreate( 9, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 9 ) = 0740 (octal)
    ShmCleanup SHM_PAGING_AREA_KEY
    ShmCleanup( 8 )
    ShmCreate( 8, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 8 ) = 0740 (octal)
    ShmCleanup SHM_ROLL_ADM_KEY
    ShmCleanup( 17 )
    ShmCreate( 17, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 10, 17, 0, 2, 0x0xbf99a52c )
    ShmCleanup SHM_PAGING_ADM_KEY
    ShmCleanup( 18 )
    ShmCreate( 18, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 18 ) = 0740 (octal)
    ShmCleanup SHM_PXA_KEY
    ShmCleanup( 6 )
    ShmCreate( 6, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 6 ) = 0740 (octal)
    ShmCleanup SHM_ENQ_TABLE_KEY
    ShmCleanup( 34 )
    ShmCreate( 34, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 34 ) = 0740 (octal)
    ShmCleanup SHM_ENQID_KEY
    ShmCleanup( 58 )
    ShmCreate( 58, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 58 ) = 0740 (octal)
    ShmCleanup SHM_VB_ADM_KEY
    ShmCleanup( 7 )
    ShmCreate( 7, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 7 ) = 0740 (octal)
    ShmCleanup SHM_ES2_ADM
    ShmCleanup( 76 )
    ShmCreate( 76, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 76 ) = 0740 (octal)
    ShmCleanup SHM_EM_ADM
    ShmCleanup( 51 )
    ShmCreate( 51, 0, 2, 0x0xbf99a5e8 )
    ShmProtect( 51, 3 )
    ShmProtect( key 51 valid )
    ShmProtect( slot Index 50 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x6e14000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 51 prot 3/0 done
    ShmCreate( 51, 0, 2, -> 0x0x6e14000 )
    ShmCleanup SHM_EM2_ADM
    ShmCleanup( 77 )
    ShmCreate( 77, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 77 ) = 0740 (octal)
    ShmCleanup SHM_EG2_ADM
    ShmCleanup( 78 )
    ShmCreate( 78, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 78 ) = 0740 (octal)
    ShmCleanup SHM_MSBUF
    ShmCleanup( 52 )
    ShmCreate( 52, 0, 2, 0x0xbf99a5e8 )
    ShmProtect( 52, 3 )
    ShmProtect( key 52 valid )
    ShmProtect( slot Index 51 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x60b000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 52 prot 3/0 done
    ShmCreate( 52, 0, 2, -> 0x0x60b000 )
    ShmCleanup SHM_THRUN_ADM_KEY(th run adm)
    ShmCleanup( 30 )
    ShmCreate( 30, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 30 ) = 0740 (octal)
    ShmCleanup SHM_JAVA
    ShmCleanup( 70 )
    ShmCreate( 70, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 70 ) = 0740 (octal)
    ShmCleanup SHM_PF_AS_KEY(Appl.Statistics)
    ShmCleanup( 56 )
    ShmCreate( 56, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 56 ) = 0740 (octal)
    ShmCleanup SHM_PROFILE
    ShmCleanup( 57 )
    ShmCreate( 57, 0, 2, 0x0xbf99a5e8 )
    ShmProtect( 57, 3 )
    ShmProtect( key 57 valid )
    ShmProtect( slot Index 56 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x151f000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 57 prot 3/0 done
    ShmCreate( 57, 0, 2, -> 0x0x151f000 )
    ShmCleanup SHM_NO_BUFFER
    ShmCleanup( 48 )
    ShmCreate( 48, 0, 2, 0x0xbf99a5e8 )
    ShmGet( 40, 48, 0, 2, 0x0xbf99a52c )
    ShmCreate( 40, 0, 2, 0x0xbf99a1ec )
    ShmKeyPermission( 40 ) = 0740 (octal)
    removing request queue
    ShmCleanup( 31 )
    ShmCreate( 31, 0, 2, 0x0xbf99a5d8 )
    ShmProtect( 31, 3 )
    ShmProtect( key 31 valid )
    ShmProtect( slot Index 30 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x573d000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 31 prot 3/0 done
    ShmCreate( 31, 0, 2, -> 0x0x573d000 )
    ShmCleanup SHM_POOL_0
    ShmCleanup( 10 )
    ShmCreate( 10, 0, 2, 0x0xbf99a5e8 )
    ShmProtect( 10, 3 )
    ShmProtect( key 10 valid )
    ShmProtect( slot Index 9 )
    ShmProtect( Mode: 76000000 )
    ShmCreate( 10, 0, 2, -> 0x0xb3723000 )
    ShmCleanup SHM_DB_POOL
    ShmCleanup( 40 )
    ShmCreate( 40, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 40 ) = 0740 (octal)
    ShmCleanup SHM_POOL_50
    ShmCleanup( 50 )
    ShmCreate( 50, 0, 2, 0x0xbf99a5e8 )
    ShmKeyPermission( 50 ) = 0740 (octal)
    MiCleanup:
    ShmCleanup( 62 )
    ShmCreate( 62, 0, 2, 0x0xbf99a5c8 )
    ShmProtect( 62, 3 )
    ShmProtect( key 62 valid )
    ShmProtect( slot Index 61 )
    ShmProtect( Mode: 0 )
    ShmProtect( before shmdt )
    ShmProtect( after shmdt )
    ShmProtect( before shmat 0x8b30e000)
    ShmProtect( after shmat )
    ShmProtect: shmat key 62 prot 3/0 done
    ShmCreate( 62, 0, 2, -> 0x0x8b30e000 )
    MpiCleanup() -> 0
    SemKeyPermission( 1 ) = 0740 (octal)
    SemKeyPermission( 1 ) = 0740 (octal)
    SemKeyPermission( 6 ) = 0740 (octal)
    SemKeyPermission( 6 ) = 0740 (octal)
    SemKeyPermission( 7 ) = 0740 (octal)
    SemKeyPermission( 7 ) = 0740 (octal)
    SemKeyPermission( 8 ) = 0740 (octal)
    SemKeyPermission( 10 ) = 0740 (octal)
    SemKeyPermission( 10 ) = 0740 (octal)
    SemKeyPermission( 11 ) = 0740 (octal)
    SemKeyPermission( 11 ) = 0740 (octal)
    SemKeyPermission( 12 ) = 0740 (octal)
    SemKeyPermission( 12 ) = 0740 (octal)
    SemKeyPermission( 13 ) = 0740 (octal)
    SemKeyPermission( 13 ) = 0740 (octal)
    SemKeyPermission( 14 ) = 0740 (octal)
    SemKeyPermission( 14 ) = 0740 (octal)
    SemKeyPermission( 15 ) = 0740 (octal)
    SemKeyPermission( 16 ) = 0740 (octal)
    SemKeyPermission( 16 ) = 0740 (octal)
    SemKeyPermission( 17 ) = 0740 (octal)
    SemKeyPermission( 17 ) = 0740 (octal)
    SemKeyPermission( 18 ) = 0740 (octal)
    SemKeyPermission( 18 ) = 0740 (octal)
    SemKeyPermission( 19 ) = 0740 (octal)
    SemKeyPermission( 19 ) = 0740 (octal)
    SemKeyPermission( 20 ) = 0740 (octal)
    SemKeyPermission( 20 ) = 0740 (octal)
    SemKeyPermission( 21 ) = 0740 (octal)
    SemKeyPermission( 21 ) = 0740 (octal)
    SemKeyPermission( 22 ) = 0740 (octal)
    SemKeyPermission( 22 ) = 0740 (octal)
    SemKeyPermission( 24 ) = 0740 (octal)
    SemKeyPermission( 24 ) = 0740 (octal)
    SemKeyPermission( 25 ) = 0740 (octal)
    SemKeyPermission( 25 ) = 0740 (octal)
    SemKeyPermission( 26 ) = 0740 (octal)
    SemKeyPermission( 26 ) = 0740 (octal)
    SemKeyPermission( 27 ) = 0740 (octal)
    SemKeyPermission( 27 ) = 0740 (octal)
    SemKeyPermission( 28 ) = 0740 (octal)
    SemKeyPermission( 28 ) = 0740 (octal)
    SemKeyPermission( 29 ) = 0740 (octal)
    SemKeyPermission( 29 ) = 0740 (octal)
    SemKeyPermission( 30 ) = 0740 (octal)
    SemKeyPermission( 30 ) = 0740 (octal)
    SemKeyPermission( 31 ) = 0740 (octal)
    SemKeyPermission( 31 ) = 0740 (octal)
    SemKeyPermission( 35 ) = 0740 (octal)
    SemKeyPermission( 35 ) = 0740 (octal)
    SemKeyPermission( 36 ) = 0740 (octal)
    SemKeyPermission( 37 ) = 0740 (octal)
    SemKeyPermission( 42 ) = 0740 (octal)
    SemKeyPermission( 42 ) = 0740 (octal)
    SemKeyPermission( 43 ) = 0740 (octal)
    SemKeyPermission( 43 ) = 0740 (octal)
    SemKeyPermission( 44 ) = 0740 (octal)
    SemKeyPermission( 44 ) = 0740 (octal)
    SemKeyPermission( 45 ) = 0740 (octal)
    SemKeyPermission( 47 ) = 0740 (octal)
    SemKeyPermission( 47 ) = 0740 (octal)
    SemKeyPermission( 48 ) = 0740 (octal)
    SemKeyPermission( 48 ) = 0740 (octal)
    SemKeyPermission( 49 ) = 0740 (octal)
    SemKeyPermission( 49 ) = 0740 (octal)
    SemKeyPermission( 50 ) = 0740 (octal)
    SemKeyPermission( 51 ) = 0740 (octal)
    SemKeyPermission( 51 ) = 0740 (octal)
    SemKeyPermission( 53 ) = 0740 (octal)
    SemKeyPermission( 53 ) = 0740 (octal)
    SemKeyPermission( 54 ) = 0740 (octal)
    SemKeyPermission( 54 ) = 0740 (octal)
    SemKeyPermission( 55 ) = 0740 (octal)
    SemKeyPermission( 55 ) = 0740 (octal)
    SemKeyPermission( 56 ) = 0740 (octal)
    SemKeyPermission( 56 ) = 0740 (octal)
    SemKeyPermission( 57 ) = 0740 (octal)
    SemKeyPermission( 57 ) = 0740 (octal)
    SemKeyPermission( 58 ) = 0740 (octal)
    SemKeyPermission( 58 ) = 0740 (octal)
    SemKeyPermission( 59 ) = 0740 (octal)
    SemKeyPermission( 62 ) = 0740 (octal)
    SemKeyPermission( 63 ) = 0740 (octal)
    SemKeyPermission( 64 ) = 0740 (octal)
    SemKeyPermission( 65 ) = 0740 (octal)
    SemKeyPermission( 66 ) = 0740 (octal)
    SemKeyPermission( 67 ) = 0740 (octal)
    SemKeyPermission( 69 ) = 0740 (octal)
    SemKeyPermission( 69 ) = 0740 (octal)
    SemKeyPermission( 70 ) = 0740 (octal)
    SemKeyPermission( 72 ) = 0740 (octal)
    removing Semaphore-Management
    closing connect handles (dgm + tcp)
    DpDelSocketInfo: del info for socket 0 (type=2)
    NiICloseHandle: shutdown and close hdl 0 / sock 8
    DpDelSocketInfo: del info for socket 1 (type=1)
    NiICloseHandle: shutdown and close hdl 1 / sock 9 - sock 10
    ***LOG Q05=> DpHalt, DPStop ( 22162) [dpxxdisp.c   11739]
    *** shutdown completed - server stopped ***
    Thanks in advance....
    Regards,
    Sundar

Maybe you are looking for

  • Override JNDI names in persistence.xml and @resource annotation

    I have a Java EE 7 application that I am developing for use with both GlassFish and WildFly, but I have discovered that both application servers use a slightly different format for specifying JNDI names. In GlassFish the persistence.xml file referenc

  • How can I disable or delete HP TouchSmart Calendar from my PC

    Hello...I have an HP Pavilion slimeline Model: s5-1205z. I have over 30,000 error messages related to the HP TouchSmart Calendar on my PC. I do not have nor use a TouchSmart anything, and do not understand why these errors are happening. They appear

  • Organizational Structure for Public sector

    Hi Experts , I am in a public sector company ...would like to know is there any change in organizational sector ...can any one send me link or document  or template so that i can have a view of Standard SAP public sector org.structure ...so that i ca

  • I'm having trouble with logging in on Premiere Elements 8.

    I'm on my Lenovo Thinkpad X200 Tablet, running Windows 8 Pro. I just installed Adobe Premiere Elements 8 on it, perfectly fine. But, when I log in, it will bring up this screen: But when I fill everything in, it says that an error has occured and my

  • [svn] 3710: Moved the wireframe skins into a "Wireframe" theme.

    Revision: 3710 Author: [email protected] Date: 2008-10-17 10:46:28 -0700 (Fri, 17 Oct 2008) Log Message: Moved the wireframe skins into a "Wireframe" theme. A subsequent checkin is required to include the theme in the SDK builds. Spiffed up the wiref