Pack() method behaves differently with JRE1.5 and JRE1.6?

Any diffrence in pack() in JRE 1.5 and JRE 1.6.

Why don't you look for yourself. Get the file containing the pach() method from both JDK 1.5 and 1.6, and compare.

Similar Messages

  • SQL 2012 database behaves differently with a unique index and ignore_dup_key = on when inserting data. It works on SQL 2008 db

    If you have a table with a unique index and ignore_dup_key = on and you INSERT rows into that table with an ORDER BY clause (because you want to control which of the duplicate
    key rows gets inserted),  the wrong row gets inserted in SQL2012.  It works correctly in SQL 2008.
    We have recently migrated  a database from SQL 2008 to SQL 2012.  We do have few other dbs which are in compatability mode 100.  The above operation works fine
    in SQL 2008 dbs but not SQL 2012.
    I've even tried applying the latest patch for SQL 2012 SP2 with CU2. Still the problem exists.  I'm going to call MS support, but want to know if anyone has come across this problem ?

    The MS documentation doesn't guarantee that the first row of the duplicates will always be inserted and the next duplicate row(s) get(s) ignored. Where did you find it in the MS documentation? I think you were just lucky that it was always inserting the
    first row in SQL 2008 (and ignoring the rest of the duplicates) - I don't think this is guaranteed
    Satish Kartan http://www.sqlfood.com/

  • Onkeypress behaves differently with FF and IE in a table td tag

    Here is a sample web page: If you click on the cell with the "abc" (not necessarily on the abc, but in the cell), then type a key, with IE (am using IE9) I get the alert, reporting which key was hit.
    With firefox (and, for the record, Safari), I get nothing.
    Is there anyway I can achieve something similar - I can't just make the cell an input field...
    <html>
    <body>
    <script type="text/javascript">
    function keyhit(e)
    var keynum,keychar;
    if(window.event) keynum = e.keyCode; // Internet Explorer
    else if(e.which) keynum = e.which; // Netscape/Firefox/Opera
    keychar = String.fromCharCode(keynum);
    alert("You pressed "+keychar);
    </script>
    Click on the "abc" in the table (or anywhere in that cell, and kit a key.
    <table cellspacing=0 border=1 width=120>
    <tr height=50>
    <td width=60 onkeypress="keyhit(event)">abc</td>
    <td width=60>xxx</td>
    </tr>
    <tr height=50>
    <td>xxx</td>
    <td>xxx</td>
    </tr>
    </table>
    </body>
    </html>

    Start by repairing the code validation errors reported here:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.archbold-station.org%2Fstatio n%2Feditreg.html
    References to external javascripts and stylesheets.css belong between the <head> and </head> tags.  You have them in the wrong place.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    Tutorials  - http://w3schools.com/

  • Solaris 11 driver behaves differently with 3G and 6G hba

    Hi,
    I am using ioctl with uscicmd driver, in the 3G LSI Sas hba, when there is a check condition, the sense bytes are
    returned normally, however, when a 6G LSI Sas hba is used, when there is a check condition, bad sense bytes are
    returned.
    Is there a solution for solving the bad sense bytes problem?
    Also let me know if I am not posting in the right forum.

    902400 wrote:
    Also let me know if I am not posting in the right forum.Where did you buy the HBA's?
    If you purchased them from Oracle/Sun, then this web site is appropriate.
    If you purchased them from somewhere else, then you need to go ask them (ultimately LSI) for assistance.

  • Beans behaves differently with more requests

    Hi,
    I have the following part of jsp calling my bean
    <jsp:useBean id="proj_fileCopy" class="bean.FileCopy">
              <jsp:setProperty name="proj_fileCopy" property="source" value="<%=userFile_Share+"//"+newFileName%>" />
              <jsp:setProperty name="proj_fileCopy" property="destination" value="<%=newFilePath%>" />
              <jsp:setProperty name="proj_fileCopy" property="filecopy" value="" />
           <jsp:setProperty name="proj_fileCopy"   property="toocopy" value="" />
         </jsp:useBean>
    proj_fileCopy.callMethod();when I call the bean with just single user logged into my application the bean completes a task within 2 minutes.
    whereas simultaneously when multiple users get logged in the bean takes twice the time i.e., 4minutes.
    In the bean I have the follwing part of code in which the bean executes a command prompt task and waits till the command prompt task gets completed as shown below
    ProcessBuilder builder = new ProcessBuilder(command);
    builder.directory(new File(commandtask));// gives the script location
    Process p1 = builder.start();
    InputStream is = p1.getInputStream();
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr) ;
    String lineRead = br.readLine();//
    while(lineRead!=null)
              counter++;
              lineRead = br.readLine();
              //System.out.println("lineRead:"+lineRead);
         }what can I do for this.

    Hi balusc,
    I tried with java. any way I will give a try again.I have posted my code below. please go through them and suggest some tips to make them efficient.
    I know its too lengthy, but I hope I can get some help to make it efficient
    below is the jsp that passes parameters to bean
    <jsp:useBean id="trasfer" class="bean.UploadFile" >
    <jsp:setProperty name="trasfer" property="previousVersion" value="<%=srcPath%>" />
    <jsp:setProperty name="trasfer" property="backupID" value="<%=File_Name%>" />
    <jsp:setProperty name="trasfer" property="userpath" value="<%=File_Share%>" />
    <jsp:setProperty name="trasfer" property="projpath" value="<%=newPath%>" />
    <jsp:setProperty name="trasfer" property="newFileName" value="<%=newName%>" />
    <jsp:setProperty name="trasfer" property="Destination" value="<%=destPath%>" />
    </jsp:useBean>
    <%
    trasfer.goAhead();
    %> Below is the bean that takes the parameters from jsp. I call the goAhead() method from jsp.
    import java.beans.*;
    import java.io.Serializable;
    import java.sql.*;
    import java.io.*;
    public class CopyFile extends Object implements Serializable {
        private String previous_Name = "";
        private String backup_ID = "";
        private String user_Path = "";
        private String project_Path = "";
        private String currentVersion_Name="";
        private String backup_Src = "";
        private String backup_Dest = "";
        private String fileType_ID = "";
        public CopyFile() {
        public void setPreviousVersion(String previous_Name){
            this.previous_Name = previous_Name;
         public void setBackupID(String backup_ID){
            this.backup_ID = backup_ID;
          public void setUserHomepath(String userHome_Path){
            this.user_Path = user_Path;
            public void setProjpath(String project_Path){
            this.file_Path = file_Path;
              public void setNewFileName(String currentVersion_Name){
            this.currentVersion_Name = currentVersion_Name;
              public void setBackupSource(String backup_Src){
            this.backup_Src = backup_Src;
         public void setBackupDestination(String backup_Dest){
            this.backup_Dest = backup_Dest;
            public void setFileType(String fileType_ID){
            this.fileType_ID = fileType_ID;
            public void goAhead(){
               try{
                    File backupFile = null;
                    String user_File = user_Path+"/"+currentVersion_Name;
                    String proj_File = file_Path+currentVersion_Name;
                   if(!previous_Name.equals(""))  {
                       File prv_Version = new File(previous_Name);
                       backupFile =    new File(project_Path+backup_ID);
                       backup_Dest = backup_Dest+backup_ID;                 
                             //the below code copies the file to location B
                       TransferFile copyVersion = new TransferFile();          
                       copyVersion.moveFile(user_File,proj_File);   
                       //the below code copies the file to location C
                   //In this class only I am calling wait.For() method
                   BackupVersions copyBackup = new BackupVersions();          
                   copyBackup.moveFile(backupFile.toString(),backup_Dest,"BACKUP");
               }catch(NullPointerException npe){
                   System.out.println("NPE in CopyFile"+npe);
    }will continue uin next post

  • Firefox behaves differently with different PDF docs on my web site

    I am running Firefox 3.6.6 on Windows 7 Home Edition. When I update a PDF file on my web site, and I try the updated web page in my browser, Why does my browser prompt me to save the file with the updated file, but it displays inside the browser with other pdfs on my site? I get the same results with IE. The files are very similar, but yet, the browsers treats them differently.

    ''Possibly'' because when you access the file from your hard disk (I assume that's what you mean by "try the updated web page in my browser") and when you access it from a webserever, the file type is different. If you're brought up with windows you might think that the file type is determined by the extension (.pdf) but it's not. Depending on the webserver, your operating system, and your browser, it ought to depend on the 'mime type'
    So try uploading the amended page to your webserver (in a test area) and see if it works off the web.

  • CMake behaves differently from within PKGBUILD and from command line

    Hi,
    I am currently struggling with an issue which I cannot find a solution. The problem is, I am trying to create a PKGBUILD for the CasADi code. The following is the PKGBUILD file written. My problem is the cmake configuration part. When the code is configured from the command line, without PKGBUILD, camke detects the -fopenmp flag for C and C++ compilers. For exactly the same compilers, cmake detects openmp for C compiler but fails to do so for the C++ compiler, when configuration is done from within the PKGBUILD file using makepkg.
    My question is, why different behaviors? Any suggestions on what is wrong?
    pkgname=casadi-git
    pkgver=0
    pkgrel=1
    pkgdesc="A symbolic framework for automatic differentiation and numeric optimization"
    arch=('i686' 'x86_64')
    url=""
    license=('GPL')
    groups=()
    depends=('sundials' 'ipopt' 'blas' 'lapack' 'python2')
    makedepends=('cmake' 'swig')
    checkdepends=()
    optdepends=()
    provides=('casadi')
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    changelog=
    source=('casadi::git+https://github.com/casadi/casadi.git')
    md5sums='SKIP'
    build() {
    cd "$srcdir/casadi"
    sed -i 's/PythonLibs/PythonLibs 2.7/g' ./cmake_modules/FindNUMPY.cmake ./swig/CMakeLists.txt
    cmake . -DCMAKE_INSTALL_PREFIX=/usr \
    -DPYTHON_EXECUTABLE=/usr/bin/python2 \
    -DWITH_DL:BOOL=ON \
    -DWITH_LLVM:BOOL=OFF \
    -DWITH_PYTHON_INTERRUPTS:BOOL=ON \
    -DWITH_OPENMP:BOOL=ON \
    -DWITH_OOQP:BOOL=ON \
    -DWITH_DOC:BOOL=ON \
    -DWITH_OPENCL:BOOL=OFF
    make
    package() {
    cd "$srcdir/casadi"
    make DESTDIR="$pkgdir/" install
    Output when cmake is run from command line
    -- The C compiler identification is GNU 4.8.1
    -- The CXX compiler identification is GNU 4.8.1
    -- Check for working C compiler: /usr/bin/colorgcc
    -- Check for working C compiler: /usr/bin/colorgcc -- works
    -- Detecting C compiler ABI info
    -- Detecting C compiler ABI info - done
    -- Check for working CXX compiler: /usr/bin/c++
    -- Check for working CXX compiler: /usr/bin/c++ -- works
    -- Detecting CXX compiler ABI info
    -- Detecting CXX compiler ABI info - done
    -- The Fortran compiler identification is GNU
    -- Check for working Fortran compiler: /usr/bin/gfortran
    -- Check for working Fortran compiler: /usr/bin/gfortran -- works
    -- Detecting Fortran compiler ABI info
    -- Detecting Fortran compiler ABI info - done
    -- Checking whether /usr/bin/gfortran supports Fortran 90
    -- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
    -- Flag needed for enabling C++11 features: -std=gnu++11
    -- x86_64 architecture detected - setting flag -fPIC
    -- Try OpenMP C flag = [-fopenmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Success
    -- Try OpenMP CXX flag = [-fopenmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Success
    -- Found OpenMP: -fopenmp
    -- Looking for Fortran sgemm
    -- Looking for Fortran sgemm - found
    -- Looking for include file pthread.h
    -- Looking for include file pthread.h - found
    -- Looking for pthread_create
    -- Looking for pthread_create - found
    -- Found Threads: TRUE
    -- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1")
    -- A library with BLAS API found.
    -- Looking for Fortran cheev
    -- Looking for Fortran cheev - found
    -- A library with LAPACK API found.
    -- Found PkgConfig: /usr/bin/pkg-config (found version "0.28")
    -- checking for one of the modules 'ipopt'
    -- Detected an IPOPT configuration without development headers. Build will proceed, but without callback functionality. To enable it, see https://github.com/casadi/casadi/wiki/enableIpoptCallback
    -- Detected an IPOPT configuration without sIPOPT headers. Build will proceed, but without sIPOPT functionality.
    -- Found IPOPT: ipopt;lapack;blas;m;dl;coinmumps;pthread;blas;gfortran;m;gcc_s;quadmath;coinmetis
    -- Could not find KNITRO include dir
    -- Could not find KNITRO library
    -- Could not find CPLEX include dir
    -- Could not find CPLEX libraries
    -- Could not find MA57
    -- MA57 libraries not found. Falling back to MA27
    -- Could not find MA27
    -- Could not find OOQP include dir
    -- Could not find SNOPT include dir
    -- Found Snopt libs: /usr/lib64/libf2c.a;/usr/lib64/liblapack.so;/usr/lib64/libblas.so;dl
    -- Could not find MATLAB include dir
    -- Could not find Matlab libs
    -- Could not find SNOPT include dir
    -- Found Snopt libs: /usr/lib64/libf2c.a;/usr/lib64/liblapack.so;/usr/lib64/libblas.so;dl
    -- Could not find MATLAB include dir
    -- Could not find Matlab libs
    -- Found SWIG: /usr/bin/swig (found version "2.0.10")
    -- Found PythonLibs: /usr/lib64/libpython2.7.so (found suitable version "2.7.5", minimum required is "2.7")
    -- Python executable is /home/hamid/bin/python
    -- numpy.get_include() is /usr/lib/python2.7/site-packages/numpy/core/include
    -- Numpy path found: /usr/include/python2.7/numpy
    -- Python libs: /usr/lib64/libpython2.7.so
    -- Numpy includes: /usr/include/python2.7/numpy;/usr/include
    -- Numpy libs: /usr/lib64/python2.7/site-packages/numpy/core/multiarray.so
    -- Found PythonInterp: /home/hamid/bin/python (found version "2.7.5")
    -- Found Doxygen: /usr/bin/doxygen (found version "1.8.4")
    -- Found DOXYFILE_IN: /usr/src/AUR/build/casadi/src/casadi/documentation/api-doc/Doxyfile.in
    -- pyreport not found -- try 'easy_install pyreport'
    -- The following features have been enabled:
    * dynamic-loading , Compile with support for dynamic loading of generated functions (needed for ExternalFunction)
    * using-c++11 , Using C++11 features (improves efficiency and is required for some examples).
    * sundials-interface , Interface to the ODE/DAE integrator suite SUNDIALS.
    * csparse-interface , Interface to the sparse direct linear solver CSparse.
    * lapack-interface , Interface to LAPACK.
    * ipopt-interface , Interface to the NLP solver Ipopt.
    * qpoases-interface , Interface to the active-set QP solver qpOASES.
    * dsdp-interface , Interface to the interior point SDP solver DSDP (requires BLAS and LAPACK).
    -- The following OPTIONAL packages have been found:
    * OpenMP
    * LibXml2
    * BLAS
    * Threads
    * LAPACK
    * PkgConfig
    * IPOPT
    * SWIG
    * NUMPY
    * PythonInterp
    * Doxygen
    -- The following features have been disabled:
    * just-in-time , Just-in-time compiliation via the LLVM compiler framework.
    * opencl-support , Enable just-in-time compiliation to CPUs and GPUs with OpenCL.
    * get-ipopt , Download and build Ipopt.
    * knitro-interface , Interface to the NLP solver KNITRO.
    * cplex-interface , Interface to the QP solver CPLEX.
    * ooqp-interface , Interface to the QP solver OOQP (requires BLAS).
    * worhp-inteface , Interface to the NLP solver Worhp (requires LibXml2 headers).
    -- The following OPTIONAL packages have not been found:
    * KNITRO
    * CPLEX
    * MA57
    * MA27
    * OOQP
    * MATLAB
    * OCTAVE
    * LATEX
    * PYREPORT
    -- Configuring done
    -- Generating done
    Output when running makepkg
    -- The C compiler identification is GNU 4.8.1
    -- The CXX compiler identification is GNU 4.8.1
    -- Check for working C compiler: /usr/bin/colorgcc
    -- Check for working C compiler: /usr/bin/colorgcc -- works
    -- Detecting C compiler ABI info
    -- Detecting C compiler ABI info - done
    -- Check for working CXX compiler: /usr/bin/c++
    -- Check for working CXX compiler: /usr/bin/c++ -- works
    -- Detecting CXX compiler ABI info
    -- Detecting CXX compiler ABI info - done
    -- The Fortran compiler identification is GNU
    -- Check for working Fortran compiler: /usr/bin/gfortran
    -- Check for working Fortran compiler: /usr/bin/gfortran -- works
    -- Detecting Fortran compiler ABI info
    -- Detecting Fortran compiler ABI info - done
    -- Checking whether /usr/bin/gfortran supports Fortran 90
    -- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
    -- Flag needed for enabling C++11 features: -std=gnu++11
    -- x86_64 architecture detected - setting flag -fPIC
    -- Try OpenMP C flag = [-fopenmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Success
    -- Try OpenMP CXX flag = [-fopenmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Try OpenMP CXX flag = [/openmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Try OpenMP CXX flag = [-Qopenmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Try OpenMP CXX flag = [-openmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Try OpenMP CXX flag = [ ]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Try OpenMP CXX flag = [-xopenmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Try OpenMP CXX flag = [+Oopenmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Try OpenMP CXX flag = [-qsmp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Try OpenMP CXX flag = [-mp]
    -- Performing Test OpenMP_FLAG_DETECTED
    -- Performing Test OpenMP_FLAG_DETECTED - Failed
    -- Could NOT find OpenMP (missing: OpenMP_CXX_FLAGS)
    -- Looking for Fortran sgemm
    -- Looking for Fortran sgemm - found
    -- Looking for include file pthread.h
    -- Looking for include file pthread.h - found
    -- Looking for pthread_create
    -- Looking for pthread_create - not found
    -- Looking for pthread_create in pthreads
    -- Looking for pthread_create in pthreads - not found
    -- Looking for pthread_create in pthread
    -- Looking for pthread_create in pthread - found
    -- Found Threads: TRUE
    -- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1")
    -- A library with BLAS API found.
    -- Looking for Fortran cheev
    -- Looking for Fortran cheev - found
    -- A library with LAPACK API found.
    -- Found PkgConfig: /usr/bin/pkg-config (found version "0.28")
    -- checking for one of the modules 'ipopt'
    -- Detected an IPOPT configuration without development headers. Build will proceed, but without callback functionality. To enable it, see https://github.com/casadi/casadi/wiki/enableIpoptCallback
    -- Detected an IPOPT configuration without sIPOPT headers. Build will proceed, but without sIPOPT functionality.
    -- Found IPOPT: ipopt;lapack;blas;m;dl;coinmumps;pthread;blas;gfortran;m;gcc_s;quadmath;coinmetis
    -- Could not find KNITRO include dir
    -- Could not find KNITRO library
    -- Could not find CPLEX include dir
    -- Could not find CPLEX libraries
    -- Could not find MA57
    -- MA57 libraries not found. Falling back to MA27
    -- Could not find MA27
    -- Could not find OOQP include dir
    -- Could not find SNOPT include dir
    -- Found Snopt libs: /usr/lib64/libf2c.a;-lpthread;/usr/lib64/liblapack.so;/usr/lib64/libblas.so;dl
    -- Could not find MATLAB include dir
    -- Could not find Matlab libs
    -- Could not find SNOPT include dir
    -- Found Snopt libs: /usr/lib64/libf2c.a;-lpthread;/usr/lib64/liblapack.so;/usr/lib64/libblas.so;dl
    -- Could not find MATLAB include dir
    -- Could not find Matlab libs
    -- Found SWIG: /usr/bin/swig (found version "2.0.10")
    -- Found PythonLibs: /usr/lib64/libpython2.7.so (found suitable version "2.7.5", minimum required is "2.7")
    -- Python executable is /usr/bin/python2
    -- numpy.get_include() is /usr/lib/python2.7/site-packages/numpy/core/include
    -- Numpy path found: /usr/include/python2.7/numpy
    -- Python libs: /usr/lib64/libpython2.7.so
    -- Numpy includes: /usr/include/python2.7/numpy;/usr/include
    -- Numpy libs: /usr/lib64/python2.7/site-packages/numpy/core/multiarray.so
    -- Found PythonInterp: /usr/bin/python2 (found version "2.7.5")
    -- Found Doxygen: /usr/bin/doxygen (found version "1.8.4")
    -- Found DOXYFILE_IN: /usr/src/AUR/build/casadi/src/casadi/documentation/api-doc/Doxyfile.in
    -- pyreport not found -- try 'easy_install pyreport'
    -- The following features have been enabled:
    * dynamic-loading , Compile with support for dynamic loading of generated functions (needed for ExternalFunction)
    * using-c++11 , Using C++11 features (improves efficiency and is required for some examples).
    * sundials-interface , Interface to the ODE/DAE integrator suite SUNDIALS.
    * csparse-interface , Interface to the sparse direct linear solver CSparse.
    * lapack-interface , Interface to LAPACK.
    * ipopt-interface , Interface to the NLP solver Ipopt.
    * qpoases-interface , Interface to the active-set QP solver qpOASES.
    * dsdp-interface , Interface to the interior point SDP solver DSDP (requires BLAS and LAPACK).
    -- The following OPTIONAL packages have been found:
    * LibXml2
    * BLAS
    * Threads
    * LAPACK
    * PkgConfig
    * IPOPT
    * SWIG
    * NUMPY
    * PythonInterp
    * Doxygen
    -- The following features have been disabled:
    * just-in-time , Just-in-time compiliation via the LLVM compiler framework.
    * opencl-support , Enable just-in-time compiliation to CPUs and GPUs with OpenCL.
    * get-ipopt , Download and build Ipopt.
    * knitro-interface , Interface to the NLP solver KNITRO.
    * cplex-interface , Interface to the QP solver CPLEX.
    * ooqp-interface , Interface to the QP solver OOQP (requires BLAS).
    * worhp-inteface , Interface to the NLP solver Worhp (requires LibXml2 headers).
    -- The following OPTIONAL packages have not been found:
    * OpenMP
    * KNITRO
    * CPLEX
    * MA57
    * MA27
    * OOQP
    * MATLAB
    * OCTAVE
    * LATEX
    * PYREPORT
    -- Configuring done
    -- Generating done

    With a little creativity, you can actually do all that from the command line with a single command. It'll look a little crazy, but it can be done.
    Whether the script exists on the local machine or not has zero to do with platform indpendence. You assumedly have to get the application onto the local machine, so including the script is not really an issue at all. However, you're talking about system independence, yet still wishing to run command line arguments? The two are mutually exclusive.

  • CS5 prints differently with Illustrator, Acrobat and Photoshop on Xerox

    Hi There,
    I have recently upgraded from CS4 Windows to a new iMac with CS5. I was getting good prints out of the PC although when we switched to Mac CS5 I have been getting de saturated prints, no colour concistancy across progams and it is near impossible to colour callibrate.
    I have double checked that I am using the correct driver for the Xerox C320 Document Centre, I have experimented with changing colour profiles. I just can't get a good colour out of any of the applications. Illustrator is the worst. The prints are coming out nothing like when they show on screen. I am really confused as all of the IT experts we have consulted with had advised us that printing on the Mac would produce a better print that the PC although this is not the case.
    If anyone has any ideas of how to fix this problem it would be greately appreciated.
    Thank you,

    Sluggish performance in general.... sometimes, after having left Illustrator running overnight... I will move my mouse and the cursor lags behind the physical movement of the mouse... almost like it's a delayed, slow motion thing.
    Do something for your CO2 footprint and turn off your machine when not using it. Seriously, electricity must be too cheap over there in the US or wherever you are from...?! Aside from that little thing, letting your computer run without it doing anything will eventually send stuff into hibernation which may never recover on wake-up again. Mustn't even be AI itself, could be some driver crashing in energy saving mode or something similar and in turn this could have ill effects such as you observe...
    Memory Hog in general.... I have an i7 intel processor, a 10k SAS boot drive, and 12 big of ram.... what MORE could they want?
    As long as AI itself is 32bit, none of that matters much, I'm afraid. It will never use more than 2.8GB.
    Yes, my video card far exceeds Adobe's recommendations and has all the latest driver updates....
    But is it the "right" driver? Experience proves that the newest one isn't necessarily the best choice. Not that it should matter much to AI, but you never know...
    All that aside of course very much al lthe people here on this forum would agree that it's about time for a 64bit version and sorting out several of the fundamental issues, but if and when that happens, nobody can tell. You could simply assume now that CS5.5 has hit the roads it will be one year to CS6 (if they keep the cycle to 1 and 2 years, respectively) and maybe then things will look better...
    Mylenium

  • Bapi Behaving differently in 4.5b and ecc 6.0

    Hi,
    Bapi BAPI_ASSET_RETIREMENT_POST is bhaving in two different versions in 4.5b it showing 'Document is posted'  Where as in the case of ECC6.0 it is showing 'transaction type 630 cannot be used for activity 'Retirement without Revenue'. So can any body help why this kind of error occured in ecc6.0. is there any modifications is needed in this function module.
    Thanks & Regards,
    Rajasekhar

    hi,
    can you check in he 4.5B system, if the BAPI was released already in that version? (SE37, BAPI name, Properies, Released on...) If the field is emtpy it means, that the BAPI is not final yet and might change in later releases.
    ec

  • Why does terminal behave differently with respect to "Resume" feature?

    Terminal behaves a little funky when it comes to the new "Resume" feature in Lion.  Here's a few interesting notes:
    When restarting, Terminal prompts the user to close itself.  If you don't click close in time, the reboot process is halted.  This ***** because resume gets confused.  When you close Terminal and reboot, Resume only opens applications that were closed AFTER terminal was manually closed.  This is only a small subset of applications that were originally opened from the first reboot attempt.
    If you do manage to close terminal in time, it only comes up on Desktop 1 after resume.  This is fine if that's what you want, but I have terminal configured on "All Desktops".  To workaround the issue, I have to set terminal to "This Desktop", then "All Desktops" EVERY TIME I REBOOT.
    No other apple programs seem to do this.
    Where do I log a bug/feature request for this?
    Cheers!

    Done!  Thanks!
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.0.9
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.1.9

  • New iPod behaving differently with iPhone headphones

    I just had an iPod Touch go bad and had it replaced at an Apple store. I aslo have some "iPohone" headphones that have the answer button. On my first iPod the answer button would work as a pause and play button, but on my newer one it's not doing that....I REALLY liked having this feature. Does anyone know what the difference might be?

    I have the same problem with my iPod Touch using Apple headphone. The remote worked well for months, then stop working until now - rendering them pretty useless, mic still work thought...
    I tried everything, even restoring the iPod. Nothing worked, this is a iPod OS software glitch that Apple doesn't seem willing to fix anytime soon. As a result, I'm barely using my Touch since it's a pain in the a*s having to take it out of the pocket, unlock, etc., everytime I want to pause or skip track. Stupid move here Apple, FIX THIS ASAP APPLE...
    Message was edited by: Praeliber

  • MBST behaves Differently with MIGO Cancellation

    Hi,
    I have configured some customised movement types to have their reversed movement types as "qty can be entered...". That is, the quantity can be changed when performing cancellation of material document.
    It works well with the old transaction MBST and MB1A (cancel with reference to material document). However, when I try it with MIGO with Cancellation option, it does not work. The quantity field is grey out, not changable. Anyone any idea why is this so? Thanks.
    Regards,
    Norman

    Hi Norman,
    As an option, you can go into the MIGO transaction, use same selections as you would to create the goods receipt document (ex. Goods Receipt, Purchase Order) but in the movement type field, select your reversal movement type.  Quantity field is open for change.  From what I'm seeing (and from what you stated) the Cancellation option in MIGO assumes the full quantity of the material document is being reversed.
    Regards,
    Dawn

  • Safari behaving differently with site on .mac/external server

    Hello. I've started creating a little webpage of mine and I've noticed that when uploaded to .mac the top bar (for selecting pages within the site) works correctly, but when the site is uploaded to an external server the top bar goes bust. It is so under Safari, not so under Firefox, which seems to "decode" everything correctly. Here are both pages (identical uploads):
    .mac: http://web.mac.com/milosz.sosnowski/Site/Start.html
    external: http://www.staff.amu.edu.pl/~miloszso/Site/Start.html
    Thank you for your help

    milosz.sosnowski wrote:
    Could someone please delete this topic
    There are worser topics sometimes
    I just wanted to say that...
    If a change doesn't display to you in the browser after you published and uploaded it mostly is because the old version of the page is cached (memorized) by your browser. Thus simply emptying the cache of the browser (Open Safari, choose Safari from the menu and go to Empty Cache) and reloading the page should display the changes.
    Regards,
    Cédric

  • Packed Project Library Shared With OI?

    I have an application which needs to share some resources/instruments with TestStand steps.  The requirements require the application to communicate with these resources/instruments with or without the TestStand Engine running.
    I understand that the suggested approach is to ONLY place instrumentation code in a test sequence.  However, what is the best approach if the application requirements dictate the resource/instrument must be shared?
    Can a packed project library be shared with the operator interface?
    Is a source distribution the only option?
    CLA, CTA
    Solved!
    Go to Solution.

    > What Language are you using?
    LabVIEW
    > Is it possible to get a more detailed explanation of what you are trying to do?
    Read and write from instruments in both my Code Modules and my Operator Interface
    Implement Diagnostic Panels without requiring the TestStand Engine
    When the TestStand engine is not running, I would like to read and write from the instruments in debug panels on the operator interface.
    Implement Status Panels without requiring the TestStand Engine
    During a TestStand Sequence, I only wish to read from the instruments in the operator interface (IO status panels).
    Implement a few high-speed timed loop state machines within LabVIEW.  These loops must start running as soon as the application is launched and for the lifetime of the application.  I would like to share the state/data of these loops with TestStand and allow a command/response interface.
    > It is possible in TestStand to run the test Sequence in a independent execution as long as it has the references to the source files.
    What if I want to start a VI that talks with an instrument.  Why can't I open a serial port in the OI and pass the session to the TestStand API?
    Why is is "better" to call a Code Module VI in a new execution vs just calling the VI from the Operator Interface?  For example, if I want to display the "status panel" of a digital input card...
    > You mentioned that you need the program to sometimes run even if TestStand is not running, will these programs ever be running at the same time?
    There will only be a single application that launches the TestStand Engine.
    The idea is that the program utilizes the TestStand engine to run automated tests.  I would like to allow the OI to read the current values (status panels) while TestStand both reads and writes.
    Additional Questions
    I would like to understand how TestStand executes LabVIEW VIs differently with the Development and Run-Time adapters.
    If I run a TestStand sequence with the LabVIEW Development System Adapter, from my Operator Interface (OI) I can call code modules and vice versa.  This will work for VIs within the context "Main Application Instance" (no project).
    When I deploy this system using the LabVIEW Run-Time Engine with a built "Operator Interface" EXE, it seems they may run in different "Contexts".
    Why is the separation between User/Operator Interface and Code Modules required?
    The TestStand Reference Manual states "Do not use instrumentation code in user interfaces".  Why?
    If I change the Preferred Execution System in the LabVIEW VI (that is running in the OI) settings to "standard" is this ok?
    I hope this detailed response explains my goals adequately.  Thanks for your assistance.
    CLA, CTA

  • Can't install quicktime or itunes I recieve error code 2738.  I'm running windows Vista 32 with Service Pack 2.  I have tried old and new version of both programs.  Also, have gone through Apple's online help with no good outcome

    Can't install quicktimeor uninstall it for that matter and itunes I receive error code 2738 with both downloads.  I'm running Window Vista with Service Pack 2.  I have check for all window update.  I have gone through Apple itune help list.  Even going into cmd to do regsvr32 vbscript.dll which was successfull. Can you help...my son had to register his ipod at the neighbors house..What going on.
    Son even call apple with no help and was give Microsoft number no help there either they wanted me to call HP.....run around

    Excellent news!
    Strange how sometimes the fixit works better than the manual methods, and sometimes the manual methods work better than the fixit. It differs from Microsoft fixit to Microsoft fixit too. (Unfortunately, because these "anomalous 2738s" are pretty rare as install errors go, I don't have a good feel yet for whether or not it's the fixit or the manual method that's more likely to work in iTunes/QuickTime installation contexts.)
    Afraid I'm not very good on earbud troubleshooting, but fingers crossed the folks over at the iPod communities might be able to help:
    https://discussions.apple.com/community/ipod

Maybe you are looking for

  • Imported too much -- how to fix

    I apologize for posting what must be a constant newbie question but I was not able to find the answer to this even after an hour of diligent searching... which is what does emptying the iPhoto trash really do? When starting up iPhoto for the first ti

  • HT201178 Keyboard was paired with IMac the shut down, computer is locked and keyboard cannot be found.

    My Imac got shut down and is locked (password protected) I get a message showing keyboard not found. I now cannot access my computer.

  • Substitution variable

    Can Substitution Variables in load-rules. E.g. &CurrentMonth in 'Data Load Settings' in the load rules.. Thanks in advance..

  • Use Printer Built-in fonts

    Hello, I'm using Imaje 2000 Series Printer, when opening new microsoft word document I can see some built in fonts specific to that printer like Imaje Arial, Imaje Times New Roman B, etc... I found out when printing with one of these fonts, the print

  • Employeeu00B4s Photo

    Hi, i have some problems with the employee´s photo, i followed all the steps: 1.- Create Number Range. Transaction code: OANR 2.- Assign Documents Class. Transaction code: OAC2 3.- Document type settings. Transaction code: SM31 Table V_T585O (View) 4