Oracle thin client stop working

I just applied hotfix 3 to my MX 7 standard deployment and
all my thin client connections to Oracle database now stop working.
When I tried to verify those data source in Administration, I
received the error "java.sql.SQLException: No suitable driver
available". All the connect work fine before the hoxfix.
My configuration is:
Windows 2000 Server
Coldfusion MX server version 7,0,0,91690
Java version 1.4.2_05
Java VM Specification Version 1.0
Java VM version 1.4.2_05-b04
Java Class Version 48.0
Please help.

Thank you for your assistance but my thin client connect is
still not working. I found the jvm.config file in directory
c:\ColdFusionMX7\runtime\bin. The content of the file is as follow:
# VM configuration
# Where to find JVM, if {java.home}/jre exists then that JVM
is used
# if not then it must be the path to the JRE itself
java.home=C:/CFusionMX7/runtime/jre
# If no java.home is specified a VM is located by looking in
these places in this
# order:
# 1) bin directory for java.dll (windows) or
lib/<ARCH>/libjava.so (unix)
# 2) ../jre
# 3) registry (windows only)
# 4) JAVA_HOME env var plus jre (ie $JAVA_HOME/jre)
# Arguments to VM
java.args=-server -DJINTEGRA_NATIVE_MODE
-DJINTEGRA_PREFETCH_ENUMS -Xmx512m -Dsun.io.useCanonCaches=false
-XX:MaxPermSize=128m -Dcoldfusion.rootDir={application.home}/../
-Dcoldfusion.libPath={application.home}/../lib -XX:+UseParallelGC
-Dcoldfusion.classPath={application.home}/../../classes,{application.home}/../lib/updates ,{application.home}/../lib/,{application.home}/../gateway/lib/,{application.home}/../wwwro ot/WEB-INF/cfform/jars,d:\\oracle9i\\jdbc\\lib\\ojdbc14.jar;C:\\CFusionMX7\\lib\\pdflib.ja r
# commas will be converted to platform specific separator and
the result will be passed
# as -Djava.ext.dirs= to the VM
java.ext.dirs={jre.home}/lib/ext
# where to find shared libraries
java.library.path={application.home}/../lib,{application.home}/../jintegra/bin,{applicatio n.home}/../jintegra/bin/international
system.path.first=false
# set the current working directory - useful for Windows to
control
# the default search path used when loading DLLs since it
comes
# before system directory, windows directory and PATH
java.user.dir={application.home}/../../lib
# JVM classpath
java.class.path={application.home}/servers/lib,{application.home}/../lib/macromedia_driver s.jar,{application.home}/lib/cfmx_mbean.jar,{application.home}/lib
Are you talking about Coldfusion classpath or JVM
classpath?

Similar Messages

  • Database connection encryption and integrity with ColdFusion and Oracle thin client

    As ColdFusion datasource we are using the Oracle thin client to  connect with the database. So, basically we are using a JDBC URL such as  jdbc:oracle:thin:@... and as Driver Class oracle.jdbc.OracleDriver. This works successfully however we would like to set encryption and  integrity parameters as well. In Java this is done similarly by setting a  Properties object prior to getting a connection as follows:
    Properties prop = new Properties();
    prop.put("oracle.net.encryption_client", "REQUIRED");
    prop.put("oracle.net.encryption_types_client", "( DES40 )");
    prop.put("oracle.net.crypto_checksum_client", "REQUESTED");
    prop.put("oracle.net.crypto_checksum_types_client", "( MD5 )");
    OracleDataSource ods = new OracleDataSource();
    ods.setProperties(prop);
    ods.setURL("jdbc:oracle:thin:@localhost:1521:main");
    Connection conn = ods.getConnection();
    Is there a way that I can pass these parameters to the ColdFusion  datasource. Ideally, I would love to do this centrally in such way that a  change to all the cfquery or cfstoredproc is not needed.
    I also know that in application servers such as Oracle AS there is an  option when creating a datasource which says "Add Properties". In there  you can add such properties. So, I was thinking of maybe creating a  JNDI DS in the app. server and then magically connecting to it but this  may have some impacts on the app.
    Besides this I was also thinking of communicating with the CF  datasource through the CF admin API (cfide.adminapi.administrator) and  also the option of extending the Oracle driver so that when CF connects  with it these params are already set.
    I would love to have your professional opinion and suggestions on this.

    I believe the thin driver actually needs the IP address (not the DNS name). Also, is "java" the name of the Oracle instance to which you are trying to connect?
    Try the following:String driver = "jdbc:oracle:thin";
    String dbIP = "W2RZ1NXG01's IP address";
    String dbPort = "1530";
    String dbSid = "java";
    String dbUser = "Admin";
    String dbPswd = "apassword";
    String cnctStr = driver + ":@" + dbIP + ":" + port + ":" + dbSid;
    try
        Class.forName("oracle.jdbc.driver.OracleDriver");
        con = DriverManager.getConnection( cnctStr, dbUser, dbPswd );
        stmt = con.createStatement();
        stmt.executeUpdate(createString);
        stmt.close();
        con.close();
    catch(SQLException ex)
        System.err.println( "The following SQLException occurred: " + ex );
        System.err.println( "Message: " + ex.getMessage() );

  • User sip folder have many .cache files with 4kb and the folder is becoming full and Lync Client stops working

    User sip folder have manu Mailitem&username&.cache files until folder is full and Lync client stops working.

    Hi,
    You can try to change the Lync Profile name. After you do it, Lync will create a new Profile. The Lync Profile path is following:
    %UserProfile%\AppData\Local\Microsoft\Office\15.0\Lync
    If the issue persists, please repair Office 2013 and then test again.
    Best Regards,
    Eason Huang  
    Eason Huang
    TechNet Community Support

  • Oracle.exe has stopped working

    I am trying to run the orion load manually on Win2k8 machine.I have installed Orion 10.2.
    When given the command manually i get the error as:
    Oracle.exe has stopped working.
    Can anybody help me with resolving this?

    You can restart the service. Go to services > OracleServiceXXXX > run
    HTH

  • Setting up oracle thin client for 9i?

    Does anyone have experience stting up data pools using oracle's 9i thin client that ships with BEA WLS 6.1? I am on a Sun Solaris box running Solaris 8 and oracle client 9i. I have followed all of the instrcutions (that I can find anyway) and it does not seem to work. Can someone please tell me exactly what to put in each field on the console for the Data Pool and in the classpath?
    Thanks in advance!!
    Adam

    Hi Adam,
    Configuration of a connection pool for oracle 9 is the same
    as for oracle 8.
    The only thing you should do is downloading a new
    classes12.zip that supports oracle 9, and putting it in to
    weblogic class path.
    You can download classes12.zip from otn.oracle.com.
    To put it to the weblogic classpath you need to modify
    weblogic startup script.
    Regards,
    Slava Imeshev
    "adam landefeld" <[email protected]> wrote in message
    news:[email protected]..
    Does anyone have experience stting up data pools using oracle's 9i thinclient that ships with BEA WLS 6.1? I am on a Sun Solaris box running
    Solaris 8 and oracle client 9i. I have followed all of the instrcutions
    (that I can find anyway) and it does not seem to work. Can someone please
    tell me exactly what to put in each field on the console for the Data Pool
    and in the classpath?
    >
    Thanks in advance!!
    Adam

  • Oracle Thin Client Error when Inserting

    Cold Fusion 8 fully patched on Windows Server 2008 fully
    patched
    Oracle 8.1.7.1 on Linux as DB with Network Option
    (encryption)
    Oracle Client 10.2.0.3 Thin Client (tried with ojdbc14 and
    ojdbc12 classes)
    SELECT, DELETE, UPDATE statements all work just fine.
    When an INSERT statement is sent to the DB it is processed
    (the insert is made and committed!) but we are getting a database
    error message "Typlänge größer als Höchstwert"
    which translates approximately to typ length is larger than the
    limit.
    Several threads show this as a problem when the return from
    the db is too large but this is definately not the case (a simple
    insert of one small row).
    The SQL that is run at the DB includes a suffix of "RETURNING
    ROWID" which is not part of our SQL and is apparently added by CF
    or the thin client. We do not handle the return value (we tried but
    that did not help either).
    Due to the fact that the INSERT is actually made and
    committed, we assume the problem must be at the client end and not
    in the database.
    This is a blocking problem and appears to be confined to CF 8
    with the Thin Client.
    CF 8 with an ODBC connection to the same DB works OK.
    Be very glad for any help as we want to go to production with
    this environment.
    Cheers
    Thomas

    I noticed in LiveDocs for
    cfquery
    for CF 8 that the
    result parameter is a little different than described for
    CF7 in that it mentions the ROWID being returned for Oracle insert
    statements.
    What happens when you try including a result parameter (even
    if you don't end up using the result_name.ROWID variable)?
    result Optional Name for the structure in which cfquery
    returns the result variables. For more information, see Usage.
    The cfquery tag also returns the following result variables
    in a structure. You can access these variables with a prefix of the
    name you specified in the result attribute. For example, if you
    assign the name myResult to the result attribute, you would
    retrieve the name of the SQL statement that was executed by
    accessing #myResult.sql#. The result attribute provides a way for
    functions or CFCs that are called from multiple pages, possibly at
    the same time, to avoid overwriting results of one call with
    another. The result variable of INSERT queries contains a key-value
    pair that is the automatically generated ID of the inserted row;
    this is available only for databases that support this feature. If
    more than one record was inserted, the value can be a list of IDs.
    The key name is database-specific.
    result_name.ROWID Oracle only. The ID of an inserted row.
    This is not the primary key of the row, although you can retrieve
    rows based on this ID.
    I have a hunch that there are differences between Oracle 8i
    and 10g in how the rowid value is being "returned".
    Phil

  • Oracle OCI driver stops working after a while of disuse

    I am using wl server 8.1, oracle oci driver (oracle 9i client), on solaris.
    When i create a connection pool using the oci driver, it connects, and i
    test it, and the tests run fine.
    The Application works for a few days. Then eventually after disuse, say over
    the weekend, I get exceptions in the log (the message is at end of email).
    This is because it gives me a sql exception saying it cannot resolve the
    service name. The database is up and running, confirmed.
    I tried testing the connection pool manually through the console, and it
    failed with the service name exception. But it would connect fine when i
    used sqlplus to connect to the databse, using the same service name.
    Why does this deteriorate over time? Is there a specific test that would
    prevent this from happening?
    Once i restart the weblogic server, the connection pool connects fine. But
    this is not a solution, since I can't be restarting the server all the time.
    Any one got any ideas?
    -Ayan
    ------------WEBLOGIC MANAGED SERVER LOG----------
    ####<Mar 27, 2004 4:20:57 AM EST> <Error> <JDBC><<WLS Kernel>> <>
    <BEA-001112> <Test "SELECT 1 FROM DUAL" set up for pool "CRCPool2" failed
    with exception: "java.sql.SQLException: ORA-03113: end-of-file on
    communication channel
    ".>
    ####<Mar 27, 2004 4:20:57 AM EST> <Info> <JDBC> <<WLS Kernel>> <>
    <BEA-001128> <Connection for pool "CRCPool2" closed.>
    ---------- and then eventually this----------
    ####<Mar 28, 2004 4:33:11 AM EST> <Warning> <JDBC> <<WLS Kernel>> <>
    <BEA-001129> <Received exception while creating connection for pool
    "CRCPool2": ORA-12154: TNS:could not resolve service name
    >

    Ayan wrote:
    I am using wl server 8.1, oracle oci driver (oracle 9i client), on solaris.
    When i create a connection pool using the oci driver, it connects, and i
    test it, and the tests run fine.
    The Application works for a few days. Then eventually after disuse, say over
    the weekend, I get exceptions in the log (the message is at end of email).
    This is because it gives me a sql exception saying it cannot resolve the
    service name. The database is up and running, confirmed.
    I tried testing the connection pool manually through the console, and it
    failed with the service name exception. But it would connect fine when i
    used sqlplus to connect to the databse, using the same service name.
    Why does this deteriorate over time? Is there a specific test that would
    prevent this from happening?
    Once i restart the weblogic server, the connection pool connects fine. But
    this is not a solution, since I can't be restarting the server all the time.
    Any one got any ideas?
    -AyanHi. Is there a firewall between the weblogic server and DBMS? There is
    a problem with OCI losing connectivity to the DBMS. OCI may be keeping
    a socket open as long as the process (weblogic) is running.
    Joe
    ------------WEBLOGIC MANAGED SERVER LOG----------
    ####<Mar 27, 2004 4:20:57 AM EST> <Error> <JDBC><<WLS Kernel>> <>
    <BEA-001112> <Test "SELECT 1 FROM DUAL" set up for pool "CRCPool2" failed
    with exception: "java.sql.SQLException: ORA-03113: end-of-file on
    communication channel
    ".>
    ####<Mar 27, 2004 4:20:57 AM EST> <Info> <JDBC> <<WLS Kernel>> <>
    <BEA-001128> <Connection for pool "CRCPool2" closed.>
    ---------- and then eventually this----------
    ####<Mar 28, 2004 4:33:11 AM EST> <Warning> <JDBC> <<WLS Kernel>> <>
    <BEA-001129> <Received exception while creating connection for pool
    "CRCPool2": ORA-12154: TNS:could not resolve service name

  • Quick Connect VPN client stopped working - now won't uninstall

    I've been using the Cisco QuickVPN client for months, then it stopped working...doesn't get past "Connecting..." (and other clients are still able to connect to our RSV4000 router without issue).  So I finally decided to just install and reinstall the software, except now I can't even do that...it gets hung at "Preparing Installation" in the InstallShield Wizard.  Can you help me get this uninstalled so I can start from scratch please???

    Just to let you know..  I fixed MY problem..  I get my machine to  connect to a different wifi network and run quickvpn to the same rv082  (the other end of tunnel) and guess what it is now working!  Even when I  hook my laptop to my original wireless network, my quickvpn is now  connecting to same endpoint as before.  I powered down my system  numerous time and have no problem.  I don't know whether this lady's  quickvpn problem is same as mine but i would suggest her to bring her  machine (hopefully it is a laptop) to a different router and see if her  quickvpn is now connecting!

  • OpenVPN client stops working after a few minutes

    I'm using OpenVPN client, and it works fine but after a few minutes the VPN stops working.
    I'm getting these errors in the logs:
    Sun May 10 20:55:28 2015 [nrt-c01.ipvanish.com] Inactivity timeout (--ping-restart), restarting
    Sun May 10 20:55:28 2015 SIGUSR1[soft,ping-restart] received, process restarting
    Sun May 10 20:55:28 2015 Restart pause, 2 second(s)
    Sun May 10 20:55:30 2015 Socket Buffers: R=[163840->327680] S=[163840->131072]
    Sun May 10 20:55:30 2015 TCP/UDP: Preserving recently used remote address: [AF_INET]110.50.241.72:443
    Sun May 10 20:55:30 2015 UDPv4 link local: [undef]
    Sun May 10 20:55:30 2015 UDPv4 link remote: [AF_INET]110.50.241.72:443
    Sun May 10 20:56:10 2015 [UNDEF] Inactivity timeout (--ping-restart), restarting
    Sun May 10 20:56:10 2015 SIGUSR1[soft,ping-restart] received, process restarting
    Sun May 10 20:56:10 2015 Restart pause, 2 second(s)
    Sun May 10 20:56:12 2015 Socket Buffers: R=[163840->327680] S=[163840->131072]
    Sun May 10 20:56:12 2015 TCP/UDP: Preserving recently used remote address: [AF_INET]110.50.241.72:443
    Sun May 10 20:56:12 2015 UDPv4 link local: [undef]
    Sun May 10 20:56:12 2015 UDPv4 link remote: [AF_INET]110.50.241.72:443
    Sun May 10 20:56:52 2015 [UNDEF] Inactivity timeout (--ping-restart), restarting
    Sun May 10 20:56:52 2015 SIGUSR1[soft,ping-restart] received, process restarting
    Sun May 10 20:56:52 2015 Restart pause, 2 second(s)
    Sun May 10 20:56:54 2015 Socket Buffers: R=[163840->327680] S=[163840->131072]
    Sun May 10 20:56:54 2015 TCP/UDP: Preserving recently used remote address: [AF_INET]110.50.241.72:443
    Sun May 10 20:56:54 2015 UDPv4 link local: [undef]
    Sun May 10 20:56:54 2015 UDPv4 link remote: [AF_INET]110.50.241.72:443
    My configuration is the following, directly from the VPN provider:
    client
    dev tun
    proto udp
    remote nrt-c01.ipvanish.com 443
    resolv-retry infinite
    nobind
    persist-key
    persist-tun
    persist-remote-ip
    ca ca.ipvanish.com.crt
    tls-remote nrt-c01.ipvanish.com
    auth-user-pass /etc/openvpn/ipvanish.user
    comp-lzo
    verb 3
    auth SHA256
    cipher AES-256-CBC
    keysize 256
    tls-cipher DHE-RSA-AES256-SHA:DHE-DSS-AES256-SHA:AES256-SHA
    What could cause that?

    I'm using OpenVPN client, and it works fine but after a few minutes the VPN stops working.
    I'm getting these errors in the logs:
    Sun May 10 20:55:28 2015 [nrt-c01.ipvanish.com] Inactivity timeout (--ping-restart), restarting
    Sun May 10 20:55:28 2015 SIGUSR1[soft,ping-restart] received, process restarting
    Sun May 10 20:55:28 2015 Restart pause, 2 second(s)
    Sun May 10 20:55:30 2015 Socket Buffers: R=[163840->327680] S=[163840->131072]
    Sun May 10 20:55:30 2015 TCP/UDP: Preserving recently used remote address: [AF_INET]110.50.241.72:443
    Sun May 10 20:55:30 2015 UDPv4 link local: [undef]
    Sun May 10 20:55:30 2015 UDPv4 link remote: [AF_INET]110.50.241.72:443
    Sun May 10 20:56:10 2015 [UNDEF] Inactivity timeout (--ping-restart), restarting
    Sun May 10 20:56:10 2015 SIGUSR1[soft,ping-restart] received, process restarting
    Sun May 10 20:56:10 2015 Restart pause, 2 second(s)
    Sun May 10 20:56:12 2015 Socket Buffers: R=[163840->327680] S=[163840->131072]
    Sun May 10 20:56:12 2015 TCP/UDP: Preserving recently used remote address: [AF_INET]110.50.241.72:443
    Sun May 10 20:56:12 2015 UDPv4 link local: [undef]
    Sun May 10 20:56:12 2015 UDPv4 link remote: [AF_INET]110.50.241.72:443
    Sun May 10 20:56:52 2015 [UNDEF] Inactivity timeout (--ping-restart), restarting
    Sun May 10 20:56:52 2015 SIGUSR1[soft,ping-restart] received, process restarting
    Sun May 10 20:56:52 2015 Restart pause, 2 second(s)
    Sun May 10 20:56:54 2015 Socket Buffers: R=[163840->327680] S=[163840->131072]
    Sun May 10 20:56:54 2015 TCP/UDP: Preserving recently used remote address: [AF_INET]110.50.241.72:443
    Sun May 10 20:56:54 2015 UDPv4 link local: [undef]
    Sun May 10 20:56:54 2015 UDPv4 link remote: [AF_INET]110.50.241.72:443
    My configuration is the following, directly from the VPN provider:
    client
    dev tun
    proto udp
    remote nrt-c01.ipvanish.com 443
    resolv-retry infinite
    nobind
    persist-key
    persist-tun
    persist-remote-ip
    ca ca.ipvanish.com.crt
    tls-remote nrt-c01.ipvanish.com
    auth-user-pass /etc/openvpn/ipvanish.user
    comp-lzo
    verb 3
    auth SHA256
    cipher AES-256-CBC
    keysize 256
    tls-cipher DHE-RSA-AES256-SHA:DHE-DSS-AES256-SHA:AES256-SHA
    What could cause that?

  • Hi,my MacBook Pro just wark 1 munit thin it stop work ? Pleas help me.

    Hi, I have problem in my MacBook , yesterday it was work very good, but I dont no why it wark 1 minute thin stop work ?!

    Hi Hanan,
    What happens if you plug in the power adapter, hold the power button down for 5-10 seconds, wait a bit, then try to start up normally? Any sounds or lights?

  • Connection from jdeveloper to Oracle cloud service stopped working

    My connection to the Oracle cloud using a jdeveloper application server connection stopped working. The connection worked fine for a couple of days and I was able to deploy apps using it.
    I get the following error :
    Testing Cloud-Admin                    ... failed.
    listApplications failed.
    Check username, password, domain, instance.
    Check cloud sdk location & version: Tools->Preferences->Oracle Cloud
    0 of 1 tests successful.
    I double checked the AUTH details and also made sure the sdk location was correct and the same one that worked correctly earlier.
    Thanks.

    So this works intermittently without any changes ? Sounds peculiar, I haven't had such issues though there have been few occasions where the connection did not work, but those have always been very brief and rare. The only thing I can think of is some sort proxy issue. You probably need to contact the JCS support to get the issue investigated ..
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Oracle 10g Client not working in Windows 7 64 bit

    Dear All,
    Not ablle to install Oracle 10g Client (Rel 2) in Windows 7 64 bit , getting an abnormal error and stoping ..
    Please suggest me how to proceed futher

    823755 wrote:
    Dear All,
    Not ablle to install Oracle 10g Client (Rel 2) in Windows 7 64 bit , getting an abnormal error and stoping ..
    Please suggest me how to proceed futherWhich Edition of Windows 7?
    Where version of Oracle to four decimal places; i.e. V10.2.0.1

  • Method getCustomDatum() and Oracle thin client

    Hello All,
    I am using WL6.1 and an Oracle thin driver. I am using the Oracle Intermedia classes
    for Java in order to retrieve images for jsps and servlets.
    Trying to use the Oracle classes caused class cast exceptions. When using the
    weblogic.jdbc.vendor.oracle.OracleResultSet, I got the error
    "java.sql.SQLException: getCustomDatum is not supported by the Weblogic JDBC Driver".
    I was wondering if anyone else has run into this problem? Any help would be greatly
    appreciated.
    Thanks,
    Rich

    Slava,
    Thank you for your help.
    - Richard
    "Slava Imeshev" <[email protected]> wrote:
    Hi Richard,
    "Richard Dedeyan" <[email protected]> wrote in message
    news:3d2638f5
    Do you mean that I need to get to get a connection directly to thedatabase using
    the Thin driver instead of getting the connection via the pool?Yes, this is the first option. Note that with using thin driver directly
    you loose all advantages of using weblogic JDBC subsystem like
    transactions, connection pooling and caching of prepeared statements.
    I'd go with a stored procedure.
    Regards,
    Slava Imeshev
    Thanks for your help.
    - Richard
    "Slava Imeshev" <[email protected]> wrote:
    Hi Richard,
    This feature is not supported by weblogic because
    oracle Datum is not serializable. In case you have a
    strict requirement, you will need to switch to using
    oracle thin driver directly. You could also consider
    moving processing to stored procedure.
    Regards,
    Slava Imeshev
    "Richard Dedeyan" <[email protected]> wrote in message
    news:3d260294$[email protected]..
    Hello All,
    I am using WL6.1 and an Oracle thin driver. I am using the OracleIntermedia classes
    for Java in order to retrieve images for jsps and servlets.
    Trying to use the Oracle classes caused class cast exceptions. Whenusing the
    weblogic.jdbc.vendor.oracle.OracleResultSet, I got the error
    "java.sql.SQLException: getCustomDatum is not supported by the
    Weblogic
    JDBC Driver".
    I was wondering if anyone else has run into this problem? Any helpwould be greatly
    appreciated.
    Thanks,
    Rich

  • Client stops working and getting DCOM error in event viewer

    Hi
    I am getting these errors after upgrading the client from 2007 to 2012.. the client works for a certain amount of time then stops functioning as expected. Logs not moving and get error when manually cycling policy etc from client.
    The application-specific permission settings do not grant Local Launch permission for the COM Server application with CLSID
    {F80A8D57-D338-43FF-A5E6-5D093EA80775}
     to the user NT AUTHORITY\SYSTEM SID (S-1-5-18).  This security permission can be modified using the Component Services
    administrative tool.
    I have checked the DCOM permissions for launch and activate for system account and they are set to allow...
    its not happening on all clients which is strange

    Hi Jason,
    The service is running and the ccmexec.log does not stop but its rolled over since the issue occurred. About 30% of the logs continue logging and the rest stop with no action.I done a WMIDiag and I could see issues with missing namespaces and DCOM errors.
    I am unistalling the client and reinstalling which fixes the issue for a short period of time, then I will do a WMIDiag once its working then monitor. Once it breaks I will do another WMIDiag and fetch the logs in to see if there are any indicators to why
    this is happening.
    Is there anything else you would do at this point?
    From one client.. WMIDIAG
    An example of missing instance and all were missing in this class!
    root/ccm/Policy/machine, 'Select * From CCM_Service_HostedClass WHERE Description = "CPApplet Client Action" AND CLSID = "{F80A8D57-D338-43FF-A5E6-5D093EA80775}"' did not return any instance while AT LEAST 1 instance is expected.
    From another client and on both
    76815 12:03:57 (0) ** => This is an issue because there are still some WMI classes referencing this list of providers
    76816 12:03:57 (0) **    while the DCOM registration is wrong or missing. This can be due to:
    76817 12:03:57 (0) **    - a de-installation of the software.
    76818 12:03:57 (0) **    - a deletion of some registry key data.
    76819 12:03:57 (0) **    - a registry corruption.
    76820 12:03:57 (0) ** => You can correct the DCOM configuration by:
    76821 12:03:57 (0) **    - Executing the 'REGSVR32.EXE <Provider.DLL>' command.

  • Oracle 10g Client not working from Vista Business

    Hi,
    I have installed Oracle 10g Rel2 DB on my desktop (OS Vista Ultimate X64 bit) and try to connect from my new laptop (OS Vista business) after installing the client software which does not work, whereas I am able to connect to same database from my other laptop using Windows XP. The tnsnames.ora files on both laptops have the same contents. Moreover, the SQL Plus is also not working on the vista laptop, I mean when I try to login the window closes down itself it doesn't stay open even to give any error message. . . Any ideas would be a great help . . .thx

    Did you install the Vista specific Oracle client?
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10204_winx64_vista_win2k8.html

Maybe you are looking for

  • Read an XML Reponse.

    Hi all, i am a newbie to xml. I am making an API call to create a user like this method.setQueryString(params); client.executeMethod(method); To check the response what the api call has returned I do this byte[] responseBody = method.getResponseBody(

  • ALV TREE FOR 3 internal table

    Hi , I want to display report output in the form of ALV tree. Since I have data in 3 internal table for each hierarchial level, I can't use ALV hierarchial sequential list . Please guide me how to implement the same. Please share sample code other th

  • Logic Pro 9.1.3 - Doesn't initialize plug-in

    I installed the Kore 2 player from Native Instruments. It runs fine as a standalone app, but Logic will not see the app to load it as an AU plug-in. I have several other Native Instrument products (Battery3, Kontakt 4 and others) and Logic saw them i

  • Storage Unit Inconsistency!!

    Dear Experts, One background job in SAP which runs every 10mins got canceled because the storage unit was inconsistent with the transfer order data. I am not able to find the cause of this inconsistency of storage unit!! Any ideas?? Regards

  • Flex not making server calls

    I imported some web services that are SOAP calls.  When I run the application in debug mode they make the calls just fine.  When I upload it to the server and click the button it doesn't make the call.  I tried using Firefox/Firebug and IE/Fiddler.