Global namespace

Hi,
can someone tell me what the difference is between what is the reason SAP puts objects in
http://sap.com/xi/<software_component>/Global  or http://sap.com/xi/<software_component>/Global2 or http://sap.com/xi/<software_component>
What does Global or Global2 mean in this context ? Can't seem to find a clear description for this.
Thanks.

Hello
I don't think there is any specific significance behind the use of "Global" and "Global2" in these namespaces. These are just unique identifiers and are used to store configuration objects, data types etc.
Repository Namespaces 
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/a3/cc132914cf41e4a193c32627a87542/frameset.htm
Regards
Mark

Similar Messages

  • Moving object to global namespace

    Hi
    I created an Include in a user exit functional module and saved in $TMP.  Now I am trying to move it to a package which was created in global namespace like /gc/zgfim, but it is giving me an error
    'Customer object PROG Z_FI_TEST_CONTRACT_AGREMENT cannot be assigned to package /GC/ZGFIM'. 
    Can someone tell me why I am getting this error or how to move this?

    Hi,
    i suppose you have edit rights for the namespace /gc/.
    It ist not possible to add an dev object to a package if the namespace of the object is diffrent from this of the package.
    I mean you have to rename the Prog Z_FI_TEST_CONTRACT_AGREMENT  in /gc/FI_TEST_CONTRACT_AGREMENT this works..
    If you are not the owner of the /gc/ namespace you can't change a package with this namespace. In this case i suppose you just develop an enhancement, so you need to create your own package for yours developmenst for example Z_FI_ENHANCEMENTS.
    Regards,
    Gianpietro

  • Global & waveset attributes

    Hi
    I have created a form with fields. All the fields are in global namespace as i need to pass the values to all the resources.
    The problem is that the values are populated in my resources, but in Identity manager's user view, the values as well the attribute types are null.
    I have not added these field names in the extended attributes list.
    Can anyone pls help me as to why the values are not populated in Identity Manager's user view? Should these global variables be specified as extended attributes ?
    Thanks in advance.

    IDM does not store a copy of the resource attributes in the repository. All values you set in the global namespace will be pushed to all resources but not stored in the repo.
    You can only store 5 values in the extended attributes (there are only 5 spots available) If you want to store some of the global variables in the repository you will have to use the extended attributes for that and populate them with data in the form.
    WilfredS

  • Global attributes in UserSummary Report

    Hi,
    I am trying to build a report which would give user report which contains the extended attributes. For this I have modified the UserSummary ('UI_REPTS_XML_USER_TITLE') report and the extended attributes which are listed under 'waveset.attributes' are displayed correctly. The problem is that I need to refer some of the attributes which are under "global" namespace. Any idea how I can do it? If I specify global.<attributeName> in the report ... it gives null. I already have the extended attributes as queryable.
    Thanks,
    BB

    Hi,
    I am trying to build a report which would give user report which contains the extended attributes. For this I have modified the UserSummary ('UI_REPTS_XML_USER_TITLE') report and the extended attributes which are listed under 'waveset.attributes' are displayed correctly. The problem is that I need to refer some of the attributes which are under "global" namespace. Any idea how I can do it? If I specify global.<attributeName> in the report ... it gives null. I already have the extended attributes as queryable.
    Thanks,
    BB

  • XML Namespace Prefix required

    Hello,
    our partner uses Biztalk to receive our SOAP calls. They tell us that each attribute and element needs to have the namespace prefix otherwise Biztalk cannot read it.
    We are sending:
    SAP XI Output
    <?xml version="1.0" encoding="utf-8" ?>
    <ns11:Receive_SAP xmlns:ns11="http://zzz.com/it/mmpur/sem/xi">
      <part>
       <xform id="SWI:PLG:Order Header - SAP">
        <model>A</model>
       </xform>
      </part>
    </ns11:Receive_SAP>
    They want:
    Biztalk Requirement:
    <?xml version="1.0" encoding="utf-8" ?>
    <ns11:Receive_SAP xmlns:ns11="http://zzz.com/it/mmpur/sem/xi">
      <ns11:part>
       <ns11:xform id="SWI:PLG:Order Header - SAP">
        <ns11:model>A</ns11:model>
       </ns11:xform>
      </ns11:part>
    </ns11:Receive_SAP>
    Can that be done with the XI 3.0 Graphical mapping or do I have to use JAVA Mapping or XSLT?
    Did anyone come accros this before with Biztalk Server and it there an option to avoid it on the Biztalk Server side?
    Thanks
    Stefan

    Hi Stefan,
    Where did you obtain the schema (XSD) from? 
    Most likely, the elements you are using are local elements and do not belong to the target namespace, but to an unnamed global namespace.  This is a typical characteristic of schema's defined by SAP.
    The short answer/solution is probably putting elementFormDefault="true" in the header of your target schema. That should do the trick.
    Kind regards, Guy Crets

  • Enhanced protected mode and global named shared memory object

    Good morning.
    I've written a bho that do data exchange with a system service. The service creates named shared memory objects in the Global namespace. Outside appcontainer IE 11 sandboxed everything works fine lowering objects integrity level. Inside the sandboxed environment
    OpenFileMappingW seems to return a valid handle but the calls to MapViewOfFile always gives access denied. What i'm missing? Thank you.
    Service code for security descriptor creation:
    if (InitializeSecurityDescriptor(pSA->lpSecurityDescriptor, SECURITY_DESCRIPTOR_REVISION))
    if (ConvertStringSecurityDescriptorToSecurityDescriptorW(L"D:P(A;;GA;;;WD)(A;;GA;;;AC)", SDDL_REVISION_1, &pSecDesc, NULL) == TRUE)//
                BOOL fAclPresent = FALSE;
                BOOL fAclDefaulted = FALSE;
                if (GetSecurityDescriptorDacl(pSecDesc, &fAclPresent, &pDacl, &fAclDefaulted) == TRUE)
                    bRetval = SetSecurityDescriptorDacl(pSA->lpSecurityDescriptor, TRUE, pDacl, FALSE);
            if (bRetVal ==TRUE && ConvertStringSecurityDescriptorToSecurityDescriptorW(L"S:(ML;;NW;;;LW)", SDDL_REVISION_1, &pSecDesc, NULL) == TRUE)
                BOOL fAclPresent = FALSE;
                BOOL fAclDefaulted = FALSE;
                if (GetSecurityDescriptorSacl(pSecDesc, &fAclPresent, &pSacl, &fAclDefaulted) == TRUE)
                    bRetval = SetSecurityDescriptorSacl(pSA->lpSecurityDescriptor, TRUE, pSacl, FALSE);
                    OutputDebugStringW(L"SACL ok.");
        return bRetval;
    BHO code
    LPMEMORYBUFFER OpenDataChannel(HANDLE *hQueue)
        LPMEMORYBUFFER lp = NULL;
        WCHAR data[512] = { 0 };
        for (int a = 0;; a++)
            if(iestatus==FALSE)StringCchPrintfW(data, 512,L"Global\\UrlfilterServiceIE.%d", a);//NOT in EPM
            else StringCchPrintfW(data, 512, L"%s\\Global\\UrlfilterServiceIE.%d",appcontainernamedobjectpath, a);//in EPM
            *hQueue = OpenFileMappingW(FILE_MAP_ALL_ACCESS, TRUE, data);//FILE_MAP_ALL_ACCESS
            if (*hQueue != NULL)
                //file mappato esistente
                lp = (LPMEMORYBUFFER)MapViewOfFile(*hQueue, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(MEMORYBUFFER));//FILE_MAP_ALL_ACCESS
                if (lp != NULL)

    Ciao Ritchie, thanks for coming here. ;-)
    I call (only) OpenFileMapping and MapViewOfFile inside my code and i get access denied at the first try. As i stated before this happens when IE11 is working inside EPM 32/64bit mode, outside EPM it works as it should. However i decided to take a different
    approach to do IPC, because, you want it or not, the service is up and running as SYSTEM... Still i'm really interested about two points:
    1) can i use global kernel objects in EPM mode?
    2) if one is "yes, you can": what's wrong with my code? The security descriptor? Something else?
    Thanks all.

  • XML Namespace in WebService Request/Response

    Hi all,
    I have a question regarding xml namespace usage in wsdl and the corresponding request/response messages.
    I have already browsed quite some articles about xml namespaces as well as some forum threads, but I am still not sure.
    I have the following part of a wsdl document (generated by Integration Directory), defining a targetnamespace.
    u2026
    <wsdl:types>
        <xsd:schema targetNamespace="http://www.dorma.com/sap/xi/finance"
                             xmlns="http://www.dorma.com/sap/xi/finance"
                             xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <xsd:element name="DebtorGetDetailResponse" type="Z_BAPI_DEBTOR_GETDETAIL_Response"></xsd:element>
            u2026
            <xsd:complexType name="Z_BAPI_DEBTOR_GETDETAIL_Response">
                <xsd:sequence>
                    <xsd:element name="DEBITOR_COMPANY_DETAIL" type="BAPI1007_5" minOccurs="0">
                    </xsd:element> u2026
                </xsd:sequence>
            </xsd:complexType>
            u2026
        </xsd:schema>
        u2026
    </wsdl:types>
    u2026
    In my understanding, all types defined in the schema section of a wsdl document will be in the targetnamespace, if defined.
    Therefore the element DEBITOR_COMPANY_DETAIL would be in the namesapce
    http://www.dorma.com/sap/xi/finance
    However, the ABAP proxy generates a response message like follows,
    where only the root element is in this namespace and the child elements are in the global namespace:
    <?xml version="1.0" encoding="utf-8"?>
    <ns1:DebtorGetDetailResponse xmlns:ns1="http://www.dorma.com/sap/xi/finance"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <DEBITOR_COMPANY_DETAIL>
            u2026
        </DEBITOR_COMPANY_DETAIL>
        u2026
    </ns1:DebtorGetDetailResponse>
    Do I have a wrong understand of the wsdl (xml schema) or is this an erroneous behavior?
    The problem is that some 3rd-party software web service module does not accept
    the response message as not complient with the respective wsdl document.
    Any input is appreciated.
    Thanks
    Hans
    Edited by: Hans-Jürgen Schwippert on Oct 1, 2008 12:02 PM

    I have the same problem. I am trying to connect to a webservice running on IBM websphere but it doesn't accept the xml in my request. It appears to be the same namespace issue.
    Did you ever find a solution for this?
    Is it a valid webservice call if you omit the namespace for an element or is this a bug in the Adaptive WS implementation?
    Web Dynpro web service model generated request:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Header>
    <sapsess:Session xmlns:sapsess="http://www.sap.com/webas/630/soap/features/session/">
    <enableSession>true</enableSession>
    </sapsess:Session>
    </SOAP-ENV:Header>
    <SOAP-ENV:Body>
    look between these lines -
    <ns1:tamKontrolleraKontoLastAnrop xmlns:ns1="http://schemas.fora.se/modell/tam/1.0/TAM_Data">
    <AnvandarNamn>30039647</AnvandarNamn>
    </ns1:tamKontrolleraKontoLastAnrop>
    look between these lines -
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    As you can see the tag
    <AnvandarNamn>30039647</AnvandarNamn>
    is missing a namespace.
    It should be
    <ns1:AnvandarNamn>30039647</ns1:AnvandarNamn>
    Using a third part tool called Soapui i generate this request that works:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tam="http://schemas.fora.se/modell/tam/1.0/TAM_Data">
       <soapenv:Header/>
       <soapenv:Body>
          <tam:tamKontrolleraKontoLastAnrop>
             <tam:AnvandarNamn>30039647</tam:AnvandarNamn>
          </tam:tamKontrolleraKontoLastAnrop>
       </soapenv:Body>
    </soapenv:Envelope>

  • Create user namespace in OSB 10gR3

    In OSB 10gR3 we can only create user namespace in a stage, but another stage can not use this specified namespace.
    can we create a global namespace for everystate like system namespace? and how?
    Thx

    Solved it,
    The problem was with the rule not the call.
    global.firstname is correct

  • JNDI Namespaces

    Hi
    I'm using JNDI with JBoss 3.0.2, and I'm having some trouble understanding why I can't browse the JNDI tree correctly. JBoss comes with a nifty tool called jmx-console, which is a web-app that lets you perform management functions. Now when I get jmx-console to show me a list of bound JNDI names, it shows me
    java: namespace
    global jndi namespace
    This interested me, and I made a little JNDI browser which show all the names in the context you specify. What I found is that I can't differentiate in my code between the java: namespace and the global one. Anyone know how to do this?
    The specific scenario is thus:
    I'm using javamail, and want to get the javax.mail.Session object that JBoss initialises and stores at the JNDI name java:/MailSession. When I do a lookup on this name, I get a NameNotBoundException, because my program is looking in the "global" namespace. How can I get it to look in the java: namespace?
    Any help would be appreciated
    Regards
    Daniel

    That's what I thought, and it seems to be the logical thing to do. But when I try doing a lookup from an app on either of the namespaces, I get the same result - as if there is no distinction between the two. My little jndi browser gives me the same result as this - browsing the java: and global namepaces yields the same result (however from the jboss jmx-console webapp, there is a distinction).
    Thus the confusion.
    Ideas?

  • SunStudio on Linux: C functions are not in std:: namespace

    Hi,
    i'm using SunStudio 12 compilers on a Debian Etch x86 host and have some compilation problems.
    The compilers complains that C functions are not in std:: but only in the global namespace.
    I thought the standard was that they are in both namespaces.
    I suspect the issue may be related to system headers since the problem never occured with Sarge nor Solaris.
    Anyone as some hint to solve this problem ?
    I there a "clean" workaround ?
    Thanks,
    Aurelien

    Let me clarify Paul's comments.
    If you include a C-style header like <stdio.h>, you should get names in both namespace std and in the global namespace.
    That is, the following program should compile with Sun C++: #include <stdio.h>
    int main()
        std::printf("Hello ");
        printf("world!\n");
    }If you include the C++ versions of the C headers, like <cstdio>, using Sun C++ you get names only in namespace std -- except on Linux.
    The g++ compiler, particularly on Linux, does not follow the same rules. The <stdio.h> header puts names only in the global namespace, and <cstdio> puts names in both namespaces. To allow compilation of programs on Linux that compile with g++, Sun C++ tends to follow g++ rules where they are looser than what the C++ Standard says. (For some definition of "looser".)
    The most portable approach is to use the <xxx.h> C-style headers, and do not qualify the names from the headers with "std::".
    That is, the following program should compile everywhere: #include <stdio.h>
    int main()
        printf("Hello ");
        printf("world!\n");
    }

  • Problem calling a session bean (EJB 3.0)

    Hello,
    I'm new to netbeans and J2EE. I'm using NetBeans 5.5 Beta 2 and sun application server 9 pe.
    I created a new enterprise application and i'm trying to access a Session Bean (Remote and Stateless)
    from the app-client (outside the main class).
    This is the loockup method that was generated by the IDE (Enterprise Resources > Call enterprise bean):
    private ejb.SessionBeanDoenteRemote lookupSessionBeanDoenteBean() {
    try {
    javax.naming.Context c = new javax.naming.InitialContext();
    return (ejb.SessionBeanDoenteRemote) c.lookup("java:comp/env/ejb/SessionBeanDoenteBean");
    catch(javax.naming.NamingException ne) {
    java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
    throw new RuntimeException(ne);
    When I run the application and try to invoke the lookup method my application gets the following exception:
    SEVERE: exception caught
    javax.naming.NameNotFoundException: No object bound to name java:comp/env/ejb/Se
    ssionBeanDoenteBean
    at com.sun.enterprise.naming.NamingManagerImpl.lookup(NamingManagerImpl.
    java:751)
    at com.sun.enterprise.naming.java.javaURLContext.lookup(javaURLContext.j
    ava:156)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:307
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at intensivecare.entrada.JDialogEntrada.lookupSessionBeanDoenteBean(JDia
    logEntrada.java:219)
    at intensivecare.entrada.JDialogEntrada.buttonMenuGravarActionPerformed(
    JDialogEntrada.java:79)
    at intensivecare.JDialogWizzard$2.jButtonGravarActionPerformed(JDialogWi
    zzard.java:178)
    at componentes.JTaskPanelMenu$3.actionPerformed(JTaskPanelMenu.java:54)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:18
    49)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.jav
    a:2169)
    Please... can someone help me?

    The portable way to acquire the dependency is through java:comp/env or @EJB. Accessing the
    global namespace directly is not recommended. If you use an ejb-ref, you need to define it
    in the component environment within which you'll be looking up the dependency. So if you're
    looking it up from an Application Client, you'll need to define the ejb-ref in application-client.xml.
    Also, the ejb-ref-name is the portion of the string after java:comp/env. There is no automatic
    "ejb" appended to it. If you do ic.lookup("java:comp/env/foo"), your ejb-ref-name would be "foo".
    You can use @EJB but it can only be defined in certain managed classes such as the
    Application Client main class.
    You can find additional info in our EJB FAQ :
    https://glassfish.dev.java.net/javaee5/ejb/EJB_FAQ.html
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • EXCEPTION_ACCESS_VIOLATION Problem

    Hello,
    Everytime I launch this Tivoli TME client I get this access Violation error. I have un-install java and re-installed it with the same result. It use to work fine but now just does a dump. Reloaded the program on other pc's and it works fine.
    NULL ------------------------------------------------------------------------
    0SECTION TITLE subcomponent dump routine
    NULL ===============================
    1TISIGINFO signal 11 received
    1TIDATETIME Date: 2011/12/29 at 12:46:01
    1TIFILENAME Javacore filename: C:\Tivoli\TEC39FP8\javacore.20111229.124601.2836.txt
    NULL ------------------------------------------------------------------------
    0SECTION XHPI subcomponent dump routine
    NULL ==============================
    1XHEXCPCODE Exception code: C0000005 Access Violation
    1XHEXCPADDRESS Fault address: 700D6DC3 01:000D5DC3
    1XHEXCPMODULE Fault module: C:\Tivoli\TEC39FP8\jre\bin\awt.dll
    NULL
    1XHREGISTERS Registers:
    2XHREGISTER EAX:00000002
    2XHREGISTER EBX:08246338
    2XHREGISTER ECX:07BEEA8C
    2XHREGISTER EDX:A38E5000
    2XHREGISTER ESI:00000000
    2XHREGISTER EDI:701178E8
    2XHREGISTER CS:EIP:001B:700D6DC3
    2XHREGISTER SS:ESP:0023:07BEE9C0 EBP:00000015
    2XHREGISTER DS:0023 ES:0023 FS:003B GS:0000
    NULL
    1XHFLAGS Flags:00010202
    NULL
    NULL ------------------------------------------------------------------------
    0SECTION CI subcomponent dump routine
    NULL ============================
    1CIJAVAVERSION J2RE 1.4.2 IBM Windows 32 build cn142-20070317 (SR8)
    1CIRUNNINGAS Running as a standalone JVM
    1CICMDLINE C:\Tivoli\TEC39FP8\jre\bin\javaw.exe -Djavax.net.ssl.trustStore=C:\Tivoli\TEC39FP8\jcf.jks -Dnv_inst_flag=NO -Dnvwc.cwd= -Dnvwc.java=C:\Tivoli\TEC39FP8\jre\bin\java.exe -classpath C:\Tivoli\TEC39FP8\log.jar;C:\Tivoli\TEC39FP8\evd.jar;C:\Tivoli\TEC39FP8\tec_console.jar;C:\Tivoli\TEC39FP8\jhall.jar;C:\Tivoli\TEC39FP8\jrim.jar;C:\Tivoli\TEC39FP8\avail_common.jar;C:\Tivoli\TEC39FP8\console.jar;C:\Tivoli\TEC39FP8\ibmjsse.jar;C:\Tivoli\TEC39FP8\jcf.jar;C:\Tivoli\TEC39FP8\jsafe.zip;C:\Tivoli\TEC39FP8\uif.jar;C:\Tivoli\TEC39FP8\jcchart362J-classes.zip;C:\Tivoli\TEC39FP8\tec_ui_svr.jar;C:\Tivoli\TEC39FP8\tec_ui_svr_stubs.jar;C:\Tivoli\TEC39FP8\tec_svr.jar;C:\Tivoli\TEC39FP8\tec_svr_stubs.jar;C:\Tivoli\TEC39FP8\java-getopt-1.0.6.jar;; -DINTERP=w32-ix86 -DDISPLAY= com.tivoli.tec.console.EnterpriseConsoleLauncher
    1CIJAVAHOMEDIR Java Home Dir: C:\Tivoli\TEC39FP8\jre
    1CIJAVADLLDIR Java DLL Dir: C:\Tivoli\TEC39FP8\jre\bin
    1CISYSCP Sys Classpath: C:\Tivoli\TEC39FP8\jre\lib\core.jar;C:\Tivoli\TEC39FP8\jre\lib\graphics.jar;C:\Tivoli\TEC39FP8\jre\lib\security.jar;C:\Tivoli\TEC39FP8\jre\lib\server.jar;C:\Tivoli\TEC39FP8\jre\lib\xml.jar;C:\Tivoli\TEC39FP8\jre\lib\charsets.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmcertpathprovider.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmjaasactivelm.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmjaaslm.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmjcefw.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmjgssprovider.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmjssefips.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmjsseprovider.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmorb.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmorbapi.jar;C:\Tivoli\TEC39FP8\jre\lib\ibmpkcs.jar
    1CIUSERARGS UserArgs:
    2CIUSERARG vfprintf 0x4030F0
    2CIUSERARG -Djavax.net.ssl.trustStore=C:\Tivoli\TEC39FP8\jcf.jks
    2CIUSERARG -Dnv_inst_flag=NO
    2CIUSERARG -Dnvwc.cwd=
    2CIUSERARG -Dnvwc.java=C:\Tivoli\TEC39FP8\jre\bin\java.exe
    2CIUSERARG -DINTERP=w32-ix86
    2CIUSERARG -DDISPLAY=
    2CIUSERARG -Dinvokedviajava
    2CIUSERARG -Djava.class.path=C:\Tivoli\TEC39FP8\log.jar;C:\Tivoli\TEC39FP8\evd.jar;C:\Tivoli\TEC39FP8\tec_console.jar;C:\Tivoli\TEC39FP8\jhall.jar;C:\Tivoli\TEC39FP8\jrim.jar;C:\Tivoli\TEC39FP8\avail_common.jar;C:\Tivoli\TEC39FP8\console.jar;C:\Tivoli\TEC39FP8\ibmjsse.jar;C:\Tivoli\TEC39FP8\jcf.jar;C:\Tivoli\TEC39FP8\jsafe.zip;C:\Tivoli\TEC39FP8\uif.jar;C:\Tivoli\TEC39FP8\jcchart362J-classes.zip;C:\Tivoli\TEC39FP8\tec_ui_svr.jar;C:\Tivoli\TEC39FP8\tec_ui_svr_stubs.jar;C:\Tivoli\TEC39FP8\tec_svr.jar;C:\Tivoli\TEC39FP8\tec_svr_stubs.jar;C:\Tivoli\TEC39FP8\java-getopt-1.0.6.jar;;
    2CIUSERARG vfprintf
    NULL
    1CIJVMMI JVM Monitoring Interface (JVMMI)
    NULL ------------------------
    2CIJVMMIOFF No events are enabled.
    NULL
    NULL ------------------------------------------------------------------------
    0SECTION DC subcomponent dump routine
    NULL ============================
    1DCHEADEREYE Header eye catcher DCST
    1DCHEADERLEN Header length 24
    1DCHEADERVER Header version 1
    1DCHEADERMOD Header modification 0
    1DCINTERFACE DC Interface at 0x70DC039C with 15 entries
    2DCINTERFACE 1 - dcCString2JavaString 0x70CCF0C0
    2DCINTERFACE 2 - dcInt642CString 0x70CCF280
    2DCINTERFACE 3 - dcJavaString2NewCString 0x70CCF4A0
    2DCINTERFACE 4 - dcJavaString2CString 0x70CCF3C0
    2DCINTERFACE 5 - dcJavaString2NewPlatformString 0x70CCF5F0
    2DCINTERFACE 6 - dcJavaString2UTF 0x70CCF990
    2DCINTERFACE 7 - dcPlatformString2JavaString 0x70CCF710
    2DCINTERFACE 8 - dcUnicode2UTF 0x70CCF8C0
    2DCINTERFACE 9 - dcUnicode2UTFLength 0x70CCF830
    2DCINTERFACE 10 - dcUTF2JavaString 0x70CCFD60
    2DCINTERFACE 11 - dcUTFClassName2JavaString 0x70CD0060
    2DCINTERFACE 12 - dcJavaString2ClassName 0x70CCFA60
    2DCINTERFACE 13 - dcUTF2UnicodeNext 0x70CD02E0
    2DCINTERFACE 14 - dcVerifyUTF8 0x70CD03D0
    2DCINTERFACE 15 - dcDumpRoutine 0x70CD0A60
    1DCARRAYINFO Array info at 0x70D749A8 with 16 entries
    2DCARRAYINFO 1 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 2 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 3 - index 2 signature L name class[] factor 4
    2DCARRAYINFO 4 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 5 - index 4 signature Z name bool[] factor 1
    2DCARRAYINFO 6 - index 5 signature C name char[] factor 2
    2DCARRAYINFO 7 - index 6 signature F name float[] factor 4
    2DCARRAYINFO 8 - index 7 signature D name double[] factor 8
    2DCARRAYINFO 9 - index 8 signature B name byte[] factor 1
    2DCARRAYINFO 10 - index 9 signature S name short[] factor 2
    2DCARRAYINFO 11 - index 10 signature I name int[] factor 4
    2DCARRAYINFO 12 - index 11 signature J name long[] factor 8
    2DCARRAYINFO 13 - index 0 signature 0 name uint[] factor 0
    2DCARRAYINFO 14 - index 0 signature 0 name uint1[] factor 0
    2DCARRAYINFO 15 - index 0 signature 0 name uint2[] factor 0
    2DCARRAYINFO 16 - index 0 signature 0 name uint3[] factor 0
    NULL ------------------------------------------------------------------------
    0SECTION DG subcomponent dump routine
    NULL ============================
    1DGTRCENABLED Trace enabled: Yes
    2DGTRCTYPE Trace: Internal
    2DGTRCBUFFERS Buffer specification: 8k
    2DGTRCBUFALLOC Buffers allocated: 0
    2DGTRCBUFUSED Buffers in use: 0
    1DGJDUMPBUFF Javadump buffer size (allocated): 2621440
    NULL ------------------------------------------------------------------------
    0SECTION ST subcomponent dump routine
    NULL ============================
    1STGCMODES Resettable GC: No
    1STGCMODES Concurrent GC: No
    1STCURHBASE Current Heap Base: 0x100401FC
    1STCURHLIM Current Heap Limit: 0x108BFBFC
    1STMWHBASE Middleware Heap Base: 0x100401FC
    1STMWHLIM Middleware Heap Limit: 0x108BFBFC
    1STGCHELPERS Number of GC Helper Threads: 1
    1STJVMOPTS -Xconcurrentlevel: 0
    1STJVMOPTS -Xconcurrentbackground: 0
    1STGCCTR GC Counter: 7
    1STAFCTR AF Counter: 7
    1STHEAPFREE Bytes of Heap Space Free: 1adcb0
    1STHEAPALLOC Bytes of Heap Space Allocated: 87fa00
    1STSMBASE SM Base: 0x0
    1STSMEND SM End: 0x0
    1STPAMSTART PAM Start: 0x0
    1STPAMEND PAM End: 0x0
    1STCOMACTION Compact Action: 0
    NULL ------------------------------------------------------------------------
    0SECTION XE subcomponent dump routine
    NULL ============================
    1XETHRESHOLD MMI threshold for java methods is set to 2000
    1XEJITINIT JIT is initialized
    1XEJVMPIOFF JVMPI is not activated
    1XEJNITHRESH MMI threshold for JNI methods is set to 0
    1XETRCHIS Trace history length is set to 4
    1XEJITDUMP JIT dump routine is not yet implemented.
    NULL ------------------------------------------------------------------------
    0SECTION LK subcomponent dump routine
    NULL ============================
    NULL
    1LKPOOLINFO Monitor pool info:
    2LKPOOLINIT Initial monitor count: 32
    2LKPOOLEXPNUM Minimum number of free monitors before expansion: 5
    2LKPOOLEXPBY Pool will next be expanded by: 16
    2LKPOOLTOTAL Current total number of monitors: 32
    2LKPOOLFREE Current number of free monitors: 29
    NULL
    1LKMONPOOLDUMP Monitor Pool Dump (flat & inflated object-monitors):
    2LKMONINUSE sys_mon_t:0x002BBC90 infl_mon_t: 0x000386A8:
    3LKMONOBJECT java.lang.ref.Reference$Lock@100C2990/100C2998: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Reference Handler" (0x7014808)
    2LKMONINUSE sys_mon_t:0x002BBCD8 infl_mon_t: 0x000386D4:
    3LKMONOBJECT java.lang.ref.ReferenceQueue$Lock@100C26C8/100C26D0: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Finalizer" (0x7016BA8)
    2LKMONINUSE sys_mon_t:0x002BBD20 infl_mon_t: 0x00038700:
    3LKMONOBJECT javax.swing.TimerQueue@104FFE50/104FFE58: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "TimerQueue" (0x8082290)
    NULL
    1LKREGMONDUMP JVM System Monitor Dump (registered monitors):
    2LKREGMON JITC PIC Lock (0x070DE440): <unowned>
    2LKREGMON JITC CHA lock (0x070C8748): <unowned>
    2LKREGMON JITC MB UPDATE lock (0x07610070): <unowned>
    2LKREGMON JITC Global_Compile lock (0x07610020): <unowned>
    2LKREGMON Free Class Loader Cache Entry lock (0x0003A490): <unowned>
    2LKREGMON IO lock (0x0003A448): <unowned>
    2LKREGMON Evacuation Region lock (0x0003A3B8): <unowned>
    2LKREGMON Heap Promotion lock (0x0003A370): <unowned>
    2LKREGMON Sleep lock (0x0003A328): <unowned>
    2LKREGMON Method trace lock (0x0003A2E0): <unowned>
    2LKREGMON Heap lock (0x0003A1C0): owner "TivoliEnterpriseConsoleLauncher" (0x80B4138), entry count 1
    2LKREGMON Monitor Cache lock (0x0003A130): owner "TivoliEnterpriseConsoleLauncher" (0x80B4138), entry count 1
    2LKREGMON JNI Pinning lock (0x0003A208): <unowned>
    2LKREGMON JNI Global Reference lock (0x0003A178): <unowned>
    2LKREGMON Classloader lock (0x0003A298): <unowned>
    2LKREGMON Binclass lock (0x0003A0E8): <unowned>
    2LKREGMON Thread queue lock (0x002B2838): owner "TivoliEnterpriseConsoleLauncher" (0x80B4138), entry count 1
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Thread-0" (0x381F0)
    2LKREGMON Monitor Registry lock (0x0003A250): owner "TivoliEnterpriseConsoleLauncher" (0x80B4138), entry count 1
    2LKREGMON System Heap lock (0x00039408): <unowned>
    2LKREGMON ACS Heap lock (0x00039450): <unowned>
    2LKREGMON PAM lock (0x00039498): <unowned>
    2LKREGMON Intern String Table lock (0x000394E0): <unowned>
    2LKREGMON Classloader lock (0x00039528): <unowned>
    2LKREGMON JIT Byte Code lock (0x00039570): <unowned>
    2LKREGMON JIT Global Compile lock (0x000395B8): <unowned>
    2LKREGMON JIT BINCLASS lock (0x00039600): <unowned>
    2LKREGMON JIT Debug lock (0x00039648): <unowned>
    2LKREGMON JIT Log lock (0x00039690): <unowned>
    2LKREGMON JITmemT 1 lock (0x000396D8): <unowned>
    2LKREGMON JITspaceT 1 lock (0x00039720): <unowned>
    2LKREGMON JITcodeT 1 lock (0x00039768): <unowned>
    2LKREGMON JITnccbT 1 lock (0x000397B0): <unowned>
    2LKREGMON JIT Invoke Interface Cache lock (0x000397F8): <unowned>
    2LKREGMON JIT Class Map lock (0x00039840): <unowned>
    2LKREGMON JIT Code lock (0x00039888): <unowned>
    2LKREGMON JITmblkT 1 lock (0x000398D0): <unowned>
    2LKREGMON JIT MB Update lock (0x00039918): <unowned>
    2LKREGMON Permanent Variable subpool lock (0x00039960): <unowned>
    2LKREGMON Intern String Buckets subpool lock (0x000399A8): <unowned>
    2LKREGMON UTF8 Cache subpool lock (0x000399F0): <unowned>
    2LKREGMON Namespace Cache subpool lock (0x00039A38): <unowned>
    2LKREGMON Class Storage subpool lock (0x00039A80): <unowned>
    2LKREGMON CL Tables subpool lock (0x00039AC8): <unowned>
    2LKREGMON JIT General subpool lock (0x00039B10): <unowned>
    NULL
    1LKFLATMONDUMP Thread identifiers (as used in flat monitors):
    2LKFLATMON ident 0x09 "TimerQueue" (0x8082290) ee 0x080820B0
    2LKFLATMON ident 0x02 "Thread-0" (0x381F0) ee 0x00038010
    2LKFLATMON ident 0x08 "TivoliEnterpriseConsoleLauncher" (0x80B4138) ee 0x080B3F58
    2LKFLATMON ident 0x05 "Finalizer" (0x7016BA8) ee 0x070169C8
    2LKFLATMON ident 0x04 "Reference Handler" (0x7014808) ee 0x07014628
    2LKFLATMON ident 0x03 "Signal dispatcher" (0x7011D58) ee 0x07011B78
    NULL
    1LKOBJMONDUMP Java Object Monitor Dump (flat & inflated object-monitors):
    2LKINFLATEDMON java.lang.ref.ReferenceQueue$Lock@100C26C8/100C26D0
    3LKINFLDETAILS locknflags 80000200 Monitor inflated infl_mon 0x000386D4
    2LKINFLATEDMON java.lang.ref.Reference$Lock@100C2990/100C2998
    3LKINFLDETAILS locknflags 80000100 Monitor inflated infl_mon 0x000386A8
    2LKINFLATEDMON javax.swing.TimerQueue@104FFE50/104FFE58
    3LKINFLDETAILS locknflags 80000300 Monitor inflated infl_mon 0x00038700
    2LKFLATLOCKED sun.awt.Win32GraphicsEnvironment@107D9788/107D9790
    3LKFLATDETAILS locknflags 00080000 Flat locked by thread ident 0x08, entry count 1
    NULL ------------------------------------------------------------------------
    0SECTION XM subcomponent dump routine
    NULL ============================
    NULL
    1XMCURTHDINFO Current Thread Details
    NULL ----------------------
    3XMTHREADINFO "TivoliEnterpriseConsoleLauncher" (TID:0x100ADE40, sys_thread_t:0x80B4138, state:R, native ID:0xA4) prio=5
    4XESTACKTRACE at sun.awt.windows.Win32SurfaceData.initDDraw(Native Method)
    4XESTACKTRACE at sun.awt.windows.Win32SurfaceData.<clinit>(Win32SurfaceData.java:302)
    4XESTACKTRACE at sun.awt.windows.D3DBlitLoops.register(D3DBlitLoops.java:72)
    4XESTACKTRACE at sun.awt.windows.Win32OffScreenSurfaceData.initD3D(Win32OffScreenSurfaceData.java:125)
    4XESTACKTRACE at sun.awt.windows.Win32OffScreenSurfaceData.<clinit>(Win32OffScreenSurfaceData.java:167)
    4XESTACKTRACE at sun.awt.Win32GraphicsDevice.<clinit>(Win32GraphicsDevice.java:91)
    4XESTACKTRACE at sun.awt.Win32GraphicsEnvironment.makeScreenDevice(Win32GraphicsEnvironment.java:201)
    4XESTACKTRACE at sun.java2d.SunGraphicsEnvironment.getScreenDevices(SunGraphicsEnvironment.java:353)
    4XESTACKTRACE at sun.awt.Win32GraphicsEnvironment.getDefaultScreenDevice(Win32GraphicsEnvironment.java:94)
    4XESTACKTRACE at java.awt.Window.init(Window.java:268)
    4XESTACKTRACE at java.awt.Window.<init>(Window.java:312)
    4XESTACKTRACE at java.awt.Frame.<init>(Frame.java:431)
    4XESTACKTRACE at java.awt.Frame.<init>(Frame.java:396)
    4XESTACKTRACE at com.tivoli.uif.controls.UFFrameManager.<init>(UFFrameManager.java:755)
    4XESTACKTRACE at com.tivoli.uif.controls.UFFrameManager.startFrameManager(UFFrameManager.java:97)
    4XESTACKTRACE at com.tivoli.console.ConsoleLauncher.<init>(ConsoleLauncher.java:84)
    4XESTACKTRACE at com.tivoli.console.SingleAppLauncher.<init>(SingleAppLauncher.java:64)
    4XESTACKTRACE at com.tivoli.tec.console.EnterpriseConsoleLauncher.<init>(EnterpriseConsoleLauncher.java:142)
    4XESTACKTRACE at com.tivoli.tec.console.LauncherThread.run(LauncherThread.java:38)
    1XMTHDINFO All Thread Details
    NULL ------------------
    NULL
    2XMFULLTHDDUMP Full thread dump Classic VM (J2RE 1.4.2 IBM Windows 32 build cn142-20070317 (SR8), native threads):
    3XMTHREADINFO "TimerQueue" (TID:0x100ADD90, sys_thread_t:0x8082290, state:CW, native ID:0x169C) prio=5
    4XESTACKTRACE at java.lang.Object.wait(Native Method)
    4XESTACKTRACE at javax.swing.TimerQueue.run(TimerQueue.java:260)
    4XESTACKTRACE at java.lang.Thread.run(Thread.java:570)
    3XMTHREADINFO "Thread-0" (TID:0x100ADDE8, sys_thread_t:0x381F0, state:CW, native ID:0xC3C) prio=5
    3XMTHREADINFO "TivoliEnterpriseConsoleLauncher" (TID:0x100ADE40, sys_thread_t:0x80B4138, state:R, native ID:0xA4) prio=5
    4XESTACKTRACE at sun.awt.windows.Win32SurfaceData.initDDraw(Native Method)
    4XESTACKTRACE at sun.awt.windows.Win32SurfaceData.<clinit>(Win32SurfaceData.java:302)
    4XESTACKTRACE at sun.awt.windows.D3DBlitLoops.register(D3DBlitLoops.java:72)
    4XESTACKTRACE at sun.awt.windows.Win32OffScreenSurfaceData.initD3D(Win32OffScreenSurfaceData.java:125)
    4XESTACKTRACE at sun.awt.windows.Win32OffScreenSurfaceData.<clinit>(Win32OffScreenSurfaceData.java:167)
    4XESTACKTRACE at sun.awt.Win32GraphicsDevice.<clinit>(Win32GraphicsDevice.java:91)
    4XESTACKTRACE at sun.awt.Win32GraphicsEnvironment.makeScreenDevice(Win32GraphicsEnvironment.java:201)
    4XESTACKTRACE at sun.java2d.SunGraphicsEnvironment.getScreenDevices(SunGraphicsEnvironment.java:353)
    4XESTACKTRACE at sun.awt.Win32GraphicsEnvironment.getDefaultScreenDevice(Win32GraphicsEnvironment.java:94)
    4XESTACKTRACE at java.awt.Window.init(Window.java:268)
    4XESTACKTRACE at java.awt.Window.<init>(Window.java:312)
    4XESTACKTRACE at java.awt.Frame.<init>(Frame.java:431)
    4XESTACKTRACE at java.awt.Frame.<init>(Frame.java:396)
    4XESTACKTRACE at com.tivoli.uif.controls.UFFrameManager.<init>(UFFrameManager.java:755)
    4XESTACKTRACE at com.tivoli.uif.controls.UFFrameManager.startFrameManager(UFFrameManager.java:97)
    4XESTACKTRACE at com.tivoli.console.ConsoleLauncher.<init>(ConsoleLauncher.java:84)
    4XESTACKTRACE at com.tivoli.console.SingleAppLauncher.<init>(SingleAppLauncher.java:64)
    4XESTACKTRACE at com.tivoli.tec.console.EnterpriseConsoleLauncher.<init>(EnterpriseConsoleLauncher.java:142)
    4XESTACKTRACE at com.tivoli.tec.console.LauncherThread.run(LauncherThread.java:38)
    3XMTHREADINFO "Finalizer" (TID:0x100AE0B0, sys_thread_t:0x7016BA8, state:CW, native ID:0x1340) prio=8
    4XESTACKTRACE at java.lang.Object.wait(Native Method)
    4XESTACKTRACE at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
    4XESTACKTRACE at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:160)
    4XESTACKTRACE at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:225)
    3XMTHREADINFO "Reference Handler" (TID:0x100AE108, sys_thread_t:0x7014808, state:CW, native ID:0xB00) prio=10
    4XESTACKTRACE at java.lang.ref.Reference.process(Native Method)
    4XESTACKTRACE at java.lang.ref.Reference.access$300(Reference.java:52)
    4XESTACKTRACE at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:132)
    3XMTHREADINFO "Signal dispatcher" (TID:0x100AE160, sys_thread_t:0x7011D58, state:R, native ID:0x194) prio=5
    NULL ------------------------------------------------------------------------
    0SECTION CL subcomponent dump routine
    NULL ============================
    1CLCLASSPATH      Classpath Z(C:\Tivoli\TEC39FP8\jre\lib\core.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\graphics.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\security.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\server.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\xml.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\charsets.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmcertpathprovider.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmjaasactivelm.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmjaaslm.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmjcefw.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmjgssprovider.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmjssefips.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmjsseprovider.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmorb.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmorbapi.jar),Z(C:\Tivoli\TEC39FP8\jre\lib\ibmpkcs.jar)
    1CLFLAGOLDJAVA      Oldjava mode false
    1CLFLAGBOOTSTRP     Bootstrapping false
    1CLFLAGVERBOSE      Verbose class dependencies false
    1CLENUMVERIFY      Class verification VERIFY_REMOTE
    1CLPNTRNAMECLLO     Namespace to classloader 0x00000000
    1CLPNTRCHAINLO      Start of cache entry pool 0x081A1978
    1CLPNTRCHFREE      Start of free cache entries 0x081A39E4
    1CLPNTRMETHODTB     Location of method table 0x06FA2F40
    1CLPNTRANCHRGLN     Global namespace anchor 0x002B383C
    1CLPNTRCLSLOADS     System classloader shadow 0x06F4B008
    1CLPNTRSYSLOADS     Classloader shadows 0x081265C0
    1CLPNTRCLSEXT      Extension loader 0x100ADFD8
    1CLPNTRSYSLOADR     System classloader 0x100ADF58
    1CLTEXTCLLOS      Classloader summaries
    1CLTEXTCLLSS           12345678: 1=primordial,2=extension,3=shareable,4=middleware,5=system,6=trusted,7=application,8=delegating
    2CLTEXTCLLOADER          ------a- Loader sun/reflect/misc/MethodUtil(0x081265C0), Shadow 0x100ADD28, Parent sun/misc/Launcher$AppClassLoader(0x100ADF58)
    3CLNMBRLOADEDCL               Number of loaded classes 1
    3CLNMBRCACHECLS               Number of cached classes 7
    3CLHEXDALLOCTIO               Allocation used for loaded classes 1
    3CLHEXDPCKGEOWN               Package owner 0x100ADD28
    2CLTEXTCLLOADER          -x---t-d Loader sun/reflect/DelegatingClassLoader(0x079559A0), Shadow 0x100ADEA0, Parent sun/misc/Launcher$ExtClassLoader(0x100ADFD8)
    3CLNMBRLOADEDCL               Number of loaded classes 1
    3CLNMBRCACHECLS               Number of cached classes 3
    3CLHEXDALLOCTIO               Allocation used for loaded classes 3
    3CLHEXDPCKGEOWN               Package owner 0x100ADEA0
    2CLTEXTCLLOADER          -----ta- Loader sun/misc/Launcher$AppClassLoader(0x070DC9A0), Shadow 0x100ADF58, Parent sun/misc/Launcher$ExtClassLoader(0x100ADFD8)
    3CLNMBRLOADEDCL               Number of loaded classes 51
    3CLNMBRCACHECLS               Number of cached classes 341
    3CLHEXDALLOCTIO               Allocation used for loaded classes 1
    3CLHEXDPCKGEOWN               Package owner 0x100ADF58
    2CLTEXTCLLOADER          -xh-st-- Loader sun/misc/Launcher$ExtClassLoader(0x070CFFD0), Shadow 0x100ADFD8, Parent none(0x00000000)
    3CLNMBRLOADEDCL               Number of loaded classes 10
    3CLNMBRCACHECLS               Number of cached classes 95
    3CLHEXDALLOCTIO               Allocation used for loaded classes 3
    3CLHEXDPCKGEOWN               Package owner 0x100ADFD8
    2CLTEXTCLLOADER          p-h-st-- Loader System(0x06F4B008), Shadow 0x00000000
    3CLNMBRLOADEDCL               Number of loaded classes 952
    3CLNMBRCACHECLS               Number of cached classes 956
    3CLHEXDALLOCTIO               Allocation used for loaded classes 3
    3CLHEXDPCKGEOWN               Package owner 0x00000000
    3CLTEXT3CLTEXTCLASS                [S(0x002D1D58)
    NULL ------------------------------------------------------------------------
    0SECTION Javadump End section
    1DGJDUMP Javadump Buffer Usage Information
    NULL =================================
    2DGJDUMPALLOC Javadump buffer size (allocated): 2621440
    2DGJDUMPUSED Javadump buffer size (used) : 84652
    NULL ---------------------- END OF DUMP -------------------------------------

    It use to work fine Something changed. Could be a newer (maintenance) version of Java. Seems like those have been having more than a few problems say in the last year or so.
    Wild guess alternative - could also be a graphics driver problem.
    Everytime I launch this Tivoli TME client IThat sounds like a product. This is not a product support site. It is a site for programmers who use java. Product support should be directed to the source of the product.

  • Passing values from a FORM to another FORM

    Hi,
    I have to pass values from FORM "A" to FORM "B". What is the best way to do this?\
    Can I use a GLOBAL variable?
    Thanks,
    Marc.

    I think he meant the global namespace.
    You set a :global_your_name_here to a value and that value is available in your entire application. See the help file section on the global namespace for more information.
    Forms parameters are parameters that you form picks up from the outside when it starts. The calling entity must supply them in the URL or they will be set to null. You set them up in the object navigator in the Parameters node.

  • Running object track code on visual c++ with open CV

    Dear all,
    I am newbie to config the open CV in visual c++.
    i have visual studio 2013 desktop version & open CV beta v3.0; I have config the data as per link shared 
    Config opencv I have downloaded the example code from youtube ; link for the code as followyoutube
    link
    visual c++ code
    #include <sstream>
    #include <string>
    #include <iostream>
    #include <opencv\highgui.h>
    #include <opencv\cv.h>
    using namespace cv;
    //initial min and max HSV filter values.
    //these will be changed using trackbars
    int H_MIN = 0;
    int H_MAX = 256;
    int S_MIN = 0;
    int S_MAX = 256;
    int V_MIN = 0;
    int V_MAX = 256;
    //default capture width and height
    const int FRAME_WIDTH = 640;
    const int FRAME_HEIGHT = 480;
    //max number of objects to be detected in frame
    const int MAX_NUM_OBJECTS=50;
    //minimum and maximum object area
    const int MIN_OBJECT_AREA = 20*20;
    const int MAX_OBJECT_AREA = FRAME_HEIGHT*FRAME_WIDTH/1.5;
    //names that will appear at the top of each window
    const string windowName = "Original Image";
    const string windowName1 = "HSV Image";
    const string windowName2 = "Thresholded Image";
    const string windowName3 = "After Morphological Operations";
    const string trackbarWindowName = "Trackbars";
    void on_trackbar( int, void* )
    {//This function gets called whenever a
    // trackbar position is changed
    string intToString(int number){
    std::stringstream ss;
    ss << number;
    return ss.str();
    void createTrackbars(){
    //create window for trackbars
    namedWindow(trackbarWindowName,0);
    //create memory to store trackbar name on window
    char TrackbarName[50];
    sprintf( TrackbarName, "H_MIN", H_MIN);
    sprintf( TrackbarName, "H_MAX", H_MAX);
    sprintf( TrackbarName, "S_MIN", S_MIN);
    sprintf( TrackbarName, "S_MAX", S_MAX);
    sprintf( TrackbarName, "V_MIN", V_MIN);
    sprintf( TrackbarName, "V_MAX", V_MAX);
    //create trackbars and insert them into window
    //3 parameters are: the address of the variable that is changing when the trackbar is moved(eg.H_LOW),
    //the max value the trackbar can move (eg. H_HIGH),
    //and the function that is called whenever the trackbar is moved(eg. on_trackbar)
    // ----> ----> ---->
    createTrackbar( "H_MIN", trackbarWindowName, &H_MIN, H_MAX, on_trackbar );
    createTrackbar( "H_MAX", trackbarWindowName, &H_MAX, H_MAX, on_trackbar );
    createTrackbar( "S_MIN", trackbarWindowName, &S_MIN, S_MAX, on_trackbar );
    createTrackbar( "S_MAX", trackbarWindowName, &S_MAX, S_MAX, on_trackbar );
    createTrackbar( "V_MIN", trackbarWindowName, &V_MIN, V_MAX, on_trackbar );
    createTrackbar( "V_MAX", trackbarWindowName, &V_MAX, V_MAX, on_trackbar );
    void drawObject(int x, int y,Mat &frame){
    //use some of the openCV drawing functions to draw crosshairs
    //on your tracked image!
    //UPDATE:JUNE 18TH, 2013
    //added 'if' and 'else' statements to prevent
    //memory errors from writing off the screen (ie. (-25,-25) is not within the window!)
    circle(frame,Point(x,y),20,Scalar(0,255,0),2);
    if(y-25>0)
    line(frame,Point(x,y),Point(x,y-25),Scalar(0,255,0),2);
    else line(frame,Point(x,y),Point(x,0),Scalar(0,255,0),2);
    if(y+25<FRAME_HEIGHT)
    line(frame,Point(x,y),Point(x,y+25),Scalar(0,255,0),2);
    else line(frame,Point(x,y),Point(x,FRAME_HEIGHT),Scalar(0,255,0),2);
    if(x-25>0)
    line(frame,Point(x,y),Point(x-25,y),Scalar(0,255,0),2);
    else line(frame,Point(x,y),Point(0,y),Scalar(0,255,0),2);
    if(x+25<FRAME_WIDTH)
    line(frame,Point(x,y),Point(x+25,y),Scalar(0,255,0),2);
    else line(frame,Point(x,y),Point(FRAME_WIDTH,y),Scalar(0,255,0),2);
    putText(frame,intToString(x)+","+intToString(y),Point(x,y+30),1,1,Scalar(0,255,0),2);
    void morphOps(Mat &thresh){
    //create structuring element that will be used to "dilate" and "erode" image.
    //the element chosen here is a 3px by 3px rectangle
    Mat erodeElement = getStructuringElement( MORPH_RECT,Size(3,3));
    //dilate with larger element so make sure object is nicely visible
    Mat dilateElement = getStructuringElement( MORPH_RECT,Size(8,8));
    erode(thresh,thresh,erodeElement);
    erode(thresh,thresh,erodeElement);
    dilate(thresh,thresh,dilateElement);
    dilate(thresh,thresh,dilateElement);
    void trackFilteredObject(int &x, int &y, Mat threshold, Mat &cameraFeed){
    Mat temp;
    threshold.copyTo(temp);
    //these two vectors needed for output of findContours
    vector< vector<Point> > contours;
    vector<Vec4i> hierarchy;
    //find contours of filtered image using openCV findContours function
    findContours(temp,contours,hierarchy,CV_RETR_CCOMP,CV_CHAIN_APPROX_SIMPLE );
    //use moments method to find our filtered object
    double refArea = 0;
    bool objectFound = false;
    if (hierarchy.size() > 0) {
    int numObjects = hierarchy.size();
    //if number of objects greater than MAX_NUM_OBJECTS we have a noisy filter
    if(numObjects<MAX_NUM_OBJECTS){
    for (int index = 0; index >= 0; index = hierarchy[index][0]) {
    Moments moment = moments((cv::Mat)contours[index]);
    double area = moment.m00;
    //if the area is less than 20 px by 20px then it is probably just noise
    //if the area is the same as the 3/2 of the image size, probably just a bad filter
    //we only want the object with the largest area so we safe a reference area each
    //iteration and compare it to the area in the next iteration.
    if(area>MIN_OBJECT_AREA && area<MAX_OBJECT_AREA && area>refArea){
    x = moment.m10/area;
    y = moment.m01/area;
    objectFound = true;
    refArea = area;
    }else objectFound = false;
    //let user know you found an object
    if(objectFound ==true){
    putText(cameraFeed,"Tracking Object",Point(0,50),2,1,Scalar(0,255,0),2);
    //draw object location on screen
    drawObject(x,y,cameraFeed);}
    }else putText(cameraFeed,"TOO MUCH NOISE! ADJUST FILTER",Point(0,50),1,2,Scalar(0,0,255),2);
    int main(int argc, char* argv[])
    //some boolean variables for different functionality within this
    //program
    bool trackObjects = false;
    bool useMorphOps = false;
    //Matrix to store each frame of the webcam feed
    Mat cameraFeed;
    //matrix storage for HSV image
    Mat HSV;
    //matrix storage for binary threshold image
    Mat threshold;
    //x and y values for the location of the object
    int x=0, y=0;
    //create slider bars for HSV filtering
    createTrackbars();
    //video capture object to acquire webcam feed
    VideoCapture capture;
    //open capture object at location zero (default location for webcam)
    capture.open(0);
    //set height and width of capture frame
    capture.set(CV_CAP_PROP_FRAME_WIDTH,FRAME_WIDTH);
    capture.set(CV_CAP_PROP_FRAME_HEIGHT,FRAME_HEIGHT);
    //start an infinite loop where webcam feed is copied to cameraFeed matrix
    //all of our operations will be performed within this loop
    while(1){
    //store image to matrix
    capture.read(cameraFeed);
    //convert frame from BGR to HSV colorspace
    cvtColor(cameraFeed,HSV,COLOR_BGR2HSV);
    //filter HSV image between values and store filtered image to
    //threshold matrix
    inRange(HSV,Scalar(H_MIN,S_MIN,V_MIN),Scalar(H_MAX,S_MAX,V_MAX),threshold);
    //perform morphological operations on thresholded image to eliminate noise
    //and emphasize the filtered object(s)
    if(useMorphOps)
    morphOps(threshold);
    //pass in thresholded frame to our object tracking function
    //this function will return the x and y coordinates of the
    //filtered object
    if(trackObjects)
    trackFilteredObject(x,y,threshold,cameraFeed);
    //show frames
    imshow(windowName2,threshold);
    imshow(windowName,cameraFeed);
    imshow(windowName1,HSV);
    //delay 30ms so that screen can refresh.
    //image will not appear without this waitKey() command
    waitKey(30);
    return 0;
    For above code i config as per in video. But didnt get OPENCV_DEBUG243 file.
    error i am getting as below. Let me know how can solve the issue. What are additional info i need to include here.
    1>------ Build started: Project: ObjectTrackingTest, Configuration: Debug Win32 ------
    1> ObjectTrackingTest.cpp
    1>c:\program files (x86)\microsoft visual studio 12.0\vc\include\cwchar(29): error C2039: 'swprintf' : is not a member of '`global namespace''
    1>c:\program files (x86)\microsoft visual studio 12.0\vc\include\cwchar(29): error C2873: 'swprintf' : symbol cannot be used in a using-declaration
    1>c:\program files (x86)\microsoft visual studio 12.0\vc\include\cwchar(30): error C2039: 'vswprintf' : is not a member of '`global namespace''
    1>c:\program files (x86)\microsoft visual studio 12.0\vc\include\cwchar(30): error C2873: 'vswprintf' : symbol cannot be used in a using-declaration
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(38): warning C4244: 'initializing' : conversion from 'double' to 'const int', possible loss of data
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(40): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(40): error C2146: syntax error : missing ';' before identifier 'windowName'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(40): error C2440: 'initializing' : cannot convert from 'const char [15]' to 'int'
    1> There is no context in which this conversion is possible
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(41): error C2146: syntax error : missing ';' before identifier 'windowName1'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(41): error C2086: 'const int string' : redefinition
    1> c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(40) : see declaration of 'string'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(41): error C2440: 'initializing' : cannot convert from 'const char [10]' to 'int'
    1> There is no context in which this conversion is possible
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(42): error C2146: syntax error : missing ';' before identifier 'windowName2'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(42): error C2086: 'const int string' : redefinition
    1> c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(40) : see declaration of 'string'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(42): error C2440: 'initializing' : cannot convert from 'const char [18]' to 'int'
    1> There is no context in which this conversion is possible
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(43): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(43): error C2146: syntax error : missing ';' before identifier 'windowName3'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(43): error C2086: 'const int string' : redefinition
    1> c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(40) : see declaration of 'string'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(43): error C2440: 'initializing' : cannot convert from 'const char [31]' to 'int'
    1> There is no context in which this conversion is possible
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(44): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(44): error C2146: syntax error : missing ';' before identifier 'trackbarWindowName'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(44): error C2086: 'const int string' : redefinition
    1> c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(40) : see declaration of 'string'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(44): error C2440: 'initializing' : cannot convert from 'const char [10]' to 'int'
    1> There is no context in which this conversion is possible
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(54): error C2146: syntax error : missing ';' before identifier 'intToString'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(54): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(54): error C2373: 'string' : redefinition; different type modifiers
    1> c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(40) : see declaration of 'string'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(59): error C2440: 'return' : cannot convert from 'std::basic_string<char,std::char_traits<char>,std::allocator<char>>' to 'int'
    1> No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(60): error C2617: 'intToString' : inconsistent return statement
    1> c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(54) : see declaration of 'intToString'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(65): error C3861: 'namedWindow': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(79): error C3861: 'createTrackbar': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(80): error C3861: 'createTrackbar': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(81): error C3861: 'createTrackbar': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(82): error C3861: 'createTrackbar': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(83): error C3861: 'createTrackbar': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(84): error C3861: 'createTrackbar': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(97): error C3861: 'circle': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(99): error C3861: 'line': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(100): error C3861: 'line': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(102): error C3861: 'line': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(103): error C3861: 'line': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(105): error C3861: 'line': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(106): error C3861: 'line': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(108): error C3861: 'line': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(109): error C3861: 'line': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(111): error C3861: 'putText': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(119): error C2065: 'MORPH_RECT' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(119): error C3861: 'getStructuringElement': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(121): error C2065: 'MORPH_RECT' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(121): error C3861: 'getStructuringElement': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(123): error C3861: 'erode': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(124): error C3861: 'erode': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(127): error C3861: 'dilate': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(128): error C3861: 'dilate': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(138): error C2065: 'vector' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(138): error C2059: syntax error : '>'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(139): error C2065: 'vector' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(139): error C2275: 'cv::Vec4i' : illegal use of this type as an expression
    1> h:\softwares\opencv\build\include\opencv2\core\matx.hpp(357) : see declaration of 'cv::Vec4i'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(139): error C2065: 'hierarchy' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(141): error C2065: 'contours' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(141): error C2065: 'hierarchy' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(141): error C3861: 'findContours': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(145): error C2065: 'hierarchy' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(145): error C2228: left of '.size' must have class/struct/union
    1> type is 'unknown-type'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(146): error C2065: 'hierarchy' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(146): error C2228: left of '.size' must have class/struct/union
    1> type is 'unknown-type'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(149): error C2065: 'hierarchy' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(151): error C2065: 'contours' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(151): error C3861: 'moments': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(159): warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(160): warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(170): error C3861: 'putText': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(176): error C3861: 'putText': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(196): error C2065: 'VideoCapture' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(196): error C2146: syntax error : missing ';' before identifier 'capture'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(196): error C2065: 'capture' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(198): error C2065: 'capture' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(198): error C2228: left of '.open' must have class/struct/union
    1> type is 'unknown-type'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(200): error C2065: 'capture' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(200): error C2228: left of '.set' must have class/struct/union
    1> type is 'unknown-type'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(201): error C2065: 'capture' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(201): error C2228: left of '.set' must have class/struct/union
    1> type is 'unknown-type'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(206): error C2065: 'capture' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(206): error C2228: left of '.read' must have class/struct/union
    1> type is 'unknown-type'
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(208): error C2065: 'COLOR_BGR2HSV' : undeclared identifier
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(208): error C3861: 'cvtColor': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(223): error C3861: 'imshow': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(224): error C3861: 'imshow': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(225): error C3861: 'imshow': identifier not found
    1>c:\users\user\documents\visual studio 2013\projects\objecttrackingtest\objecttrackingtest\objecttrackingtest.cpp(230): error C3861: 'waitKey': identifier not found
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    AMPS12

    // cwchar standard header
    #pragma once
    #ifndef _CWCHAR_
    #define _CWCHAR_
    #include <yvals.h>
    #ifdef _STD_USING
    #undef _STD_USING
    #include <wchar.h>
    #define _STD_USING
    #else /* _STD_USING */
    #include <wchar.h>
    #endif /* _STD_USING */
    typedef mbstate_t _Mbstatet;
    #if _GLOBAL_USING && !defined(RC_INVOKED)
    _STD_BEGIN
    using _CSTD _Mbstatet;
    using _CSTD mbstate_t; using _CSTD size_t; using _CSTD tm; using _CSTD wint_t;
    using _CSTD btowc; using _CSTD fgetwc; using _CSTD fgetws; using _CSTD fputwc;
    using _CSTD fputws; using _CSTD fwide; using _CSTD fwprintf;
    using _CSTD fwscanf; using _CSTD getwc; using _CSTD getwchar;
    using _CSTD mbrlen; using _CSTD mbrtowc; using _CSTD mbsrtowcs;
    using _CSTD mbsinit; using _CSTD putwc; using _CSTD putwchar;using _CSTD swprintf; using _CSTD swscanf; using _CSTD ungetwc;
    using _CSTD vfwprintf; using _CSTD vswprintf; using _CSTD vwprintf;
    using _CSTD wcrtomb; using _CSTD wprintf; using _CSTD wscanf;
    using _CSTD wcsrtombs; using _CSTD wcstol; using _CSTD wcscat;
    using _CSTD wcschr; using _CSTD wcscmp; using _CSTD wcscoll;
    using _CSTD wcscpy; using _CSTD wcscspn; using _CSTD wcslen;
    using _CSTD wcsncat; using _CSTD wcsncmp; using _CSTD wcsncpy;
    using _CSTD wcspbrk; using _CSTD wcsrchr; using _CSTD wcsspn;
    using _CSTD wcstod; using _CSTD wcstoul; using _CSTD wcsstr;
    using _CSTD wcstok; using _CSTD wcsxfrm; using _CSTD wctob;
    using _CSTD wmemchr; using _CSTD wmemcmp; using _CSTD wmemcpy;
    using _CSTD wmemmove; using _CSTD wmemset; using _CSTD wcsftime;
    using _CSTD vfwscanf; using _CSTD vswscanf; using _CSTD vwscanf;
    using _CSTD wcstof; using _CSTD wcstold;
    using _CSTD wcstoll; using _CSTD wcstoull;
    _STD_END
    #endif /* _GLOBAL_USING */
    #endif /* _CWCHAR_ */
    * Copyright (c) 1992-2013 by P.J. Plauger. ALL RIGHTS RESERVED.
    * Consult your license regarding permissions and restrictions.
    V6.40:0009 */
    this is line where it go when i clicked
    AMPS12

  • Issue connecting multiple servers in parallel using wlst

    Hi,
       I have requirement to write a jython script to connect multiple weblogic servers and generate some reports.
       I am importing wlstModule(import wlstModule as wl) in the scirpts. 
       I would need multiple users to be able to run the script from a webpage in parallel.The website is based on java.
       1. My initial thoughts were to create a new thread for each user request. But since the global variable cmo is shared between the jython threads,i believe it wouldn't work.
       2. My second option is to create a new process for each user.This way each process would have its own independent global namespace.
          Even though this should work,it dosen't look the cleanest way to do.
       Does someone have any better idea?

    You can use the Distribution Monitor for that purpose. Check note  855772 - Distribution Monitor
    Markus

Maybe you are looking for

  • Windows 7 build 7601 this copy of windows is not genuine how to solve this

    my new pc is showing the messege windows 7 Build 7601 This copy of Windows is not genuine how to solve the issue

  • Sharing internet with iPod touch

    Now, what I have is a MacBook with OS 10.5.4 installed and my Internet connection is through cable modem and it's a Ethernet Connection and I want to share my Internet through Airport with my iPod Touch. I have followed the instruction about "Sharing

  • PO release strategy on effective price

    Dear Experts, Currently PO release strategy is on net price. need to change this to effective price(net price +taxes). can you please give detail steps to change and any impact, if we change now.

  • JWSDP 2.0 Webservices client Error

    Hi, I have generated a client stubs for RPC/Encoded style webservices using wscompile tool of JWSDP 2.0. But when i run the client, i get following error no serializer is registered for (class [Lcom.test.mywebservices.service.TemplateVariable;, {http

  • Heavy loading of jaxb classes

    Hi, We need to use the latest jaxb 2.1 libraries in our application. We are using netweaver 7.1 CE and it seems to ship with jaxb 2.0 libs. (file:/usr/sap/CE7/J00/j2ee/cluster/bin/ext/jaxb20/jaxb-impl.jar) We are already using heavy loading for the h