Read sharing violation after System.exit in oracle lite DLL

I am using JRE 1.3 and successfully managed running some sql statements over jdbc.
When the java class is finished (implicit exit) then no error appears.
When I exit the code using System.exit(0) there is a windows dialog
showing a read access error AFTER the java class finished.
probably there is some cleanup the oracle DLL wants to do after the JVM exited?
Please help mailto:[email protected]
The sample code below can be used.
* Title:
* Description:
* Copyright: Copyright (c) 2001
* Company:
* @author Ivan Motsch
* @version 1.0
import java.util.*;
import java.io.*;
import java.sql.*;
public class TestOracleLite{
public TestOracleLite(){
     public void start(){
          Statement stm=null;
          Connection conn=null;
          try{
               Properties p=new Properties();
               p.setProperty("user","system");
               p.setProperty("password","manager");
               p.setProperty("DataDirectory","..\\..\\..\\TEMP\\ora4\\db");
               p.setProperty("Database","ORS");
               p.setProperty("IsolationLevel","Read Committed");
               p.setProperty("Autocommit","Off");
               p.setProperty("CursorType","Forward Only");
               String ps=getPropertiesAsString(p);
          Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
               conn=DriverManager.getConnection("jdbc:polite:whatever"+ps);
               execSql(conn,
                    "drop table test1 cascade"
               execSql(conn,
                    "create table test1(pk number(32),ncol number(32),scol varchar2(2000),dcol date,rcol long raw)"
               conn.commit();
               execSql(conn,
                    "insert into test1(pk,ncol,scol,dcol,rcol) values(?,?,?,?,?)",
                    new Object[]{new Integer(1),new Integer(1111),"Test Text",new java.sql.Date(System.currentTimeMillis()),new byte[]{0,1,2,3,4,5,6,7,8,9,10}}
               conn.commit();
               readSql(conn,"select * from test1");
          catch(Exception e){
          e.printStackTrace();
          finally{
               if(conn!=null){
                    try{
                    conn.close();
                         conn=null;
                    catch(Exception e){e.printStackTrace();}
     private static String getPropertiesAsString(Properties p){
          StringBuffer buf=new StringBuffer();
     for(Iterator it=p.keySet().iterator();it.hasNext();){
          String key=(String)it.next();
               String val=p.getProperty(key);
               buf.append(";"+key+"="+val);
          return buf.toString();
     public boolean execSql(Connection conn,String s){
          return execSql(conn,s,(Collection)null);
     public boolean execSql(Connection conn,String s,Object[] binds){
          ArrayList list=new ArrayList();
          if(binds!=null) list.addAll(Arrays.asList(binds));
     return execSql(conn,s,list);
     public boolean execSql(Connection conn,String text,Collection binds){
          PreparedStatement stm=null;
          try{
               stm=conn.prepareStatement(text);
               if(binds!=null){
                    int i=1;
                    for(Iterator it=binds.iterator();it.hasNext();){
                         Object o=it.next();
                         if(o==null){
                              stm.setNull(i,Types.VARCHAR);
                         else if(o instanceof byte[]){
                              stm.setBytes(i,(byte[])o);
                         else{
                              stm.setObject(i,o);
                         i++;
               boolean b=stm.execute();
               System.out.println("status: "+(b?"ok":"failed"));
               return b;
          catch(SQLException e){
               System.out.println("status: "+"error"+" "+e);
               return false;
          finally{
               if(stm!=null) try{stm.close();}catch(Exception e){}
     public boolean readSql(Connection conn,String text){
          PreparedStatement stm=null;
          try{
               stm=conn.prepareStatement(text);
               ResultSet rs=stm.executeQuery();
               ResultSetMetaData meta=rs.getMetaData();
               System.out.print("col: ");
               for(int i=1,n=meta.getColumnCount();i<=n;i++){
                    System.out.print(""+meta.getColumnName(i)+", ");
               System.out.println();
               while(rs.next()){
                    System.out.print("row: ");
               for(int i=1,n=meta.getColumnCount();i<=n;i++){
                         System.out.print(""+rs.getObject(i)+", ");
                    System.out.println();
               return true;
          catch(SQLException e){
               System.out.println("status: "+"error"+" "+e);
               return false;
          finally{
               if(stm!=null) try{stm.close();}catch(Exception e){}
     static public void main(String[] args) {
          TestOracleLite t=new TestOracleLite();
          t.start();
          t=null;
          System.exit(0);

Hi
After system copy you need to do post system copy activities...
Please follow according to the installation Guide..
for example: your sld connection of your new system will be pointing to your source system. So you need to go to VA where in you can find SLD Data Supplier and change the host name, port no relavent to this  i.e. your destination system...i.e.
new system.. In the same way you can follow doing the post installation activites will solve your issue.
Regards
Hari

Similar Messages

  • Why in COM, set smth true, stays true even after System.exit?

    I am using "Jacob" to do COM calls. When I alter the "ShowAll" property of Word.Application and I set it to true, it will then forever be true even if I exit the application AND quit the word application. If I set it to false, the same thing happens, it will always be so. The code to call/set this is:
    (NOTE: This uses classes I made to wrap the Dispatch calls)
    Word wordApp = new Word();
    Documents docs = wordApp.getDocuments();
    Document doc = docs.open("D:\\JavaProjects\\Test.doc");
    //GET VIEW
    View wordView = wordApp.getActiveWindow().getView();
    //PRINT THE VIEW PROPERTIES
    System.out.println("Show All: " + wordApp.getActiveWindow().getView().isShowAll());
    System.out.println("Show Paragraphs: " + wordApp.getActiveWindow().getView().isShowParagraphs());
    //SET THE VIEW PROPERTIES
    wordView.setShowAll(false);
    wordView.setShowParagraphs(true);
    //PRINT THEM AGAIN
    System.out.println("Show All: " + wordApp.getActiveWindow().getView().isShowAll());
    System.out.println("Show Paragraphs: " + wordApp.getActiveWindow().getView().isShowParagraphs());
    doc.close(Document.DO_NOT_SAVE);
    wordApp.quit(new Variant[] {});
    System.exit(0);The actual Dispatch calls are:
    //NO IDEA WHY THIS IS, BUT SHOWALL = TRUE IS -1, AND FALSE IS 0
    private final static int SHOW_ALL_TRUE = -1;
    private final static int SHOW_ALL_FALSE = 0;
    /** SETSHOWPARAGRAPHS **
    * Sets the property (boolean) ShowParagraphs.
    public void setShowParagraphs(boolean showParagraphs)
         Dispatch.put(this, "ShowParagraphs", new Boolean(showParagraphs));
    /** ISSHOWPARAGRAPHS **
    * Returns Boolean of whether or not this is set to show paragraphs.
    public boolean isShowParagraphs()
         return getBooleanValue(Dispatch.get(this, "ShowParagraphs"));
    private boolean getBooleanValue(Variant variantBoolean)
         //MAKE IT AN INTEGER AND GET ITS int VALUE
         int intVariant = new Integer(variantBoolean.toString()).intValue();
         //RETURN IF IS SHOW ALL
         return (intVariant == View.SHOW_ALL_TRUE);
    }I'm wondering if the problem is that I get back either -1 or 0 and if maybe that means something else?

    1: Properties persistence is not a DEFECT but a FEATURE . It was implemented in MS Word so users could change MS word WITHOUT HAVING TO DO IT EACH TIME THEY START IT UP.
    2: Don't you intialise all your variables in your code after you instanciated them ? I am sure you do so and therefore the persitence feature you described should not be annoying you at all. It is not necessary to intialise variables in the BASIC langage but that does not mean you should not do it.
    3: (-1) was chosen arbitrary by Microsoft as the TRUE value for Boolean datatype and 0 the value for FALSE when they designed Visual Basic. This is not a problem if you write code properly
    I recommend you test bool variable in any langages using the following test:
    (myBool <> 0)
    HAVE A THINK ABOUT IT
    Finally,
    you need to understand what you are working with before you complain about it.
    Argument for Argument sake is not good and if you think MS word is a bad program just don't use it. go and write your own word processor in JAVA.
    GOOD LUCK
    I WISH TO APOLOGISE FOR ANY POSSIBLE SPELLING OR GRAMMATICAL MISTAKES I COULD HAVE MADE IN THIS REPLY. ENGLISH NOT BEING MY FIRST LANGUAGE.

  • Spawning another java process after System.exit(0);

    Hi everyone
    I have an application that Im trying to test. Unfortunately one of these tests requires me to spawn another java process after a System.exit(0); has executed. Since this exits the VM its proving very difficult. Does anyone know of a way to restart the VM after the System.exit has run?
    Thanks

    Hi everyone
    I have an application that Im trying to test.
    Unfortunately one of these tests requires me to spawn
    another java process after a System.exit(0); has
    executed. Since this exits the VM its proving very
    difficult. Does anyone know of a way to restart the VM
    after the System.exit has run?Exactly what do you want to do?
    If the application is supposed to only have one exit point then add a security manager and disallow all the other exit points. Then you can use Runtime.exec() to start the second application just before the real exit point.
    However note that if there are other calls to System.exit in the application then it is very likely that this will cause some unexpected failures in terms of security exceptions.
    You could also use Runtime.addShutdownHook() which would run your second app. The hook would be called as the application exits.
    You might want to consider what happens if someone just kills the application (say with 'kill -9' or the windows task manager.) In either of those cases there is nothing that you can do in java to make that second application run.
    You might also want to consider why you are doing this in the first place. As suggested a script solution is probably a better solution.

  • NoClassDefFoundError after System.exit() is called.

    I have found a strange condition with JDK 1.4.2_05 and could not find a bug which relates to it.
    I have multiple threads running, when I shutdown, I call all the threads to shutdown and finally in main I call System.exit(0).
    The strange thing is that one shutdown I get a NoClassDefFoundError for a class which will load fine if loaded before shutting down.
    This occurs as the class in question is only needed to perform a shutdown, and in fact the attempt to load it comes after the main thread has finished.
    The workaround has been to create an instance of the class when the application is started rather than during shutdown.
    Does anyone seen this behaviour?

    java.lang.NoClassDefFoundError: com/cantor/framework/run/impl/ShutdownRMB
         at com.can.framework.run.RunnerManagerBean.shutdown(RunnerManagerBean.java:147)
         at com.can.framework.layer.VanillaBean.shutdown(VanillaBean.java:278)
         at com.can.main.Main.main(Main.java:135)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:78)

  • Keep external process alive after System.exit(0)

    I wish to start Outlook from my Java program and have my own program exit normally but keep alive the Outlook process. Besides, I am not interested in input/output/error streams.
    public class OutlookStarter {
         public static void main(String[] args) throws Exception {
              new ProcessBuilder("cmd", "/c",
                        "\"C:\\Program Files\\Microsoft Office\\Office14\\outlook.exe\"")
                        .start();
    }When I run this when Outlook is not started, my program will not exit until I close Outlook.
    I really do not want to close Outlook just to exit my program (my real program has a Swing GUI and users must be able to close it).
    Also when I run this when Outlook is already started, somehow my program DOES exit without closing the new Outlook window.
    EDIT: I can add System.exit(0) and behavior is the same. I can use Runtime.getRuntime().exec and behavior is the same.
    Edited by: Strider80 on Jan 12, 2011 7:27 AM

    Strider80 wrote:
    I wish to start Outlook from my Java program and have my own program exit normally but keep alive the Outlook process. Besides, I am not interested in input/output/error streams.
    public class OutlookStarter {
         public static void main(String[] args) throws Exception {
              new ProcessBuilder("cmd", "/c",
                        "\"C:\\Program Files\\Microsoft Office\\Office14\\outlook.exe\"")
                        .start();
    Did you try using [url http://www.computerhope.com/starthlp.htm]start ^[url http://www.computerhope.com/starthlp.htm]Microsoft DOS and command prompt^ ?
              new ProcessBuilder("cmd", "/c",
                        "start \"C:\\Program Files\\Microsoft Office\\Office14\\outlook.exe\"")
                        .start();

  • Process in memory after System.exit(0)

    I still see the process in memory after I exit the app. Do you think it is a JWS side effect?
    Platform: W2K
    Cheers,
    Ivan

    Ivan,
    when you enable the 'java console' in Java Web Start->Preferences->Advanced->Show Java Console, you'll notice that you run into a java.security.accessControlException.
    To avoid that, sign your jar file(s) and add the following to your jnlp file :
    <security>
    <all-permissions>
    </security>
    and it will work as expected!
    Regards,
    Patrick

  • Db13 after system copy and oracle upgrade.

    Dear support,
    I have 40B system with Oracle 8.1.7.4 with SID as PRD. Now i have copied the same to TST system and i forgot to perform ops$ mechanism setup in TST system as part of post database refresh.
    Now i have upgraded database to oracle 9.2.0.5 and since DB13 jobs are not getting executed i have done following settings,
    New SID is TST.....
    create user "OPS$TSTADM" identified by TST;
    grant connect, resource, dba to "OPS$TSTADM";
    CONNECT "OPS$TSTADM"
    select * from dba_users where username like 'OPS%' ;
    alter user "OPS$TSTADM" temporary tablespace PSAPTEMP ;
    create table sapuser as select * from "OPS$prdADM".sapuser ;
    select * from dba_tab_privs where table_name = 'SAPUSER' ;
    create user "OPS$SAPSERVICETST" identified externally ;
    grant select, insert, update on sapuser to "OPS$SAPSERVICETST" ;
    create synonym "OPS$SAPSERVICETST".sapuser for "OPS$TSTADM".sapuser ;
    grant sapdba to "OPS$TSTADM" ;
    grant connect, resource, sapdba to  "OPS$SAPSERVICETST";
    alter user "OPS$TSTADM" identified externally ;
    revoke dba from "OPS$TSTADM" ;
    select * from "OPS$TSTADM".sapuser ;
    still i am getting below error in DB13 , should i use BRtools instead of SAPDBA
    please let me know
    error in db13 logs are as below
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000033, user name CYBERTEC
    Execute log. command SAPDBA on host saptest
    __Parameters: -u / -checkopt PSAP%  -method E
    SAPDBA: Wrong option.
    Usage:
    sapdba [  -u        <userid>[/<password>]
              -P        <userid>/<coded_password>    /* (only for batch start) */
           [  -p        <profile> ]
           [  -h[elp] ]
           [  -r        <dir>                        /* restart in batch       */
              -export   <tsp_list>     <table>
                        [-dest      <path>
                                    <tape_device> [-tape_size <size_in_M>] ]
              -alter_user <uid>/<pwd>
              -init_sap_connect
              -sapsid <SID1>[,<SID2>,...]
              -version
              -verbose
              -V -VERSION [all]
    sapdba without -u option would connect by
           (1) <name>/<password> in <orapwd_file>, if spec. in init<SID>.dba or
           (2) system/manager, if default password is set or
           (3) prompting for name and password.
    External program terminated with exit code 2
    SAPDBA returned error status E
    Job finished
    Best regards,
    AjitR

    Peter,
    I have executed script with user sapsr3 user as below are tasks performed , please let me know whether i can go ahead and execute sapdba_role.sql and sapconn.sql
    SQL> select username , account_status from dba_users;
    USERNAME                       ACCOUNT_STATUS
    OPS$CYSOFT52\EC6ADM            OPEN
    OPS$CYSOFT52\SAPSERVICEEC6     OPEN
    OPS$CYSOFT52\SAPSERVICESR3     OPEN
    SYS                            OPEN
    SYSTEM                         OPEN
    SAPSR3                         OPEN
    SAPSR3DB                       OPEN
    OUTLN                          LOCKED
    TSMSYS                         EXPIRED & LOCKED
    DIP                            EXPIRED & LOCKED
    DBSNMP                         EXPIRED & LOCKED
    11 rows selected.
    E:\oradbuser>sqlplus /nolog @oradbuser.sql SAPSR3
    SQL*Plus: Release 10.2.0.2.0 - Production on Wed Aug 1 05:53:30 2007
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected.
    old   6:   if length('&&1') = 5 then
    new   6:   if length('SAPSR3') = 5 then
    old   7:     if substr(upper('&&1'),1,5) = 'SAPR3' then
    new   7:     if substr(upper('SAPSR3'),1,5) = 'SAPR3' then
    Enter value for 2: SAPSR3
    old  11:       if upper('&&2') = 'NT' then
    new  11:       if upper('SAPSR3') = 'NT' then
    Enter value for 3: NT
    old  18:        :sDomain := upper('&&3');
    new  18:        :sDomain := upper('NT');
    Enter value for 4: CYSOFT2
    old  19:         :sSapSid := upper('&&4');
    new  19:         :sSapSid := upper('CYSOFT2');
    old  21:         :sSapSid := upper('&&3');
    new  21:         :sSapSid := upper('NT');
    old  37:     :sSchema := upper('&&1');
    new  37:     :sSchema := upper('SAPSR3');
    old  39:     if upper('&&2') = 'NT' then
    new  39:     if upper('SAPSR3') = 'NT' then
    old  46:       :sDomain := upper('&&3');
    new  46:       :sDomain := upper('NT');
    old  47:       :sSapSid := upper('&&4');
    new  47:       :sSapSid := upper('CYSOFT2');
    old  49:       :sSapSid := upper('&&3');
    new  49:       :sSapSid := upper('NT');
    using following Parameters:
    .  Oracle Version:                     10.2.0.2.0
    .  Parametervalue os_authent_prefix:   OPS$
    .  Schema Id:                          SR3
    .  Database User (Schema):             SAPSR3
    .  SAP R/3 Administrator:              OPS$NTADM
    .  SAP R/3 Serviceuser:                OPS$SAPSERVICENT
    Connected.
    Connected.
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Pr
    oduction
    With the Partitioning, OLAP and Data Mining options
    Now after running scripts below are 3 users created.
    SQL> select username from dba_users;
    USERNAME
    OPS$CYSOFT52\EC6ADM
    <b>OPS$SAPSERVICENT</b>
    OPS$CYSOFT52\SAPSERVICEEC6
    <b>OPS$ORAEC6
    OPS$NTADM</b>OPS$CYSOFT52\SAPSERVICESR3
    SYS
    SYSTEM
    SAPSR3
    SAPSR3DB
    OUTLN
    USERNAME
    DIP
    TSMSYS
    DBSNMP
    14 rows selected.

  • A problem regarding set up of Oracle Lite 3.6.0.2.0 on Win 95, with JDK 1.1.8 &java 2

    A problem regarding set up of Oracle Lite 3.6.0.2.0 on Win 95, with JDK 1.1.8 and Java 2 SDK ( Ver 1.3 Beta)
    After the installation of Oracle Lite 3.6.0.2.0 on a laptop (with WIN 95 OS), When I run Oracle Lite Designer from start menu, I receive following error message :
    ====================================
    Invalid class name 'FILES\ORA95_2\LITE\DESIGNER\oldes.jar;C:\PROGRAM'
    usage: java [-options] class
    where options include:
    -help print out this message
    -version print out the build version
    -v -verbose turn on verbose mode
    -debug enable remote JAVA debugging
    -noasyncgc don't allow asynchronous garbage collection
    -verbosegc print a message when garbage collection occurs
    -noclassgc disable class garbage collection
    -ss<number> set the maximum native stack size for any thread
    -oss<number> set the maximum Java stack size for any thread
    -ms<number> set the initial Java heap size
    -mx<number> set the maximum Java heap size
    -classpath <directories separated by semicolons>
    list directories in which to look for classes
    -prof[:<file>] output profiling data to .\java.prof or .\<file>
    -verify verify all classes when read in
    -verifyremote verify classes read in over the network [default]
    -noverify do not verify any class
    -nojit disable JIT compiler
    Please make sure that JDK 1.1.4 (or greater) is installed in your machine and CLASSPATH is set properly. JAVA.EXE must be in the PATH.
    ====================================
    My ORACLE_HOME is c:\program files\ora95_2 and Oracle Lite is installed under the ORACLE_HOME in LITE\DESIGNER directory.
    JDK version is 1.1.8 which is greater than 1.1.4 installed in c:\program files\jdk1.1.8, My PATH, and CLASSPATH are set in AUTOEXEC.BAT as follows:
    set CLASSPATH=c:\Progra~1\jdk1.1.8\lib\classes.zip;c:\progra~1\ora95_2\lite\classes\olite36.jar;c:\progra~1\ora95_2\lite\designer\oldes.jar;c:\progra~1\ora95_2\lite\designer\swingall.j ar
    PATH=C:\Progra~1\Ora95_2\bin;.;c:\Progra~1\jdk1.1.8\lib;c:\Progra~1\jdk1.1.8\bin;C:\Progra~1\Ora95_2\lite\Designer;C:\WIN95;C:\WIN95\COMMAND;C:\UTIL
    And, I can run JAVA.EXE from any directory on command prompt.
    With JAVA 2 SDK (ver 1.3 Beta) instead of JDK 1.1.8 I'm getting a different Error message as follows:
    =============================
    java.lang.NoClassFoundError: 'FILES\ORA95_2\LITE\DESIGNER\oldes.jar;C:\PROGRAM'
    Please make sure that JDK 1.1.4 (or greater) is installed in your machine and CLASSPATH is set properly. JAVA.EXE must be in the PATH.
    ==============================
    the PATH and CLASSPATH were set accordingly, as with JDK1.1.8, and there was no classes.zip in classpath
    also the class file or the jar file looks weird or wrapped in the error message : 'FILES\ORA95_2\LITE\DESIGNER\oldes.jar;C:\PROGRAM'
    Another interesting thing I noticed is if I run oldes.exe from Installation CD, the Oracle Lite Designer runs fine, and without error, I'm able to modify tables in the database of my laptop also.
    Could someone shade some light on what am I doing wrong here ?
    Thanks for help in advance .
    Regards
    Viral
    null

    On 07/20/2015 06:35 AM, Itzhak Hovav wrote:
    > hi
    > [snip]
    > [root@p22 eclipse]# cat eclipse.ini -startup
    > plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
    > --launcher.library
    > plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807
    >
    > -showsplash
    > org.eclipse.platform
    > --launcher.XXMaxPermSize
    > 256m
    > --launcher.defaultAction
    > openFile
    > -vmargs
    > -Xms40m
    > -Xmx512m
    > [snip]
    Try this: http://wiki.eclipse.org/Eclipse.ini. You should have read the
    sticky posts at forum's top for getting started help.

  • JDeveloper 10G (BPEL Designer): how to create db connection to Oracle Lite

    I want to create a JDeveloper database connection to the Oracle Lite database installed with JDeveloper 10G BPEL Designer, but haven't been able to find any info on the subject.
    Can anyone point me to some info or walk me through it?
    Regards

    To connect JDeveloper 10g to an Oracle Lite database, you will need to follow this setup.
    1. Create an ODBC entry for the Oracle Lite database. If you have installed Oracle Lite 10g Mobile Development Kit, you should have a copy of POLITE.ODB pre-installed. Check your ODBC.ini, or run Administrative Tools > Data Sources (ODBC), and follow the polite entry pattern. If you create a new Oracle Lite database, you must create a matching enrty in the ODBC configuration file.
    2. In JDeveloper, create a new connection for your Oracle Lite database.
    The Connection Name should match your entry in ODBC for ease of reading.
    The Connection Type should be Oracle Lite.
    The Username is system.
    The Password is xxx.
    The Deploy Password box is checked.
    The Datasource Name must match the ODBC entry exactly.
    Leave the rest of the fields as is.
    Test your new connection.
    Enjoy.

  • Missing "sharing" option in system preferences after installing apple remote desktop client version 2.10

    Hi All,
    I installed a wrong version of Apple remote desktop client , 2.10 and the sharing menu under system preferences vanished. I tried to uninstall the Apple remote desktop with,
    http://support.apple.com/kb/HT2577
    but no luck, but after restarting the macbook pro with lion 10.7.2, i see my sharing option enabled but when clicked, it says the system preference has to restart and confirming that it restarts in 32 bit mode and even after clciking the sharing option it says, "you can't open sharing preferences because it doesn't work on an intel-based mac"
    . So i strongly believe the apple remote desktop is creating the issue.
    Can someone help how to fix this please?
    Thanks

    Same problem here. I manage several remote Macs, but I have one MacBook which I can get no ARD access to (black icon). I can ping the IP, I can SSH into the MacBook, the ARD and Remote Login services are checked ON, the firewall is OFF. The ARD service is configured to allow my admin user full access - however, I get nothing. I have no trouble getting into the other Macs.
    Any ideas?

  • Sharing violation error after closing file

    I am creating a text file using the "Write to Spreadsheet File"
    vi.  After creating the file, I cannot change the name, or open
    the file in XL because I get a "sharing violation" error. 
    Apparently Labview has not released the file even after closing it.
    Only after the main vi quits is the file released for editing by
    others.  I have never seen this problem before using the
    Spreadsheet VI.  Can anyone provide some help or advice?
    I am running Win2000 SP4.
    Thanks.
    Greg Whaley

    Hi Greg,
    I can't reproduce this. I wrote a VI which should have caused this problem, but didn't. I attached it below. Give it a try and see if you have different results, of if something's different in your code that could have caused this.
    Anyone else experienced this?
    Jarrod S.
    National Instruments
    Attachments:
    Open Excel File.vi ‏33 KB

  • After installing Adobe Reader 8.1.2 system restarts and freezes

    After installing Adobe Reader 8.1.2 system restarts and freezes (hangs, locks up)
    I have Windows XP SP2, plenty of spare disk space and Adobe Reader 8.1.1.
    The 8.1.2 Reader appeared to install OK and asked for the system to be restarted. When I accepted this it shut down and rebooted as expected,
    but just before it was fully restarted it froze and I could do nothing.
    I pressed the power switch and tried again but the same thing happened again.
    To get back to a usable system I had to boot in safe mode and go back to a restore point.
    I don't know if this is relevent but it stopped just before Nortom firewall usually starts.
    I am keen to install the new version because of the security fixes.
    Can anyone help?
    Thanks in anticipation

    The link to the Reader forum is at the top of this forum.

  • Dreamweaver sharing violation on save after previewing file

    Hi all,
    First, have I mentioned that I LOATH Windows Vista with every
    fiber of my
    being!
    On to the problem at hand.
    I'm in Dreamweaver and I edit, then preview a file. Next I
    edit it some more
    and then try to save it - but cant. I get an alert stating
    that there is a
    sharing violation because the file is being used by another
    program, and it
    just stays this way, even if I shut the browser down. even if
    I restart
    Dreamweaver it's still locked. The only way I can get it to
    let go is to
    totally reboot!
    Has anyone else run into this? Found a solution?
    Thanks for your help.
    Lawrence Cramer
    Cartweaver.com

    This is a multi-part message in MIME format.
    ------=_NextPart_000_006F_01C8550D.5C555090
    Content-Type: text/plain;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    I haven't Larry, but let me just double-down on your Vista
    loathing. I =
    find it ridiculously slow and awesomely awkward. How many
    times do I =
    have to wait out a "not responding" message when I just
    switch to a =
    program? How often do I have to change my open file dialogs
    back from =
    their stupid photo default headers (like Date Taken)? Why do
    I have to =
    always hard boot my external firewire drive everytime I come
    back from =
    sleep mode?
    If I wasn't doomed to always have the latest OS for screen
    shot reasons, =
    I would have jumped back to XP months ago.
    Thanks for letting me vent - and good luck finding a solution
    to that =
    issue.
    Best - Joe
    Joseph Lowery
    VP of Marketing, WebAssist
    Author, Dreamweaver CS3 Bible
    "Lawrence Cramer" <[email protected]> wrote in
    message =
    news:[email protected]...
    Hi all,
    First, have I mentioned that I LOATH Windows Vista with
    every fiber of =
    my=20
    being!
    On to the problem at hand.
    I'm in Dreamweaver and I edit, then preview a file. Next I
    edit it =
    some more=20
    and then try to save it - but cant. I get an alert stating
    that there =
    is a=20
    sharing violation because the file is being used by another
    program, =
    and it=20
    just stays this way, even if I shut the browser down. even
    if I =
    restart=20
    Dreamweaver it's still locked. The only way I can get it to
    let go is =
    to=20
    totally reboot!
    Has anyone else run into this? Found a solution?
    Thanks for your help.
    Lawrence Cramer
    Cartweaver.com
    ------=_NextPart_000_006F_01C8550D.5C555090
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Diso-8859-1">
    <META content=3D"MSHTML 6.00.6000.16587"
    name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY bgColor=3D#ffffff>
    <DIV><FONT face=3DArial size=3D2>I haven't Larry,
    but let me just =
    double-down on=20
    your Vista loathing. I find it ridiculously slow and
    awesomely awkward. =
    How many=20
    times do I have to wait out a "not responding" message when I
    just =
    switch to a=20
    program? How often do I have to change my open file dialogs
    back from =
    their=20
    stupid photo default headers (like Date Taken)? Why do I have
    to always =
    hard=20
    boot my external firewire drive everytime I come back from
    sleep=20
    mode?</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>If I wasn't
    doomed to always have the =
    latest OS for=20
    screen shot reasons, I would have jumped back to XP months =
    ago.</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>Thanks for
    letting me vent - and good =
    luck finding=20
    a solution to that issue.</FONT></DIV>
    <DIV><FONT face=3DArial size=3D2>
    <P>Best - Joe</P>
    <P>Joseph Lowery<BR>VP of Marketing, <A=20
    href=3D"
    http://www.webassist.com/">WebAssist</A><BR>Author,
    <A=20
    href=3D"
    http://www.idest.com/dreamweaver/">Dreamweaver
    CS3=20
    Bible</A></P></FONT></DIV>
    <BLOCKQUOTE=20
    style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT:
    5px; =
    BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
    <DIV>"Lawrence Cramer" &lt;<A=20
    =
    href=3D"mailto:[email protected]">[email protected]</A>&gt;
    =
    wrote in=20
    message <A=20
    =
    href=3D"news:[email protected]">news:fm8rel$s87$1@forums=
    .macromedia.com</A>...</DIV>Hi=20
    all,<BR><BR>First, have I mentioned that I LOATH
    Windows Vista with =
    every=20
    fiber of my <BR>being!<BR><BR>On to the
    problem at hand.<BR><BR>I'm in =
    Dreamweaver and I edit, then preview a file. Next I edit it
    some more =
    <BR>and=20
    then try to save it - but cant. I get an alert stating that
    there is a =
    <BR>sharing violation because the file is being used
    by another =
    program, and=20
    it <BR>just stays this way, even if I shut the browser
    down. even if I =
    restart=20
    <BR>Dreamweaver it's still locked. The only way I can
    get it to let go =
    is to=20
    <BR>totally reboot!<BR><BR>Has anyone else
    run into this?  Found =
    a=20
    solution?<BR><BR>Thanks for your
    help.<BR><BR>Lawrence=20
    Cramer<BR>Cartweaver.com<BR></BLOCKQUOTE></BODY></HTML>
    ------=_NextPart_000_006F_01C8550D.5C555090--

  • Sharing Violation error when inserting a table

    Hi Everyone.
    I know this question has been asked before but no one seems to have a working solution.
    We have Macromedia MX (6.1) installed on a room with windows 7 on all the computers, on a server 2008 network, connectiing to a server 2003 user area server. It seems to work fine until you try to insert a table which is different to the default options. It then throws up a sharing violation error to do with the table.htm file under the Application Data\Macromedia\Dreamweaver MX\Configuration\Objects\Common\ folder. The program then closes. The things I have tried to get this working so far are -
    uninstall and reinstall
    deletion of the Application Data\Macromedia\Dreamweaver MX\Configuration\ folder
    changing location of Application Data\Macromedia\Dreamweaver MX\Configuration\ folder from network drive to local drive
    making sure the user has complete ownership of the folder and the file in question. They do
    checking the same problem exists with an adminstrator account and a normal user account. It does.
    having the user log on to a windows XP machine connecting to the same server with the same log on account. This works fine! So almost certainly a problem with Windows 7.
    runnning the dreamweaver program as administrator
    changing where the site is saved to.
    Im really all out of ideas. Yes i know that its an old version and the newer versions work a lot better, but this is all we have at the moment.
    I really appreciate any help!

    Hi Chrissy,
    According to the description, you were not able to save the workbook after you typo some VBA code. Which version of Office are you using? Are you save it manully?
    Based on my understanding, this issue is not realtive to the code and it maybe a know issue about Office 2007. You can fix it via link below:
    Description of the 2007 Office system hotfix package (Msoshext-x-none.msp): April 27, 2010 
    If you still have the issue save it manually, I would suggest that you reopen a new question in
    Microsoft Community- Excel forum to get more effective response.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Denying system.exit in java code

    My objective is to nullifying the system.exit programmed. By goggling i learn t that this can be done by adding permission in policy file. But as far my google search i dont understand how to deny a permission. Most of them says about granting a permission. Can anyone clarify how to deny a permission.
    Steps i tried.
    Sample program: which does nothing other than calling system.exit(0) as the first line in main method.
    added the following line to java.policy file in my JAVA_HOME/jre/lib/security
    grant {
              permission java.lang.RuntimePermission "exitVM";
    Also tried adding only
    permission java.lang.RuntimePermission "exitVM";
    to the already available grant block.
    Also commented out
    //grant codeBase "file:${java.home}/lib/ext/*" {
    //     permission java.security.AllPermission;
    After that i understood that the default java policy file is java.home\lib\security\java.policy. So made all the change above mentioned there too.
    But i could not achieve it. Can any one help me on this.
    Win 2000/ Java1.4.2_12/no command line arguments while running the program.

    Welcome to the Forums.
    Please go through the FAQ of the Forum.
    You has posted your query in the wrong Forum, this one is dedicated to Oracle Forms.
    Please try {forum:id=1050}.
    Regards,

Maybe you are looking for

  • MDM catalog integration with SRM 7.0

    Hi all, We will be upgrading from SRM 5.0 to SRM 7.0 We currently have CCM .....Few questins on catalog enablement for us with SRM 7: 1.With SRM 7,0,can we use CCM oor MDM is the only option??? 2.Is it better to have MDM as a seperate server and enab

  • Centro not sync-ing to Win XP Home with SP3

    My brand new Palm Centro failed to sync to Palm Desktop running on Windows XP Home with Service Pack 3.  The Palm "getting started" help desk (very polite, and free) told me I could go back to Service Pack 2, or upgrade to Vista.  There's some kind o

  • KLADR address (classifier of Russian addresses)

    Hi, I am working on the Upload of KLADR address for Russia in our ECC 6.0 system. I downloaded the latest file from the weblink (www.gnivc.ru - Классификатор адресов России (КЛАДР)) I used the upload program HRUUKLADRLOAD to upload the files. Here I'

  • In which country exists option None for credit card

    In which country exists option None for credit card

  • Is LC ES2 easier to install and manage than 8.2 ?

    Can anyone provide a comparision of the install processes and ongoing maintence of each of these versions ?