Wrappeing a C library

I am trying to wrapper a C DLL, basically a very simple DLL and have a
forte application call the function specified in the DLL. I have Forte
3G2 and using VC++ 6.0
below is the C code which is the only C file in the C DLL project.
/********************** testdll.c file ****************************/
#include <windows.h>
#include <stdlib.h>
__declspec(dllexport) void VerifyWithAddress(char *);
BOOL WINAPI DllMain( HANDLE hModule,
DWORD fdwReason,
LPVOID lpReserved
BOOL bResult = TRUE;
// Dispatch this call based on the reason it was called.
switch (fdwReason)
case DLL_PROCESS_ATTACH:
// The DLL is being loaded for the first time by a given
process.
// Perform per-process initialization here. If the
initialization
// is successful, return TRUE; if unsuccessful, return FALSE.
break;
case DLL_PROCESS_DETACH:
// The DLL is being unloaded by a given process. Do any
break;
case DLL_THREAD_ATTACH:
// A thread is being created in a process that has already
loaded
// this DLL. Perform any per-thread initialization here. The
// return value is ignored.
break;
case DLL_THREAD_DETACH:
// A thread is exiting cleanly in a process that has already
// loaded this DLL. Perform any per-thread clean up here. The
// return value is ignored.
break;
return(bResult);
void VerifyWithAddress(char * myString)
strcpy(myString,"testing");
and here is the .PEX file
/********************* pex file *************************/
begin C tagdll;
class xstaAddressValidation
VerifyWithAddress(input address: string);
end;
has property
Libraryname = 'testdll';
Extended = (ExternalObjectFiles =
'c:/forte/userapp/tagdll/cl0/testdll');
end tagdll;
I get the .obj file generated by VC++ and try to do a fcompile against
the files generated by forte as a result of making a distribution of the
imported .pex file that was configured as a library. as I do the
fcompile, I keep getting the following errors:
/************************ Forte errors ***************************/
Forte Conductor (tm):
Copyright (c) 1994-1998, Forte Software, Inc. and its licensors.
US Patent No. 5,457,797
Forte Express (tm), Forte WebEnterprise (tm):
Copyright (c) 1995-1998, Forte Software, Inc.
All Rights Reserved.
Unpublished rights reserved under the copyright laws of the United
States.
Fri Mar 13 17:12:00 1998
Type Service Flags Level
err sh * 255
Loaded Forte Message Catalog 'fortemsg/en_us.cat'
NLM Startup is Complete - Partition's Locale is 'en_us.win'
Loading partition FTCompile_cl0_Client built on 13-Mar-1998 19:11:07.
Processing BOM file: testdll.bom
cl /W3 /Gf /GX /MD /c /Ob1 /vmg /DSTRICT /DWIN32 /D__WIN32__
/DLIBOO_DLL /DWIN3
2_LEAN_AND_MEAN /Ic:\forte\install\inc\cmn /Ic:\forte\install\inc\os
/Ic:\forte
\install\inc\ds /Ic:\forte\install\inc\handles /Ic:\forte /Fotestdll.obj
/Tp tes
tdll.cc
The name specified is not recognized as an
internal or external command, operable program or batch file.
Error during compilation, aborting.
C:\forte\appdist\centrale\tagdll\cl0\codegen\testdll>
Get Your Private, Free Email at http://www.hotmail.com
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

my question is if I could include a C++ library in my
java program and, in that case, how to do it.
Although JNI allows that keep in mind that certainly in some cases it is easier to create a C++ application (executable) and then have java communicate with that app.

Similar Messages

  • RE: wrappeing a C library

    It looks like fcompile is not finding your compiler. Look in your VC++
    subdirectory structure for a file named vcvars32.bat. With vc5.0 it is
    under \program files\devstudio\vc\bin. I don't know if they have changed
    the directory structure for 6.0 or not, but it should be somewhere similar.
    This batch file sets up the path and environment variables needed for the
    compiler. If you are running fcompile from the command line, just run that
    batch file once before you do the fcompile. As long as you are in the same
    command window, you do not need to run it again.
    Alternatively, there may be a way to get VC++ to set the environment in the
    registry so that you do not have to run the batch file each time. That is
    an option on the install (or it was on 5.0), but I don't know how to cause
    it to happen after the fact. Maybe someone else can help here...
    Hope this helps,
    Jeanne
    ======================================================
    Jeanne Hesler <[email protected]>
    MSF&W Software, Product Development
    (217) 698-3535 ext 207
    http://www.msfw.com
    ======================================================
    /\ Imaging Developer - the only imaging product
    \/ integrated into the Forte Development Environment
    ======================================================
    From: Issa Kayyal[SMTP:[email protected]]
    Sent: Monday, September 28, 1998 11:53 AM
    To: [email protected]
    Subject: wrappeing a C library
    I am trying to wrapper a C DLL, basically a very simple DLL and have a
    forte application call the function specified in the DLL. I have Forte
    3G2 and using VC++ 6.0
    below is the C code which is the only C file in the C DLL project.
    /********************** testdll.c file ****************************/
    #include <windows.h>
    #include <stdlib.h>
    __declspec(dllexport) void VerifyWithAddress(char *);
    BOOL WINAPI DllMain( HANDLE hModule,
    DWORD fdwReason,
    LPVOID lpReserved
    BOOL bResult = TRUE;
    // Dispatch this call based on the reason it was called.
    switch (fdwReason)
    case DLL_PROCESS_ATTACH:
    // The DLL is being loaded for the first time by a given
    process.
    // Perform per-process initialization here. If the
    initialization
    // is successful, return TRUE; if unsuccessful, return FALSE.
    break;
    case DLL_PROCESS_DETACH:
    // The DLL is being unloaded by a given process. Do any
    break;
    case DLL_THREAD_ATTACH:
    // A thread is being created in a process that has already
    loaded
    // this DLL. Perform any per-thread initialization here. The
    // return value is ignored.
    break;
    case DLL_THREAD_DETACH:
    // A thread is exiting cleanly in a process that has already
    // loaded this DLL. Perform any per-thread clean up here. The
    // return value is ignored.
    break;
    return(bResult);
    void VerifyWithAddress(char * myString)
    strcpy(myString,"testing");
    and here is the .PEX file
    /********************* pex file *************************/
    begin C tagdll;
    class xstaAddressValidation
    VerifyWithAddress(input address: string);
    end;
    has property
    Libraryname = 'testdll';
    Extended = (ExternalObjectFiles =
    'c:/forte/userapp/tagdll/cl0/testdll');
    end tagdll;
    I get the .obj file generated by VC++ and try to do a fcompile against
    the files generated by forte as a result of making a distribution of the
    imported .pex file that was configured as a library. as I do the
    fcompile, I keep getting the following errors:
    /************************ Forte errors ***************************/
    Forte Conductor (tm):
    Copyright (c) 1994-1998, Forte Software, Inc. and its licensors.
    US Patent No. 5,457,797
    Forte Express (tm), Forte WebEnterprise (tm):
    Copyright (c) 1995-1998, Forte Software, Inc.
    All Rights Reserved.
    Unpublished rights reserved under the copyright laws of the United
    States.
    Fri Mar 13 17:12:00 1998
    Type Service Flags Level
    err sh * 255
    Loaded Forte Message Catalog 'fortemsg/en_us.cat'
    NLM Startup is Complete - Partition's Locale is 'en_us.win'
    Loading partition FTCompile_cl0_Client built on 13-Mar-1998 19:11:07.
    Processing BOM file: testdll.bom
    cl /W3 /Gf /GX /MD /c /Ob1 /vmg /DSTRICT /DWIN32 /D__WIN32__
    /DLIBOO_DLL /DWIN3
    2_LEAN_AND_MEAN /Ic:\forte\install\inc\cmn /Ic:\forte\install\inc\os
    /Ic:\forte
    \install\inc\ds /Ic:\forte\install\inc\handles /Ic:\forte /Fotestdll.obj
    /Tp tes
    tdll.cc
    The name specified is not recognized as an
    internal or external command, operable program or batch file.
    Error during compilation, aborting.
    C:\forte\appdist\centrale\tagdll\cl0\codegen\testdll>
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Sobe,
    in one line you asked total payroll configuration only
    1. you can create en-number of symbolic accounts and assign to the custom wage types. check the node in Img- Payroll - India - Reporting for Posting Payroll Results to Accounting - Activities in the HR System
    2. LGMST feature is for specify the no. of wt's and wt model which is created in the table T539A. if you created different wt models and assigned the same in the feature for your CC / PA as Return value.
    Ex. 20/ABCD (WT/WT model)
    3. Based on the feature return value for your CC / PA / ..... IT 0008 will be defaulted with those wage types only.
    Best Regards,
    Praneeth kumar

  • Call Library Function Node 'Wrapper.C​reate': Library not found or failed to load. using windows 7 64 bits

    Dear all
    I try to interface my spectrometer (NIRquest from ocean optics) using labview on my 64 bits cumputer using windows 7.
    I have absolutely no problem to run the spectrometer with the program dedicated to the spectrometer (called Spetrasuite).
    I've installed "OmniDriverSPAM-1.66-win64-development-installer.e​xe" and everything went right.
    When I select a VI in LabView (e.g."wrapper_create.vi") from the wrapper.llb, LabView returns an error :
    "Call Library Function Node 'Wrapper.Create': Library not found or failed to load."
    I chek the call library function, but everyting seems to be right :
    I use LabView 8.6.1 and my others *.vi are running perfectly...
    Do you have any idea from where does the problem comes ?
    Thank you very much

    Hello Flanguy,
    In addition to smercurio_fc's feedback I can confirm that LabVIEW 8.6.1 doesn't exist in 64-bit version.
    Officially, LabVIEW 8.6.1 doesn't support Windows 7 either.
    The minimal version of LabVIEW you would need to both support Windows 7 and exist in 64-bit version is LabVIEW 2009 64-bit or any 64-bit versions which are more recent.
    In the two links (1 & 2) you can find more background information.
    Kind Regards,
    Wouter
    National Instruments Belgium

  • 64 bit vs 32 bit wrapper for automation server

    I have just istalled WCI 10.3.3 on a windows server 2008 64 bit server and most things seem to be working pretty well. One issue I am having is that automation server is not reporting any of its logging back to the portal. I can watch the jobs run in PTSpy, but no logs in the portal.
    I was looking at the startup log for automationserverwrapper and I see a block of the log that says the following:
    STATUS | wrapper  | 2015/01/26 16:52:32 | Oracle WCI Automation Service installed.
    STATUS | wrapper  | 2015/02/02 11:53:05 | --> Wrapper Started as Service
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.2', '%JVM_2%' is not a valid argument to the jvm.  Skipping.
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.3', '%JVM_3%' is not a valid argument to the jvm.  Skipping.
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.4', '%JVM_4%' is not a valid argument to the jvm.  Skipping.
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.5', '%JVM_5%' is not a valid argument to the jvm.  Skipping.
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.6', '%JVM_6%' is not a valid argument to the jvm.  Skipping.
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.7', '%JVM_7%' is not a valid argument to the jvm.  Skipping.
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.8', '%JVM_8%' is not a valid argument to the jvm.  Skipping.
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.9', '%JVM_9%' is not a valid argument to the jvm.  Skipping.
    WARN   | wrapper  | 2015/02/02 11:53:05 | The value of property 'wrapper.java.additional.10', '%BIT_MODE%' is not a valid argument to the jvm.  Skipping.
    STATUS | wrapper  | 2015/02/02 11:53:05 | Launching a JVM...
    INFO   | jvm 1    | 2015/02/02 11:53:10 | Wrapper (Version 3.2.3) http://wrapper.tanukisoftware.org
    INFO   | jvm 1    | 2015/02/02 11:53:10 |   Copyright 1999-2006 Tanuki Software, Inc.  All Rights Reserved.
    INFO   | jvm 1    | 2015/02/02 11:53:10 |
    INFO   | jvm 1    | 2015/02/02 11:53:10 |
    INFO   | jvm 1    | 2015/02/02 11:53:10 | WARNING - Unable to load the Wrapper's native library 'wrapper.dll'.
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           The file is located on the path at the following location but
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           could not be loaded:
    INFO   | jvm 1    | 2015/02/02 11:53:10 |             C:\bea\alui\ptportal\10.3.3\bin\..\..\..\common\wrapper\3.2.3\lib\native\win32\wrapper.dll
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           Please verify that the file is readable by the current user
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           and that the file has not been corrupted in any way.
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           One common cause of this problem is running a 32-bit version
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           of the Wrapper with a 64-bit version of Java, or vica versa.
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           This is a 64-bit JVM.
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           Reported cause:
    INFO   | jvm 1    | 2015/02/02 11:53:10 |             no wrapper in java.library.path
    INFO   | jvm 1    | 2015/02/02 11:53:10 |           System signals will not be handled correctly.
    That seems like it is trying to load the 32 bit into a 64 bit computer, but I know it is supposed to automatically choose the correct loader. Did I miss something on the install? Any help would be greatly appreciated.
    Thanks,
    Berney

    Pretty sure I figured this one out. I think there is a registry edit required. Jobs started showing up 3 hours later. Testing the registry edit now. at https://support.oracle.com/epmos/faces/DocumentDisplay?id=1424443.1
    Thanks Karl.
    Berney

  • Configuration Manager services stoping on regular basis.

    we have installed and configured WebCenter Interaction 10.3 on Windows 2003 (x86) and using JVM 1.5.0_09.
    Running all the component as windows services. Today our Configuration Manager services is stopping on regular basis.
    Error:
    ================================================================================================
    STATUS | wrapper | 2009/08/06 06:14:48 | --> Wrapper Started as Service
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.2', '%JVM_2%' is not a valid argument to the jvm. Skipping.
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.3', '%JVM_3%' is not a valid argument to the jvm. Skipping.
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.4', '%JVM_4%' is not a valid argument to the jvm. Skipping.
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.5', '%JVM_5%' is not a valid argument to the jvm. Skipping.
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.6', '%JVM_6%' is not a valid argument to the jvm. Skipping.
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.7', '%JVM_7%' is not a valid argument to the jvm. Skipping.
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.8', '%JVM_8%' is not a valid argument to the jvm. Skipping.
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.9', '%JVM_9%' is not a valid argument to the jvm. Skipping.
    WARN | wrapper | 2009/08/06 06:14:48 | The value of property 'wrapper.java.additional.10', '%BIT_MODE%' is not a valid argument to the jvm. Skipping.
    STATUS | wrapper | 2009/08/06 06:14:48 | Launching a JVM...
    INFO | jvm 1 | 2009/08/06 06:14:50 | Wrapper (Version 3.2.3) http://wrapper.tanukisoftware.org
    INFO | jvm 1 | 2009/08/06 06:14:50 | Copyright 1999-2006 Tanuki Software, Inc. All Rights Reserved.
    INFO | jvm 1 | 2009/08/06 06:14:50 |
    INFO | jvm 1 | 2009/08/06 06:14:50 |
    INFO | jvm 1 | 2009/08/06 06:14:50 | WARNING - Unable to load the Wrapper's native library 'wrapper.dll'.
    INFO | jvm 1 | 2009/08/06 06:14:50 | The file is located on the path at the following location but
    INFO | jvm 1 | 2009/08/06 06:14:50 | could not be loaded:
    INFO | jvm 1 | 2009/08/06 06:14:50 | C:\bea\alui\configmgr\2.0\bin\..\..\..\common\wrapper\3.2.3\lib\native\win32\wrapper.dll
    INFO | jvm 1 | 2009/08/06 06:14:50 | Please verify that the file is readable by the current user
    INFO | jvm 1 | 2009/08/06 06:14:50 | and that the file has not been corrupted in any way.
    INFO | jvm 1 | 2009/08/06 06:14:50 | One common cause of this problem is running a 32-bit version
    INFO | jvm 1 | 2009/08/06 06:14:50 | of the Wrapper with a 64-bit version of Java, or vica versa.
    INFO | jvm 1 | 2009/08/06 06:14:50 | This is a 64-bit JVM.
    INFO | jvm 1 | 2009/08/06 06:14:50 | Reported cause:
    INFO | jvm 1 | 2009/08/06 06:14:50 | no wrapper in java.library.path
    INFO | jvm 1 | 2009/08/06 06:14:50 | System signals will not be handled correctly.
    INFO | jvm 1 | 2009/08/06 06:14:50 |
    INFO | jvm 1 | 2009/08/06 06:14:50 | OpenLog: verbosity level = 2
    INFO | jvm 1 | 2009/08/06 06:14:50 | bid.bootstrap.loglevel=info+
    INFO | jvm 1 | 2009/08/06 06:14:50 | 8-6-2009     6:14:50.872     Info     OpenKernel.Config     Disabled-1249553690622     WrapperStartStopAppMain     com.plumtree.openkernel.impl.config.providers.ConfigXMLFileProvider     Loading config data from C:\bea\alui\configmgr\2.0\bin\../settings/config
    INFO | jvm 1 | 2009/08/06 06:14:51 | 8-6-2009     6:14:51.419     Info     OpenKernel.Config     Disabled-1249553690622     WrapperStartStopAppMain     com.plumtree.openkernel.impl.config.providers.ConfigXMLFileProvider     Setting subscription data.
    INFO | jvm 1 | 2009/08/06 06:14:51 | container config context:EAS:configurator
    INFO | jvm 1 | 2009/08/06 06:14:51 | OpenLog: Registered application name: ConfigInitialization (local machine only)
    INFO | jvm 1 | 2009/08/06 06:14:51 | OpenLog: Configuration component contained no logging settings. Creating disabled log service.
    INFO | jvm 1 | 2009/08/06 06:14:53 | Aug 6, 2009 6:14:53 AM org.apache.coyote.http11.Http11Protocol init
    INFO | jvm 1 | 2009/08/06 06:14:53 | INFO: Initializing Coyote HTTP/1.1 on http-12345
    INFO | jvm 1 | 2009/08/06 06:14:53 | Aug 6, 2009 6:14:53 AM org.apache.catalina.startup.Catalina load
    INFO | jvm 1 | 2009/08/06 06:14:53 | INFO: Initialization processed in 1157 ms
    INFO | jvm 1 | 2009/08/06 06:14:53 | Aug 6, 2009 6:14:53 AM org.apache.catalina.core.StandardService start
    INFO | jvm 1 | 2009/08/06 06:14:53 | INFO: Starting service cm
    INFO | jvm 1 | 2009/08/06 06:14:53 | Aug 6, 2009 6:14:53 AM org.apache.catalina.core.StandardEngine start
    INFO | jvm 1 | 2009/08/06 06:14:53 | INFO: Starting Servlet Engine: Apache Tomcat/6.0.14
    INFO | jvm 1 | 2009/08/06 06:14:53 | Aug 6, 2009 6:14:53 AM org.apache.catalina.startup.HostConfig deployWAR
    INFO | jvm 1 | 2009/08/06 06:14:53 | INFO: Deploying web application archive cm.war
    INFO | jvm 1 | 2009/08/06 06:14:55 | Aug 6, 2009 6:14:55 AM org.apache.catalina.realm.JAASRealm setContainer
    INFO | jvm 1 | 2009/08/06 06:14:55 | INFO: Set JAAS app name cm
    INFO | jvm 1 | 2009/08/06 06:14:55 | 06 Aug 2009 06:14:55,810 INFO - Reading standard config org/apache/myfaces/resource/standard-faces-config.xml [FacesConfigurator:151]
    INFO | jvm 1 | 2009/08/06 06:14:56 | 06 Aug 2009 06:14:56,200 INFO - Reading config jar:file:/C:/bea/alui/common/container/tomcat/6.0.14/work/cm/localhost/cm/WEB-INF/lib/jsf-facelets.jar!/META-INF/faces-config.xml [FacesConfigurator:250]
    INFO | jvm 1 | 2009/08/06 06:14:56 | 06 Aug 2009 06:14:56,200 INFO - Reading config jar:file:/C:/bea/alui/common/container/tomcat/6.0.14/work/cm/localhost/cm/WEB-INF/lib/opencontrols-framework.jar!/META-INF/faces-config.xml [FacesConfigurator:250]
    INFO | jvm 1 | 2009/08/06 06:14:56 | 06 Aug 2009 06:14:56,200 INFO - Reading config jar:file:/C:/bea/alui/common/container/tomcat/6.0.14/work/cm/localhost/cm/WEB-INF/lib/opencontrols.jar!/META-INF/faces-config.xml [FacesConfigurator:250]
    INFO | jvm 1 | 2009/08/06 06:14:56 | 06 Aug 2009 06:14:56,294 INFO - Reading config jar:file:/C:/bea/alui/common/container/tomcat/6.0.14/work/cm/localhost/cm/WEB-INF/lib/tomahawk-1.1.3.jar!/META-INF/faces-config.xml [FacesConfigurator:250]
    INFO | jvm 1 | 2009/08/06 06:14:56 | 06 Aug 2009 06:14:56,294 INFO - Reading config /WEB-INF/faces-config.xml [FacesConfigurator:411]
    INFO | jvm 1 | 2009/08/06 06:14:56 | 06 Aug 2009 06:14:56,341 WARN - Locale name in faces-config.xml null or empty, setting locale to default locale : en_US [LocaleUtils:52]
    INFO | jvm 1 | 2009/08/06 06:14:56 | OpenLog: verbosity level = 2
    INFO | jvm 1 | 2009/08/06 06:14:56 | OpenLog: Registered application name: OpenControls.winapaqlog4
    INFO | jvm 1 | 2009/08/06 06:14:56 | OpenControls.winapaqlog4
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,154 WARN - Ignored element 'dispatcher' as child of 'filter-mapping'. [WebXmlParser:347]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,154 WARN - Ignored element 'dispatcher' as child of 'filter-mapping'. [WebXmlParser:347]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,169 INFO - ServletContext 'null' initialized. [StartupServletContextListener:99]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,169 INFO - Serialization provider : class org.apache.myfaces.shared_impl.util.serial.DefaultSerialFactory [StartupServletContextListener:140]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,185 INFO - Root WebApplicationContext: initialization started [ContextLoader:174]
    INFO | jvm 1 | 2009/08/06 06:14:57 | Aug 6, 2009 6:14:57 AM org.apache.catalina.core.ApplicationContext log
    INFO | jvm 1 | 2009/08/06 06:14:57 | INFO: Loading Spring root WebApplicationContext
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,263 INFO - JDK 1.4+ collections available [CollectionFactory:76]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,263 INFO - Commons Collections 3.x available [CollectionFactory:80]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,294 INFO - Loading XML bean definitions from ServletContext resource [WEB-INF/applicationContext-acegi-security.xml] [XmlBeanDefinitionReader:347]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,607 INFO - Bean factory for application context [Root WebApplicationContext]: org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [acegiFilterChainProxy,httpSessionContextIntegrationFilter,securityRequestFilter,exceptionTranslationFilter,filterSecurityInterceptor,authenticationManager,daoAuthenticationProvider,userDetailsService,authenticationBean]; root of BeanFactory hierarchy [XmlWebApplicationContext:100]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,622 INFO - 9 beans defined in application context [Root WebApplicationContext] [XmlWebApplicationContext:322]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,654 INFO - Unable to locate MessageSource with name 'messageSource': using default [[email protected]9d] [XmlWebApplicationContext:473]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,654 INFO - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@f0f2f1e] [XmlWebApplicationContext:495]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,654 INFO - Unable to locate ThemeSource with name 'themeSource': using default [[email protected]f0fdecd] [UiApplicationContextUtils:83]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,654 INFO - Pre-instantiating singletons in factory [org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [acegiFilterChainProxy,httpSessionContextIntegrationFilter,securityRequestFilter,exceptionTranslationFilter,filterSecurityInterceptor,authenticationManager,daoAuthenticationProvider,userDetailsService,authenticationBean]; root of BeanFactory hierarchy] [DefaultListableBeanFactory:261]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,888 INFO - Validated configuration attributes [AbstractSecurityInterceptor:220]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,888 INFO - Using context class [org.springframework.web.context.support.XmlWebApplicationContext] for root WebApplicationContext [ContextLoader:189]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,888 INFO - Root WebApplicationContext: initialization completed in 703 ms [ContextLoader:199]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,904 INFO - Initializing filter 'RequestContextFilter' [RequestContextFilter:152]
    INFO | jvm 1 | 2009/08/06 06:14:57 | 06 Aug 2009 06:14:57,904 INFO - Filter 'RequestContextFilter' configured successfully [RequestContextFilter:177]
    INFO | jvm 1 | 2009/08/06 06:14:58 | Aug 6, 2009 6:14:57 AM org.apache.catalina.startup.HostConfig deployWAR
    INFO | jvm 1 | 2009/08/06 06:14:58 | INFO: Deploying web application archive ROOT.war
    INFO | jvm 1 | 2009/08/06 06:14:58 | Aug 6, 2009 6:14:58 AM org.apache.coyote.http11.Http11Protocol start
    INFO | jvm 1 | 2009/08/06 06:14:58 | INFO: Starting Coyote HTTP/1.1 on http-12345
    INFO | jvm 1 | 2009/08/06 06:14:58 | Aug 6, 2009 6:14:58 AM org.apache.catalina.startup.Catalina start
    INFO | jvm 1 | 2009/08/06 06:14:58 | INFO: Server startup in 4531 ms
    INFO | wrapper | 2009/08/06 07:10:02 | User logged out. Ignored.
    INFO | wrapper | 2009/08/06 07:10:03 | User logged out. Ignored.
    INFO | jvm 1 | 2009/08/06 07:10:04 | OpenLog: verbosity level = 2
    INFO | jvm 1 | 2009/08/06 07:10:04 | bid.bootstrap.loglevel=info+
    INFO | jvm 1 | 2009/08/06 07:10:04 | 06 Aug 2009 07:10:04,279 INFO - Closing application context [Root WebApplicationContext] [XmlWebApplicationContext:599]
    INFO | jvm 1 | 2009/08/06 07:10:04 | 06 Aug 2009 07:10:04,279 INFO - Destroying singletons in {org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [acegiFilterChainProxy,httpSessionContextIntegrationFilter,securityRequestFilter,exceptionTranslationFilter,filterSecurityInterceptor,authenticationManager,daoAuthenticationProvider,userDetailsService,authenticationBean]; root of BeanFactory hierarchy} [DefaultListableBeanFactory:272]
    INFO | jvm 1 | 2009/08/06 07:10:04 | 8-6-2009     7:10:04.279     Info     OpenKernel.Config     Disabled-1249557004060     Wrapper-Shutdown-Hook     com.plumtree.openkernel.impl.config.providers.ConfigXMLFileProvider     Loading config data from C:\bea\alui\configmgr\2.0\bin\../settings/config
    INFO | jvm 1 | 2009/08/06 07:10:04 | OpenControls.winapaqlog4
    INFO | jvm 1 | 2009/08/06 07:10:04 | INFO: PmbApplication.run() exiting forcefully... Releasing one worker thread.
    INFO | jvm 1 | 2009/08/06 07:10:04 | 8-6-2009     7:10:04.810     Info     OpenKernel.Config     Disabled-1249557004060     Wrapper-Shutdown-Hook     com.plumtree.openkernel.impl.config.providers.ConfigXMLFileProvider     Setting subscription data.
    INFO | jvm 1 | 2009/08/06 07:10:04 | container config context:EAS:configurator
    INFO | jvm 1 | 2009/08/06 07:10:04 | OpenLog: Registered application name: ConfigInitialization (local machine only)
    INFO | jvm 1 | 2009/08/06 07:10:04 | OpenLog: Configuration component contained no logging settings. Creating disabled log service.
    STATUS | wrapper | 2009/08/06 07:10:06 | <-- Wrapper Stopped
    ============================================================================
    When we are starting , it stays for couple of mins say 10/15 mins then it stops.
    Can any body have any idea what should i do to get it resolved.

    The logs look odd to say the least on start up and there are couple items when the service gets the signal to shutdown that are suspicious.
    My suggestion is to troubleshoot top down. Clean up the discrepant messages upon startup.
    message : INFO
    Please verify that the file is readable by the current user
    and that the file has not been corrupted in any way.
    One common cause of this problem is running a 32-bit version
    of the Wrapper with a 64-bit version of Java, or vica versa.
    This is a 64-bit JVM.
    Are you attempting change the existing out of box JVM?
    You know it doesn't use sun jvm anymore. It's JROCKIT.
    Make sure your JVM Settings are as follows:
    C:\bea\alui\configmgr\2.0\settings\config\wrapper_base.conf
    # Java Application
    wrapper.java.command=%JRE_PATH%/bin/java
    THEN Verify:
    CMD
    cd C:\bea\alui\common\jre\1.5.0_32\
    java -versionYou should get something like.
    java version "1.5.0_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
    BEA JRockit(R) (build R27.4.0-90-89592-1.5.0_12-20070928-1715-windows-ia32, comp
    iled mode)
    In any case, your enviroment seems funky. Use the tips above to troubleshoot.
    Troubleshoot this error first and find out why it thinks your using a 64 bit JVM versus a 32 bit one.
    Last tip: Place Logging into Debug to see whether more logging will give you further insight into the problem.
    Hope this helps!
    Cheers!!!

  • DW crashes when attempting to insert another collapsible panel

    Hello all, please be patient with me as it is my first post...i am trying to insert another collapsible panel into my content div and my Dreamweaver CS5 has crashes multiple times...here are my codes:
    forgive me if i am adding too much, the address is: http://www.crestars.com/accordion.html
    i have a lightbox inserted into my first panel...i'm just trying to add another panel for a different set of pictures.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Martine &amp; Dewaine's pictures</title>
    <link href="css/chinesecrestedatcrestars.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css" />
    <!--[if IE]><script type="text/javascript" src="dmx/lib/excanvas-compressed.js"></script><![endif]-->
    <link rel="stylesheet" type="text/css" href="dmx/widgets/Lightbox/styles/default/style.css" />
    <script type="text/javascript" src="ScriptLibrary/jquery-latest.pack.js"></script>
    <script type="text/javascript" src="dmx/dmx.core.js"></script>
    <script type="text/javascript" src="dmx/widgets/Lightbox/dmx.lightbox.js"></script>
    </head>
    <body>
    <div id="wrapper"> <!-- #BeginLibraryItem "/Library/crestars_navigation_menu.lbi" --><img src="pictures/banner/banner.png" width="1000" height="200" alt="Chinese Cresteds at Crestars" /><!-- #BeginLibraryItem "/Library/chinese_crested_navbar.lbi" -->
    <div id="SofteryMenu" style="position:relative; top:0; visibility: visible; z-index: 100;">
      <object id="sf_menu" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="100%" height="25">
       <param name="movie" value="SofteryMenus/sf6menu119.swf" />
       <param name="quality" value="high" />
       <param name="wmode" value="transparent" />
       <param name="FlashVars" value="flashlet={_bgPicture:'NA',_googleDomain:'http://www.google.com',_googleSearch:false,_mainButtonHeight:25,_mainButtonTextColor:#E7E9 EC,_mainFont:'Tahoma',_mainFontSize:12,_mainHighlightColor:#999999,_mainTextHighlightColor :#13133C,_menuAlign:'center',_menuColor:#737373,_menuLeftMargin:90,_menuMinimalWidth:493,_ menuRightMargin:100,_menuTopMargin:0,_searchFieldColor:#ffffff,_searchFieldWidth:70,_searc hInputTextColor:#666666,_searchVariable:'searchText',_subButtonHeight:20,_subButtonTextCol or:#E7E9EC,_subFont:'Tahoma',_subFontSize:12,_subHighlightColor:#999999,_subMenuColor:#737 373,_subShowSpeed:20,_subTextHighlightColor:#13133C,_yourDomain:'NA',autosize:true,needSea rch:false,navigationTree:['Mainbut1:Home;http://www.crestars.com;_top','Mainbut2:About Crestars *amp* Us;;','_subbuton1:Crestars Belief;chinese_crested_about_crestars.html;_parent','_subbuton2:Martine *amp* Dewaine;about_dewaine_and_martine.html;_parent','_subbuton3:Contact;mailto:[email protected]?subject=I visited your website and;_top','Mainbut3:General Information;;_parent','_subbuton1:FAQ\'s;chinese_crested_faq.html;_parent','_subbuton2:Ge neral Overview;chinese_crested_info.html;_parent','_subbuton3:Common Health Issues;chinese_crested_common_health_issues.html;_parent','_subbuton4:Exercise;chinese_cr ested_exercising.html;_parent','_subbuton5:Other Links;other_links.html;_parent','Mainbut4:Grooming;;_parent','_subbuton1:Read First;chinese_crested_grooming.html;_parent','_subbuton2:A Hairy Hairless;chinese_crested_grooming_hairy_hairless.html;_parent','_subbuton3:A Medium Hairy Hairless;chinese_crested_grooming_medium_hairy.html;_parent','_subbuton4:A True Hairless;chinese_crested_grooming_true_hairless.html;_parent','_subbuton5:A Powderpuff;chinese_crested_grooming_powderpuff.html;_parent','_subbuton6:Taping Puppy Ears;chinese_crested_ear_taping.html;','_subbuton7:Grooming Supplies;chinese_crested_grooming_supplies.html;','Mainbut5:Our Males;;_parent','_subbuton1:Bootz;chinese_crested_bootz.html;_parent','_subbuton2:Bugzy;c hinese_crested_bugzy.html;_parent','_subbuton3:Oreo;chinese_crested_oreo.html;_parent','Ma inbut6:Our Females;;_parent','_subbuton1:Candy;chinese_crested_candy.html;','_subbuton2:Didi;chinese _crested_didi.html;','_subbuton3:Goldie;chinese_crested_goldie.html;','_subbuton4:Hottie;c hinese_crested_hottie.html;','_subbuton5:Izzee;chinese_crested_izzee.html;_parent','_subbu ton6:Vickie;chinese_crested_vicki.html;','_subbuton7:Zeekitah;chinese_crested_zeekitah.htm l;','Mainbut7:New Generation;;','_subbuton1:Puppies;chinese_crested_puppies.html;','_subbuton2:Show Hopefuls;chinese_crested_hopefuls.html;','_subbuton3:Available;chinese_crested_available. html;','Mainbut8:What\'s New...;crestars_latest_news.html;','Mainbut9:New owners...;chinese_crested_new_owners.html;','Mainbut10:Rainbow Bridge;chinese_crested_rainbow_bridge.html;_parent']}" />
       <embed id="sf_menu2" src="SofteryMenus/sf6menu119.swf" wmode="transparent" quality="high" flashvars="flashlet={_bgPicture:'NA',_googleDomain:'http://www.google.com',_googleSearch:false,_mainButtonHeight:25,_mainButtonTextColor:#E7E9 EC,_mainFont:'Tahoma',_mainFontSize:12,_mainHighlightColor:#999999,_mainTextHighlightColor :#13133C,_menuAlign:'center',_menuColor:#737373,_menuLeftMargin:90,_menuMinimalWidth:493,_ menuRightMargin:100,_menuTopMargin:0,_searchFieldColor:#ffffff,_searchFieldWidth:70,_searc hInputTextColor:#666666,_searchVariable:'searchText',_subButtonHeight:20,_subButtonTextCol or:#E7E9EC,_subFont:'Tahoma',_subFontSize:12,_subHighlightColor:#999999,_subMenuColor:#737 373,_subShowSpeed:20,_subTextHighlightColor:#13133C,_yourDomain:'NA',autosize:true,needSea rch:false,navigationTree:['Mainbut1:Home;http://www.crestars.com;_top','Mainbut2:About Crestars *amp* Us;;','_subbuton1:Crestars Belief;chinese_crested_about_crestars.html;_parent','_subbuton2:Martine *amp* Dewaine;about_dewaine_and_martine.html;_parent','_subbuton3:Contact;mailto:[email protected]?subject=I visited your website and;_top','Mainbut3:General Information;;_parent','_subbuton1:FAQ\'s;chinese_crested_faq.html;_parent','_subbuton2:Ge neral Overview;chinese_crested_info.html;_parent','_subbuton3:Common Health Issues;chinese_crested_common_health_issues.html;_parent','_subbuton4:Exercise;chinese_cr ested_exercising.html;_parent','_subbuton5:Other Links;other_links.html;_parent','Mainbut4:Grooming;;_parent','_subbuton1:Read First;chinese_crested_grooming.html;_parent','_subbuton2:A Hairy Hairless;chinese_crested_grooming_hairy_hairless.html;_parent','_subbuton3:A Medium Hairy Hairless;chinese_crested_grooming_medium_hairy.html;_parent','_subbuton4:A True Hairless;chinese_crested_grooming_true_hairless.html;_parent','_subbuton5:A Powderpuff;chinese_crested_grooming_powderpuff.html;_parent','_subbuton6:Taping Puppy Ears;chinese_crested_ear_taping.html;','_subbuton7:Grooming Supplies;chinese_crested_grooming_supplies.html;','Mainbut5:Our Males;;_parent','_subbuton1:Bootz;chinese_crested_bootz.html;_parent','_subbuton2:Bugzy;c hinese_crested_bugzy.html;_parent','_subbuton3:Oreo;chinese_crested_oreo.html;_parent','Ma inbut6:Our Females;;_parent','_subbuton1:Candy;chinese_crested_candy.html;','_subbuton2:Didi;chinese _crested_didi.html;','_subbuton3:Goldie;chinese_crested_goldie.html;','_subbuton4:Hottie;c hinese_crested_hottie.html;','_subbuton5:Izzee;chinese_crested_izzee.html;_parent','_subbu ton6:Vickie;chinese_crested_vicki.html;','_subbuton7:Zeekitah;chinese_crested_zeekitah.htm l;','Mainbut7:New Generation;;','_subbuton1:Puppies;chinese_crested_puppies.html;','_subbuton2:Show Hopefuls;chinese_crested_hopefuls.html;','_subbuton3:Available;chinese_crested_available. html;','Mainbut8:What\'s New...;crestars_latest_news.html;','Mainbut9:New owners...;chinese_crested_new_owners.html;','Mainbut10:Rainbow Bridge;chinese_crested_rainbow_bridge.html;_parent']}" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%" height="25"> </embed>
      </object>
    </div>
    <!-- #EndLibraryItem --><!-- #EndLibraryItem -->
    <div id="content">
      <div id="housesurroundings" class="CollapsiblePanel">
       <div class="CollapsiblePanelTab" tabindex="0"> Check out our house surroundings   </div>
       <div class="CollapsiblePanelContent"><a href="pictures/flower1.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/flower1.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/dahlia1.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/dahlia1.jpg" width="66" height="100" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/flower2.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/flower2.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/flower3.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/flower3.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/flower4.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/flower4.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard1.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard1.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard2.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard2.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard3.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard3.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard4.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard4.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard5.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard5.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard6.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard6.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard7.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard7.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard8.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard8.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard9.jpg" title="My pet rock all the way from Quebec!" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard9.jpg" width="100" height="66" alt="My pet rock all the way from Quebec!" border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard10.jpg" title="Garden Flowers " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard10.jpg" width="100" height="66" alt="Garden Flowers " border="0" /></a> <a href="pictures/aboutus/around_the_house/frontyard11.jpg" title="Cute little birdhouse that nobody wants to use..." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/frontyard11.jpg" width="66" height="100" alt="Cute little birdhouse that nobody wants to use..." border="0" /></a> <a href="pictures/aboutus/around_the_house/lightning.jpg" title="Lightning show from our back yard" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/lightning.jpg" width="100" height="66" alt="Lightning show from our back yard" border="0" /></a> <a href="pictures/aboutus/around_the_house/lightning1.jpg" title="Lightning show from our back yard" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/lightning1.jpg" width="100" height="66" alt="Lightning show from our back yard" border="0" /></a> <a href="pictures/aboutus/around_the_house/lightning2.jpg" title="Lightning show from our back yard" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/lightning2.jpg" width="100" height="66" alt="Lightning show from our back yard" border="0" /></a> <a href="pictures/aboutus/around_the_house/lilly2.jpg" title="Garden Flowers" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/lilly2.jpg" width="100" height="66" alt="Garden Flowers" border="0" /></a> <a href="pictures/aboutus/around_the_house/lilly3.jpg" title="Garden Flowers" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/lilly3.jpg" width="100" height="66" alt="Garden Flowers" border="0" /></a> <a href="pictures/aboutus/around_the_house/lilly4.jpg" title="Garden Flowers" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/lilly4.jpg" width="100" height="66" alt="Garden Flowers" border="0" /></a> <a href="pictures/aboutus/around_the_house/rose1.jpg" title="Garden Flowers" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/rose1.jpg" width="100" height="69" alt="Garden Flowers" border="0" /></a> <a href="pictures/aboutus/around_the_house/rose2.jpg" title="Garden Flowers" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/rose2.jpg" width="100" height="66" alt="Garden Flowers" border="0" /></a> <a href="pictures/aboutus/around_the_house/rose3.jpg" title="Garden Flowers" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/rose3.jpg" width="100" height="70" alt="Garden Flowers" border="0" /></a> <a href="pictures/aboutus/around_the_house/firepit1.jpg" title="Enjoying a nice fire by the fire pitt with family" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/firepit1.jpg" width="100" height="75" alt="Enjoying a nice fire by the fire pitt with family" border="0" /></a> <a href="pictures/aboutus/around_the_house/dewaine_enjoying_the_sun_on_front_deck.jpg" title="Nothing beats relaxing on the front deck..." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/dewaine_enjoying_the_sun_on_front_deck.jpg" width="100" height="66" alt="Nothing beats relaxing on the front deck..." border="0" /></a> <a href="pictures/aboutus/around_the_house/dewaine_oreo_bugzy_hammack.jpg" title="Dewaine enjoying himself in the hammeck with a couple of dogs" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/dewaine_oreo_bugzy_hammack.jpg" width="100" height="66" alt="Dewaine enjoying himself in the hammeck with a couple of dogs" border="0" /></a> <a href="pictures/aboutus/around_the_house/dewaine_oreo_front_deck1.jpg" title="Someone needs to patrol what's going on...Dewaine and Oreo take their job seriously " rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/dewaine_oreo_front_deck1.jpg" width="100" height="68" alt="Someone needs to patrol what's going on...Dewaine and Oreo take their job seriously " border="0" /></a> <a href="pictures/aboutus/around_the_house/firepit2.jpg" title="Let the fire rise!" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/firepit2.jpg" width="66" height="100" alt="Let the fire rise!" border="0" /></a> <a href="pictures/aboutus/around_the_house/fire1.jpg" title="Fire pitt" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/fire1.jpg" width="100" height="66" alt="Fire pitt" border="0" /></a> <a href="pictures/aboutus/around_the_house/seeds_on_table2.jpg" title="Seeds from our back yard Manitoba Maple on a piece of bark" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/seeds_on_table2.jpg" width="100" height="66" alt="Seeds from our back yard Manitoba Maple on a piece of bark" border="0" /></a> <a href="pictures/aboutus/around_the_house/backyard_figurines1.jpg" title="Cute little figurines in the back yard" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/backyard_figurines1.jpg" width="100" height="65" alt="Cute little figurines in the back yard" border="0" /></a> <a href="pictures/aboutus/around_the_house/backyard_figurines2.jpg" title="Cute little figurines in the back yard" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/backyard_figurines2.jpg" width="100" height="66" alt="Cute little figurines in the back yard" border="0" /></a> <a href="pictures/aboutus/around_the_house/backyard_figurines3.jpg" title="Cute little figurines in the back yard" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/backyard_figurines3.jpg" width="100" height="66" alt="Cute little figurines in the back yard" border="0" /></a> <a href="pictures/aboutus/around_the_house/seeds_falling_off_tree.jpg" title="Seeds falling off the Manitoba Maple Tree" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/seeds_falling_off_tree.jpg" width="100" height="66" alt="Seeds falling off the Manitoba Maple Tree" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow1.jpg" title="Ok nobody is going to BBQ today..." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow1.jpg" width="100" height="66" alt="Ok nobody is going to BBQ today..." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow2.jpg" title="Snow pilling up on front deck" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow2.jpg" width="100" height="66" alt="Snow pilling up on front deck" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow3.jpg" title="Snow fall" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow3.jpg" width="100" height="66" alt="Snow fall" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow4.jpg" title="Yuck who wants this much snow!" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow4.jpg" width="100" height="66" alt="Yuck who wants this much snow!" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow5.jpg" title="Yuck who wants this much snow!" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow5.jpg" width="100" height="66" alt="Yuck who wants this much snow!" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow7.jpg" title="Yuck who wants this much snow!" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow7.jpg" width="100" height="66" alt="Yuck who wants this much snow!" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow8.jpg" title="Looks fun?...just for 2 minutes!" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow8.jpg" width="100" height="66" alt="Looks fun?...just for 2 minutes!" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow9.jpg" title="Making a snow angel" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow9.jpg" width="100" height="65" alt="Making a snow angel" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow10.jpg" title="Snow angle snow print" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow10.jpg" width="100" height="66" alt="Snow angle snow print" border="0" /></a> <a href="pictures/aboutus/around_the_house/snow11.jpg" title="BRRRR..." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow11.jpg" width="67" height="100" alt="BRRRR..." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow12.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow12.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow13.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow13.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow14.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow14.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow15.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow15.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow16.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow16.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow17.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow17.jpg" width="75" height="100" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow18.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow18.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow19.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow19.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow20.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow20.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow21.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow21.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snow22.jpg" title="Pretty yes...but...." rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snow22.jpg" width="100" height="75" alt="Pretty yes...but...." border="0" /></a> <a href="pictures/aboutus/around_the_house/snowgarlandfence.jpg" title="Cool looking garland" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/snowgarlandfence.jpg" width="100" height="66" alt="Cool looking garland" border="0" /></a> <a href="pictures/aboutus/around_the_house/sunset_in_backyard_tree1.jpg" title="Fall funky colors from the sunset" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/sunset_in_backyard_tree1.jpg" width="100" height="66" alt="Fall funky colors from the sunset" border="0" /></a> <a href="pictures/aboutus/around_the_house/sunset_in_backyard_tree2.jpg" title="Fall funky colors from the sunset" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/sunset_in_backyard_tree2.jpg" width="100" height="66" alt="Fall funky colors from the sunset" border="0" /></a> <a href="pictures/aboutus/around_the_house/sunset_in_backyard_tree3.jpg" title="Fall funky colors from the sunset" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/sunset_in_backyard_tree3.jpg" width="66" height="100" alt="Fall funky colors from the sunset" border="0" /></a> <a href="pictures/aboutus/around_the_house/tree_seeds_on_table2.jpg" title="Fall funky colors from the sunset" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/tree_seeds_on_table2.jpg" width="100" height="66" alt="Fall funky colors from the sunset" border="0" /></a> <a href="pictures/aboutus/around_the_house/tree_seeds_on_table.jpg" title="Seeds from our Manitoba Maple tree" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/tree_seeds_on_table.jpg" width="100" height="66" alt="Seeds from our Manitoba Maple tree" border="0" /></a> <a href="pictures/aboutus/around_the_house/woodsplitter1.jpg" title="Preparing for the winter" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/woodsplitter1.jpg" width="100" height="66" alt="Preparing for the winter" border="0" /></a> <a href="pictures/aboutus/around_the_house/woodsplitter2.jpg" title="Fall funky colors from the sunset" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/woodsplitter2.jpg" width="100" height="66" alt="Fall funky colors from the sunset" border="0" /></a><a href="pictures/aboutus/around_the_house/cloud_shadow_1.jpg" title="Weird forming clouds...the shadow was behind" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/cloud_shadow_1.jpg" width="100" height="56" alt="Weird forming clouds...the shadow was behind" border="0" /></a><a href="pictures/aboutus/around_the_house/cloud_shadow_2.jpg" title="Weird cloud" rel="dmxLightbox" rev="{group:'AroundOurHouseGarden', preset:'thin'}"><img src="pictures/thumbs/cloud_shadow_2.jpg" alt="Weird cloud" width="100" height="56" border="0" /></a><a href="pictures/thumbs/thumbs/laughing_cloud.jpg" title="" rel="dmxLightbox" rev="{group: 'AroundOurHouseGarden', preset: 'thin'}"><img src="pictures/thumbs/thumbs/thumbs/laughing_cloud.jpg" width="100" height="66" alt="" border="0" /></a></div>
      </div>
    <p> </p>
    </div>
    <!-- #BeginLibraryItem "/Library/chinesecrestedfooter.lbi" -->
    <style type="text/css">
    <!--
    .smallercentered {
    text-align: center;
    font-size: 12px;
    -->
    </style>
    <span class="smallercentered">The entire Site is Copyrighted&copy;, 2010. Designed by owner, <a href="mailto:[email protected]?subject=I visited your website and..." target="_blank">Martine Couture</a></span><!-- #EndLibraryItem --> </div>
    <script type="text/javascript">
    var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("housesurroundings", {contentIsOpen:false});
    </script>
    </body>
    </html>

    Depending on the development environment, I can imagine that DW has a problem.
    My systems is Windows7, i7 processor, 8GB ram and it does take a while for DW to add an extra collapsible panel.
    Possible solutions
    use accordion panels
    hand code the second collapsible panel
    use a Collapsible Panel Group
    To hand code all you have to do is add the following to your document, in the appropriate places amking sure that the ID corresponds.
    <div id="CollapsiblePanel2" class="CollapsiblePanel">
       <div class="CollapsiblePanelTab" tabindex="0">Tab</div>
       <div class="CollapsiblePanelContent">Content</div>
    </div>
    and
    var CollapsiblePanel2 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel2");
    For more info on a Collapsible Panel Group see here http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/CollapsiblePanelGroupSamp le.html
    Gramps

  • Error retrieving Certificate from Default JKS in PI 7.1 WAS JAVA

    Hi everyone.
    I'm trying to retrieve a Certificate from the Default JKS of a WAS Java (PI 7.1).
    Java code follows:
    +InitialContext ctx = new InitialContext(ctxProp);               +
    Object o = (Object) ctx.lookup("keystore");
    KeyStoreManager manager = (KeyStoreManager) o;
    KeyStore keyStore = manager.getKeyStore("DEFAULT");
    Certificate ret = ks.getCertificate("ProofCert");
    While executing, following Exception arise:
    incompatible with interface com.sap.aii.security.lib.KeyStoreManager:sap.com/PIC-WRAPPER-FD-EAR-library-loader
    It seems that I need additional libraries:
    I have imported that:
    import java.security.KeyStore;
    import java.security.cert.X509Certificate;
    import com.sap.aii.security.lib.KeyStoreManager;
    //import java.security.cert.Certificate;
    Has anyone some Idea of what is happening? What addiotional libraries I need?
    Java version is 5.
    Regards,

    You need to import the following security libraries:
    \usr\sap\<SID>\DVEBMGS00\j2ee\cluster\bin\ext\com.sap.aii.sec.lib\lib\com.sap.aii.sec.lib_api.jar
    \usr\sap\<SID>\DVEBMGS00\j2ee\cluster\bin\ext\com.sap.aii.sec.lib\lib\private\com.sap.aii.sec.lib_core.jar
    and all the libraries under "security.class".

  • How to call an API available in C++ dll?

    Can we make a call to an API available in C++ dll(COM or non-COM)?
    If so, can you point me to a sample?
    Thanks in advance?

    Java Native Interface (JNI) is the most complex solution, you have to make a wrapper as a library in C/C++.
    JNA (Java Native Acess) is an extension of JNI which consist of rewritting in java the native functions in the lib.
    In any cases the big workaround is the linking at java side, two solutions:
    Integrate your natives libs correctly in a jnlp file and jar (see runtime jnlp as an exemple)
    Extract manaualy at runtime the content of the lib in the root path.
    In conclusion, for java/javaFX & C/C++, JNA and dependency walker are your friends.
    Ask me if you need more details.
    NB: be carrefull with 32 / 64 bit

  • Internet gets suddenly cut off. How to stop this?

    After browsing the Internet for a random amount of time, my Internet will always cut itself off and I would not be able to go to any webpage after that. The browser would keep loading it forever without anything coming up. The amount of time between when I start browsing the Internet to the moment it stops working varies greatly from ten to thirty minutes. This happens with all browsers including Safari and Google Chrome. I have to restart my computer to get the Internet working again and I have to do this every time the Internet stops working. However, my Internet connection seems to be fine even after that since I have verified this using the ping test in the Terminal.
    I have just upgraded my computer to Maverick recently. Before that, I cannot use the Internet at all since my computer could not connect to the server. After the upgrade, I can now use the Internet but it stops working after some time. How do I prevent my Internet from stop working?

    Sorry for taking so long. It took me a while to back everything up. This is the result of the diagnostic test that you asked me to run. I did the test when my access to websites was already lost:
    Start time: 15:52:38 08/03/14
    Model Identifier: iMac11,1
    System Version: OS X 10.9.4 (13E28)
    Kernel Version: Darwin 13.3.0
    Boot Mode: Normal
    Time since boot: 17:53
    Admin access: No
    SATA
       WDC WD1001FALS-40U9B0                  
    FileVault: FileVault master keychain appears to be installed
    Diagnostic reports
       2014-07-05 PerianUpdateChecker crash
       2014-07-05 PerianUpdateChecker crash
       2014-07-05 PerianUpdateChecker crash
       2014-07-05 PerianUpdateChecker crash
       2014-07-05 PerianUpdateChecker crash
       2014-07-20 PerianUpdateChecker crash
       2014-07-21 PerianUpdateChecker crash
       2014-07-21 PerianUpdateChecker crash
       2014-07-22 PerianUpdateChecker crash
       2014-07-24 PerianUpdateChecker crash
       2014-07-24 PerianUpdateChecker crash
       2014-07-26 steam crash
    kexts
       com.sophos.nke.swi (9.0.53)
       com.sophos.kext.sav (9.0.61)
    Agents
       org.macosforge.xquartz.startx
       com.sophos.uiserver
       com.google.keystone.system.agent
       com.valvesoftware.steamclean
       com.adobe.ARM.UUID
    launchd
       /Library/LaunchAgents/com.google.keystone.agent.plist
       - com.google.keystone.system.agent
       /Library/LaunchAgents/com.sophos.uiserver.plist
       - com.sophos.uiserver
       /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
       - org.macosforge.xquartz.startx
       /Library/LaunchDaemons/com.adobe.fpsaud.plist
       - com.adobe.fpsaud
       /Library/LaunchDaemons/com.google.keystone.daemon.plist
       - com.google.keystone.daemon
       /Library/LaunchDaemons/com.sibelius.sari.plist
       - com.sibelius.sari
       /Library/LaunchDaemons/com.sibelius.sibelius6.plist
       - com.sibelius.sibelius6
       /Library/LaunchDaemons/com.sophos.autoupdate.plist
       - com.sophos.autoupdate
       /Library/LaunchDaemons/com.sophos.configuration.plist
       - com.sophos.configuration
       /Library/LaunchDaemons/com.sophos.intercheck.plist
       - com.sophos.intercheck
       /Library/LaunchDaemons/com.sophos.notification.plist
       - com.sophos.notification
       /Library/LaunchDaemons/com.sophos.scan.plist
       - com.sophos.scan
       /Library/LaunchDaemons/com.sophos.sxld.plist
       - com.sophos.sxld
       /Library/LaunchDaemons/com.sophos.webd.plist
       - com.sophos.webd
       /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist
       - org.macosforge.xquartz.privileged_startx
       Library/LaunchAgents/com.adobe.ARM.UUID.plist
       - com.adobe.ARM.UUID
       Library/LaunchAgents/com.valvesoftware.steamclean.plist
       - com.valvesoftware.steamclean
    Startup items
       /Library/StartupItems/KodakDatabase/daemon
       /Library/StartupItems/KodakDatabase/KodakDatabase
       /Library/StartupItems/KodakDatabase/libwrapper.jnilib
       /Library/StartupItems/KodakDatabase/StartupParameters.plist
       /Library/StartupItems/KodakDatabase/wrapper
       /Library/StartupItems/KodakWebPortal/daemon
       /Library/StartupItems/KodakWebPortal/KodakWebPortal
       /Library/StartupItems/KodakWebPortal/libwrapper.jnilib
       /Library/StartupItems/KodakWebPortal/StartupParameters.plist
       /Library/StartupItems/KodakWebPortal/wrapper
    Bundles
       /System/Library/Extensions/SophosNetworkInterceptor.kext
       - com.sophos.nke.swi
       /System/Library/Extensions/SophosOnAccessInterceptor.kext
       - com.sophos.kext.sav
       /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
       - info.emagic.driver.unitor
       /Library/Audio/Plug-Ins/Components/GM_Module_AU.component
       - com.m-audio.rigs.gm.sib
       /Library/Extensions/SophosNetworkInterceptor.kext
       - com.sophos.nke.swi
       /Library/Extensions/SophosOnAccessInterceptor.kext
       - com.sophos.kext.sav
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
       - com.adobe.acrobat.pdfviewer
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
       - com.adobe.acrobat.pdfviewerNPAPI
       /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
       - com.divx.DivXBrowserPlugin
       /Library/Internet Plug-Ins/Flash Player.plugin
       - N/A
       /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
       - net.telestream.wmv.plugin
       /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.webplugin
       - net.telestream.wmv.webplugin
       /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
       - com.Google.GoogleEarthPlugin.plugin
       /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
       - com.google.googletalkbrowserplugin
       /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
       - com.apple.plugin.iPhotoPhotocast
       /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
       - com.google.o1dbrowserplugin
       /Library/Internet Plug-Ins/OfficeLiveBrowserPlugin.plugin
       - com.microsoft.officelive.browserplugin
       /Library/Internet Plug-Ins/OVSHelper.plugin
       - com.divx.OVSHelper
       /Library/Internet Plug-Ins/Scorch.plugin
       - com.sibelius.scorch
       /Library/Internet Plug-Ins/Silverlight.plugin
       - com.microsoft.SilverlightPlugin
       /Library/Internet Plug-Ins/Unity Web Player.plugin
       - com.unity.UnityWebPlayer
       /Library/Internet Plug-Ins (Disabled)/Flash Player.plugin
       - N/A
       /Library/PreferencePanes/DivX.prefPane
       - com.divx.divxprefs
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/PreferencePanes/Flip4Mac WMV.prefPane
       - net.telestream.wmv.prefpane
       /Library/Spotlight/GBSpotlightImporter.mdimporter
       - com.apple.garageband.spotlightimporter
       Library/Audio/Plug-Ins/Components/A52Codec.component
       - com.shepmater.A52Codec
       Library/Caches/com.apple.Safari/Extensions/DivXHTML5.safairextension
       - com.divx.DivXHTML5
       Library/Caches/com.apple.Safari/Extensions/Searchme-2.safariextension
       - com.spigot.safari.searchme
       Library/Internet Plug-Ins/Picasa.plugin
       - com.google.PicasaPlugin
       Library/Internet Plug-Ins/SOEWebInstaller.plugin
       - com.sony.soe.WebInstallerPlugin
       Library/PreferencePanes/Perian.prefPane
       - org.perian.PerianPane
       Library/QuickTime/AC3MovieImport.component
       - com.cod3r.ac3movieimport
       Library/QuickTime/Perian.component
       - org.perian.Perian
    Contents of /etc/ssh_config
       Host *
           XAuthLocation /opt/X11/bin/xauth
    Contents of /etc/sshd_config
       SyslogFacility AUTHPRIV
       AuthorizedKeysFile .ssh/authorized_keys
       UsePrivilegeSeparation sandbox # Default for new installations.
       AcceptEnv LANG LC_*
       Subsystem sftp /usr/libexec/sftp-server
       XAuthLocation /opt/X11/bin/xauth
    Contents of /System/Library/LaunchDaemons/com.apple.screensharing.plist (XML  document text)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
       <key>Disabled</key>
       <false/>
       <key>EnableTransactions</key>
       <true/>
       <key>GroupName</key>
       <string>wheel</string>
       <key>Label</key>
       <string>com.apple.screensharing</string>
       <key>MachServices</key>
       <dict>
       <key>com.apple.screensharing.server</key>
       <dict>
       <key>HideUntilCheckIn</key>
       <true/>
       <key>ResetAtClose</key>
       <true/>
       </dict>
       </dict>
       <key>ProgramArguments</key>
       <array>
       <string>/System/Library/CoreServices/RemoteManagement/screensharingd.bundle/Con tents/MacOS/screensharingd</string>
       ...and 17 more line(s)
    Font issues: 40
    Firewall: On
    Parental Controls: On
    Safari extensions
       DivX Plus Web Player HTML5 <video>
       Searchme
    Restricted files: 21355
    Elapsed time (s): 164

  • Handling dependencies when creating libraries (git)

    Ok I wrote a huge post which was lost, so I'll try to be brief this time.
    I'm making a library, and a wrapper/binding for that library in another repository. The wrapper obviously depends on the library. So my question is, how can I relate these repositories? At first I thought I could have wrapper repo include the library repo as a git submodule. But the main drawback of that is that if I then create a second wrapper for the library in a third repo, also including the library repo as a git submodule, I will get two copies of the library repo if I make a project depending on both wrappers.
    I'm starting to think that maybe I should just have my wrappers assume that the library is already installed in the system, and look for it in system paths. And I'm not used to creating install scripts at all, but that's another topic. I haven't been developing in a linux based os very long. But my fear then is when I need to use different versions/branches of the library, and will have to remember to run the correct install script and stuff manually.
    Please advice. How does your workflow look? Are there any tools worth mentioning? So far I have been using git for version control and scons for building and that's it. Real world examples that I can browse on github or such might be helpful too.
    Thank you.

    I do like the git submodules, but there is a potential problem with them. When working with reusable components, it's very tempting to include them as git submodules. But, I'm not sure how to handle a situation like this:
    (ReusableA)<----\
    Î \
    | \
    (ReusableB) (ReusableC)
    Î Î
    | /
    (Application1)--/
    Application1 depends on ReusableB and ReusableC, and therefore includes them in it's repo as git submodules. However, since both ReusableB and ReusableC depend on ReusableA and include that as git submodules, I end up with two copies (of possibly different revisions) of ReusableA. This is the problem that I'm not sure how to tackle. Maybe it will be easy to avoid by just not initializing both instances of ReusableA. So is this a situation to avoid or am I just worrying about a problem that isn't really a problem? If it's possible to only initialize one instance of ReusableA, all involved repositories will still have clear dependencies in form of git submodules.

  • IVI Installer

    I  created an IVI Specific Driver using LabWindows/CVI 2009. Created installer and installed this driver. 
    After installation I do not see the driver on InstrumentsIO -> Instr Drvers panel in LabView.
    What do I need to do or how do I need to create installer in order to see the driver on InstrumentsIO -> Instr Drvers panel in LabView. 

    Eddie_B,
    The installer that you ran put files in their necessary places, but did not necessarily create a way for those files to interface with LabVIEW.  Take a look at the DevZone tutorial Conversion of an Instrument Driver from LabWindows/CVI to LabVIEW and follow the steps outlined there.  That will create a wrapper for the library in LabVIEW.
    Then, if you want to see the VIs you have created in your functions palette, you can edit the palette to look as you wish.  See the LabVIEW help Edit Controls and Functions Palette Set Dialog Box for instructions on how to do that.
    I hope this helps,
    Jen W
    Applications Engineer
    National Instruments
    ni.com/support

  • Double Rate Gige camera

    I have recently bought a PhotonFocus DR1-D2048x1088C-192-G2-8 Camera which is a standard gige camera but has a function called "double rate" which does image compression I believe to get almost double the frame rate of standard gige cameras.
    Now this works in other software I have tried but in both MAX and also the NI Vision software we have, the picture comes up as hazy/snowy when double rate is activated.
    Now I believe this is a driver thing and the people who I bought the camera from are asking if National Instruments can call on a specific driver or dll rather than their inbuilt one? 
    I am in no way and expert so hope I have made this clear enough.
    P.S I could not see the Ni Vision forum and appologise if this is in the wrong spot.

    Sure, this can be done.
    The amount of work around depends on quite a few factors.
    You cannot usually directly call 3rd party library functions, becouse LabView cannot handle specific data format conversions between LabView format and library format.
    Therefor, you need to create a C wrapper around that library and export C style functions, that use simple datatypes e.g. (int*, int...).
    You will need to get BGRA8b for colored or MONO8b / MONO16b / MONO32b for grayscale image pixel format from the manufacturers functions.
    If the libraries have some different output from the decoder, you would need to convert it.
    How to get the image from vision to you library memory and back, look here.
    Further in LabView, you can call these exported functions through "call library function node".
    If you are not familiar with C, this cannot be done, unless the libraries you want to use are designed for LabView.

  • CAN Frame to channel conversion using CVI

    Hi,
    I am using USB-8473 can bus modules in a project.  I would like to display the channel data by using the Frame to Channel conversion library.  Is there a version that can be used with CVI?  I am using CVI 9.1
    Thanks
    John

    Hello John,
    I do see what you mean, the VIs actually just call into a C dll. I dowloaded to the Library after reading your post and opened up the VIs. It looks like each is just a small wrapper around Call library funciton node. It is definately silly that the VIs are so well documented but not the functions of the dll itself. Based on browsing a few of these VIs, it would be pretty easy to write the wrapping code in C and call all the same functions of frchconvlib.dll. 
    I will look into whether this library was written by a third party or NI, and if its NI property I would like to expose the dll itself to users like yourself. 
    I do apologize that this is the only current solution. I will let you know what I find out.
    This kind of feedback it important to receive, so thank you for voicing you concern.
    Best,
    Anna K.
    National Instruments

  • Memory leak with AS3 Crypto Wrapper library

    Hello
    We're using the AS3 Crypto Wrapper library project and finding it significantly faster than Google code as3crypto to the point where our new project depends upon its performace. Hwoever we have run in to a major problem regarding memory management.
    We call a sequence of 4 HMAC and two  aes-128 decrypt operations about 30 times a second, on cipher arrays in the order of 1-5k bytes. Throughput performance is actually  great. However, System.totalMemory as reported by AS climbs by about 1MB/s as long as the app is in operation. Examining in the FB profiler after a ~20s of operation, we see 9085 instances of RCValue. AlchmeyYield has 1023 instances and both of these increase constantly, with comcomitant increase in memory. Efforts at forcing  garbage collection have failed. .
    What can we do to reign in the memory consumption of Alchemy && the AS3 Crypto library?
    Many thanks
    Will

    I discovered that releasing any AS3_Val objects that you pull out of the args array seems to solve the problem:
    AS3_Val TestFunc(void *data, AS3_Val args)
         AS3_Val someObj;
         AS3_ArrayValue(args, "AS3ValType", &someObj);
         AS3_Release(someObj); //this is what fixes the problem for me
         return AS3_Int(0);
    They don't do this in any of the examples, and it's not mentioned in the docs.  But some of the other forum threads talk about it:
    http://forums.adobe.com/thread/443246
    http://forums.adobe.com/thread/436800

  • MYSQL++ C++ wrapper library

    Can anyone send the path where we can download MYSQL++ library(Latest one with connection pooling for multithreading) for SunC++ compiler.

    Did you try
    http://www.mysql.org/

Maybe you are looking for

  • Can't copy file from SAP-directory to FTP server

    Hello, I can't copy files from the SAP server to the FTP server. The file is created with OPEN DATASET and CLOSE DATASET commands and is placed in the SAP-directory S:\usr\sap\DEV\DVEBMBGS00\work. I can see and read the file with transaction al11, so

  • HP UPD PDF's not printing, but computer says it did

    I haven't ever used UPD before. I installed a new printer using the UPD b/c I couldn't find a regular driver. Its working fine. So I wanted to see if the UPD would help an HP 4050 print faster on pdfs. In Imanager I associated the UPD driver to the H

  • Connecting to a database using Kerberos authentication

    I have a 10gR2 database for which I want to enable connection using Kerberos authenntication. I receive the following error: ORA-12637: Packet receive failed. In the sqlnet server trace I get the following error: nauk5ky_rd_req_decoded: Returning 31:

  • DOC_CHANGE_BADI not triggered for OLD SC-SAVE mode for EDIT- SAVE steps

    Hi Experts , We have SRM7.0 ( SP08) with ECC6 ( Ehp4) having Classic Scenario. In our business Price list ( Price in ECC Contract) will be always change  so, we have done small enhancement in BBP_DOC_CHANGE_BADI in method BBP_SC_CHANGE, to get latest

  • Remediation - 'Return to Quiz' button?

    Hi folks, I've just watched an excellent Lynda.com course on Captivate 8 (Essential Training). However, one issue has confused me and this is on remediation.  I've used remediation in the past, and sometimes the slide movement become a bit 'sticky' a