Copy files problem/ Storing byte [] in Vector

Hey.
I am trying to write a tool to copy files from one location to various others.
I wrote a little scrap class to test the copy algorithm.
In the tool I want to read the input files only once and then just read the data from a Vector or something.
I tryed the following.
import java.io.*;
import java.util.*;
public class copytest
     public static void main(String args[])
          try
               File output = new File("f:/Ascii/test");
               if(!output.exists())
                    output.mkdirs();
               BufferedInputStream bis = new BufferedInputStream(new FileInputStream(new File("f:/Textfiles/test.txt")));
               BufferedOutputStream buf = new BufferedOutputStream(new FileOutputStream("f:/Ascii/test/t.txt"));
               int currend = -1;
               byte[] buffer = new byte[80];
               Vector tr = new Vector();
               while((currend = bis.read(buffer))!= -1)
                    tr.addElement(buffer);
//Store data for a while...
               System.out.println("Here");
               for(int i = 0; i<tr.size() ; i++)
                    byte[] bufe = (byte[])(tr.elementAt(i));
//Read it again...?
                    // THIS DOES NOT WORK!!!
                    buf.write(bufe, 0, bufe.length);
               buf.close();
               bis.close();
          catch(IOException e)
               System.out.println(e);
I hope U can help me...
THX
Martin
          

while((currend =bis.read(buffer))!= -1)
byte[] temp = new byte[currend];
System.arraycopy(buffer, 0, temp, 0, currend);
tr.addElement(temp);
//Store data for a while...
}Thanks! I will try that. I should have thought of that myself actually...
But, since that involves creating and
allocating memory for multiple arrays of bytes and
then holding them in memory, I really doubt you will
gain any performance at all compared to just
immediately writing out what you read.You are probably right. I just want to give it a shot. My tool works with threads and that would mean I would read the input x<=8 times simultaneously. Thats why I thought reading it once and than using an static Vector might be better...
But when it gets to a big amount of data.... I don't know....
Thanks!
Martin

Similar Messages

  • Create folder and copy files problem

    Hello all indesign script Members
    where I work we use a permanent folder structure for an example
    a jobnumber called "123123"
    I have wrote a little interface called interface.jsx, this file is saved and located in
    123123/scripts/interface
    I want my interface to navigate two folders up
    to 123123/source/ creates  a folder called "hej" so result is "123123/source/hej"
    then I can pick from a little dialog box the folder 123123/source/a/ copy all .indd files to the folder hej (or any other folder I choose from the dialog box)
    I want the script to know the active path instead of whole locations because, we have different project numbers all the time.
    then run an extern script called hej.jsx
    the best should be also if the script could chose 123123 as default jobnumber too.
    Please could  someone help me to script this?
    /get started I am very newbie
    Thank you so much in advance
    All Adobe Members

    Hi tjacobs01,
    Thanks for reply. I didnt include main method since i dont want to make the problem looks too complicated. I called both of the methods in main. The following is the simplified class code including main method.
    import java.io.File;
    import java.io.IOException;
    public class TestClass{
    public void buildFolder(){
    File f=new File("/documents/hospital_backup");
    if(f.exists()==false){
    f.mkdirs();
    public void copyFile(String file){
    String form_cmd="cp /job_holding/hospital/" + file + " /documents/hospital_backup/"+file;
    String[] command = new String[]{"sh", "-c", form_cmd};
    try{
    Runtime r=Runtime.getRuntime();
    Process p =r.exec(command);
    BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line = null;
    while ((line = in.readLine()) != null) {
    System.out.println(line);}
    int exitVal=p.waitFor();
    System.out.println("Process exitValue:"+exitVal);
    }catch(Exception e){System.out.println(e);}
    public static void main(String[] args) {
    String dir_root="/job_holding/hospital/";
    File f=new File(dir_root);
    File[] fList = f.listFiles();
    for (int i=0; i<fList.length; i++)
    String file=dir_root+fList.getName();
    TestClass test = new TestClass();     
    test.buildFolder();
    test.CopyFile(file);

  • Copy File Problems

    First off, my problem is this. I know the only way to copy over a folder
    is to create a new folder where you want to copy the original folder to and copy each file over seper
    ately, then remove the old file....for some reason my copy seems to be failing. Here is the code.
    function moveItems(fName,pNum) {
        temp1 = new File('/p/toConvert/regular/'+fName+'/ImageProperties.xml');
        fileObject = new Folder("/p/toConvert/Done/"+pNum+"/"+fName);
    if(fileObject.exists){   
        check = temp1.copy ("/p/toConvert/Done/"+pNum+"/"+fName);
        alert(check);
        return;
        }else{
            alert('not there');
        if(check){
        temp1.remove();
        return;
    temp1.remove(); works and removes the old file, however my alert says that check failed, even though remove worked so we know temp1 exists, and since fileObject.exists was passed to get the alert....I have no clue what the deal is, it just wont copy. Any help would be appreciated, thanks.

    Mike, I have been playing with copying directories with contents on my mac. I would normally with AppleScript & Shell. What I have is working but I do think Im going about this in an untidy way with my JavaScript? Im using bridge to issue the system commands. Just about the only thing I've gotten to work with bridgetalk…
    using fsName on a folder omits the final backslash should I be using a decodeURI
    also is there a cleaner method to wrapping file path strings so that they are enclosed in single quotes?
    Here was my test code
    var defaultFolder = new Folder ('~/Desktop');
    // Get user selected source folder
    var sourceFolder = defaultFolder.selectDlg('Please select your Folder to sync files from…');
    var sf = sourceFolder.fsName;
    // Get user selected destination folder
    var destFolder = defaultFolder.selectDlg('Please select your Folder to sync files to…');
    var df = destFolder.fsName;
    // Add quotes to paths
    var shellString = 'rsync -auqE ' + "'" +sf + "/'" + ' ' + "'" + df + "/'";
    btMessaging('bridge', shellString);
    function btMessaging(targetApp, script) {
    var bt = new BridgeTalk();
    bt.target = targetApp;
    bt.body = 'app.system(' + script.toSource() + ');';
    //bt.onResult = function(inBT) {}
    //bt.onError = function(inBT) {}
    bt.send();

  • Copying file without passing bytes

    Hi, I need to be able to copy binary files from a web location to a directory on my local machine. The app needs to do nothing except copy the files. Is there a way of handling this outside the javaVM, ie set up a channel from the weblocation to the local location without the data having to be passed through java?

    The only way to get things done in a computer is via a program. If you don't want to use your own program you'll have to use someone else program. You can start it from Java using one of the exec methods of class Runtime.

  • Still having problems storing bytes...

    Ok, I tried using the Util.CopyArray and CopyArrayNonAtomic methods with the following arguments:
    Util.CopyArrayNonAtomic(buffer, ISO7816_CDATA, first, (short)0, byteRead);
    I am still receiving the same error and I'm sure that it must be from this section. This is the code that I use for my method that writes data:
    byte[] buffer = apdu.getBuffer();
    byte numBytes = buffer[ISO7816.OFFSET_LC];
    byte byteRead = (byte)(apdu.setIncomingAndReceive());
    if (numBytes != byteRead){
    ISOException.throwIt(ISO7816.SW_WRONG_LENGTH);
    Util.CopyArrayNonAtomic(buffer, ISO7816_CDATA, first, (short)0, byteRead);
    I'm wondering if it's possible for me to use a for loop as I had originally intended since this method isn't working?

    Allocate memory for first byte array.
    Also check the return value on the CopyArray..() method.

  • I need help with copying files in java?

    hi, i use the following code sample to copy a directory structure and its files.
    It copy's the directory-structure, but all the files in it have 0kb as size. except one file.
    Here's the code:
    public static void copyDir(String source, String target)
    String [] listing = new String [0];
    FileReader in = null;
    FileWriter out = null;
    String sourcePath = source;
    String targetPath = target;
    // Maakt directory onder target directory
    File f = new File(targetPath);
    f.mkdir();
    // Maakt filelist van bestanden in source-directory
    f = new File(sourcePath);
    listing = f.list();
    for(int i = 0; i < listing.length; i++)
    f = new File(sourcePath + listing);
    if(f.isDirectory())
    copyDir(source + listing[i] + File.separatorChar,
    target + listing[i] + File.separatorChar);
    else
    try
    in = new FileReader(sourcePath + listing[i]);
    out = new FileWriter(targetPath + listing[i]);
    int t;
    while (-1 != (t = in.read()))
    out.write(t);
    try { Thread.sleep(200); } catch (InterruptedException e) { }
    System.out.println("Copied: " + sourcePath + listing[i]);
    catch (Exception e)
    System.out.println(e);

    Here is a quick copy program that works. You'll need to deal with the exception instead of just throwing it though.
    import java.io.*;
    public class Copy
      private static void copy(String source, String target) throws IOException
        // Create directory
        File file=new File(target);
        file.mkdirs();
        // Get contents
        file=new File(source);
        File[] files=file.listFiles();
        // Copy files
        int length;
        byte[] buffer=new byte[1024];
        for(int i=0; i<files.length; i++)
          String destination=target+File.separator+files[ i ].getName();
          if(files[ i ].isDirectory())
            copy(files[ i ].getPath(), destination);
          else
            FileInputStream in=new FileInputStream(files[ i ]);
            FileOutputStream out=new FileOutputStream(destination);
            while((length=in.read(buffer))!=-1)
              out.write(buffer, 0, length);
            in.close();
            out.close();
      public static void main(String[] args) throws IOException
        copy(args[0], args[1]);
    }[\code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Time machine: An error occurred while copying files. The problem could be temporary. If the problem persists, use Disk Utility to repair your backup disk.

    Time machine backups are failing. I've followed the instructions I found on the Time Machine troubleshooting page (http://pondini.org/TM/Troubleshooting.html) but have gotten to where I don't know what to do next.
    Sequence of events:
    The main error message is always:
    An error occurred while copying files. The problem could be temporary. If the problem persists, use Disk Utility to repair your backup disk.
    Yesterday, I opened Disk Utility and verified the disk. Got this error:
    Error: This disk needs to be repaired using the Recovery HD. Restart your computer, holding down the Command key and the R key until you see the Apple logo. When the OS X Utilities window appears, choose Disk Utility.
    I ran Disk Utility and repaired the hard drive. Then I manually started the backup before going to bed, figuring it was going to take a long time to run. When I got up this morning, the backup had failed with the same "could be temporary" error. I checked the log, which says:
    Starting manual backup
    Attempting to mount network destination URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Mounted network destination at mount point: /Volumes/Tery Griffin's Time Capsule using URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Disk image /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (-36) Applying backup protections to /Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC
    Error: (5) setxattr for key:com.apple.backupd.SnapshotStartDate path:/Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC size:17
    Error: (5) setxattr for key:com.apple.backupd.SnapshotState path:/Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC size:2
    Deep event scan at path:/ reason:must scan subdirs|new event db|
    Finished scan
    Found 145601 files (11.88 GB) needing backup
    16.1 GB required (including padding), 620.77 GB available
    Copied Zero KB of 11.88 GB, 0 of 145601 items
    Copied 0 files (Zero KB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    Ejected Time Machine disk image: /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle
    Ejected Time Machine network volume.
    Starting automatic backup
    Attempting to mount network destination URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Mounted network destination at mount point: /Volumes/Tery Griffin's Time Capsule using URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Disk image /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (-36) Applying backup protections to /Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/9F8E7957-9C50-49C3-8314-880E5203E3D9
    Error: (5) setxattr for key:com.apple.backupd.SnapshotStartDate path:/Volumes/Time Machine Backups/
    Does anyone know what the problem is here and what I should do?
    Thanks,
    Tery

    You have repaired your boot drive (which is good) but have you repaired your time machine drive?  I don't own a Time Capsule so I don't know if disk utility can operate on it.  If it can, you should repair it as well.  You may need to erase it and start a new backup.  That happens to time machine volumes from time to time and is why people who are serious about their data never rely on a single source of backup.

  • Consolidate Problem. Copying files failed. The File name was invalid.

    Hi to everyone,
    My system is 10.5.8, iTunes 9.2.1 (4)
    I tried to consolidate my iTunes library to an external HD. After about 100GB of copied music, I got the message : Copying files failed. The File name was invalid.
    Now everytime I try again to consolidate, I get immediately this message. I am looking everywhere for a solution, and I only find the same problem for Windows iTunes users.
    Actually I found very useful this thread:
    http://discussions.apple.com/thread.jspa?threadID=1708372,
    which talks about with which order iTunes consolidates the media, so by digging a little in the folders to find which track has the problem and make the fix. It says that consolidate start copy the files by the date added order. So I can go in my new iTunes media folder and find the latest added track, then go back in iTunes, sort by date added the songs and locate the next song, to make the fix. However in my case, all previous and next songs (by date added), have been copied in the new locations.
    I am stuck. I have a remaining 300GB of music to consolidate and dont know how to proceed.
    Any help would be much appreciated..

    Finaly, I managed to solve it by myself...,
    following the help I found from the post of the thread I mentioned on my question...
    What was the problem that made things more difficult in my case, is that a big amount of songs have been added at the same time, with just a few seconds time distance. So it was tougher to locate what was the last imported song, and where iTunes consolidation had stopped. Actually I had groups of about 100 songs with the same timestamp of date added and the consolidation was following the rule of the "date added" but not exactly with the order the songs was showing in the iTuned library. So I started checking all the songs very close to the last added in the media folder one by one with the "show in finder" command, and then I managed to found what was the one with the problem.
    Regarding the problematic file, that was a midi file that had been imported in my iTunes.
    I hope this will help anyone else that might have the same problem as me in the future.

  • I am using itunes 10 and trying to consolidate my files.  I keep getting the error "Copying files failed.  The file name was invalid or too long".  How can I indentify what file is causing this problem or resolve this issue?

    I am using itunes 10 and trying to consolidate my files.  I keep getting the error "Copying files failed.  The file name was invalid or too long".  How can I indentify what file is causing this problem or resolve this issue?

    BUMP
    Yes, I just get that message. I don't see how I could investigate this problem.
    I didn't mention that this happened when I was consolidating my library, not copying files to another computer.
    In other words, I'm using a "normal" itunes procedure, itunes won't complete it, and won't tell me exactly why or how to figure out how to fix it...
    Is there at least some easy way to tell which files were successfully copied to my itunes music folder so I can work on moving the uncopied files?
    Can anybody help me?

  • Problem with copying files between OS 9 to OS 10.4.9

    We have updated 2 computers to 10.4.9 after som minor problems its working fine the only problem we still have is that we cannot copy files from our older Mac running OS 9.2.2 to the macs running 10.4.9 if we copy 1 file its working when we want to copy a folder or more files the connection got lost we get a message the connection with the file server unexpectedly broken. We also have a Xserve running OS 10.4.6 coping files to the Xserve is not a problem and is running just fine.
    We can copy files or take files from the OS 10.4.9 macs to the Mac with OS 9.2.2 this is no problem just copying a bit slower then to the Xserve.
    All the computers are in a netwerk with cat5 cables and was working just fine before the updates to 10.4.9
    Regards Pepijn

    Welcome to Apple Discussions!
    Copying from 9 to 10.4.9 is not recommended unless Mac OS X is under control of the copying. Mac OS 9 has no familiarity with the file permissions of Mac OS X and thus if you make a mistake, you could seriously damage the permissions of Mac OS X. Others have found problems transferring from 9 to 10.4.9 where not with prior versions of Mac OS X. I say it is about time, because of the risks involved but for others their workflow depends on it they are having to relearn how to go the other direction. I've found if the risk is not taken account for, you can make Mac OS X unbootable. My suggestion is to either do all your networking and file transfer for Mac OS X from Mac OS X, or upgrade the software you have to Mac OS X native equivalent software. See my FAQ on migrating to X*:
    http://www.macmaps.com/macosxnative.html
    * Links to my pages may give me compensation.

  • I was backing up my iphone by changing the location of library beacause i don't have enough space.My phone was taking too long to copying file so i can celled it.the data is stored in desired location . And now i can't delete that back up

    I was backing up my iphone by changing the location of library because i don't have enough space.My phone was taking too long to copying file so i can celled it.the data is stored in desired location . And now i can't delete that back up.
    Also tell me about the performance of iphone 4 with ios 7.1.1...........
    T0X1C

    rabidrabbit wrote:
    Can I back up my iPhone 4S to my ipad 3 (64 gb)?
    no
    rabidrabbit wrote:
    However, now I don't have enough space in iCloud to backup either device. Why not?
    iCloud only give so much space for free storage, then if you exceed the limit of 5gb you have to pay for additional storage.

  • How do I copy files onto a hard drive (device) from Mac 2 7 pc. I'm able to transfer files from device but cannot transfer files to device. Anyone had same problem or can help solve this problem? Help pls

    how do I copy files onto a hard drive (device) from Mac 2 7 pc. I'm able to transfer files from device but cannot transfer files to device. Anyone had same problem or can help solve this problem? Help pls

    Welcome to Apple Support Communities
    When you try to copy data to the external drive, what happens? If you don't see any error, the external drive is formatted in NTFS, and OS X can't write in it.
    To be able to write on this external drive, you have to use an app like Paragon NTFS. Another solution would be to format the external drive in FAT32 or exFAT with Disk Utility > http://pondini.org/OSX/DU1.html Make sure you copied all the files of the external disk to the internal disk before doing it

  • Time Machine will not complete a system backup and terminates with "Unable to complete backup. An error occurred while copying files to the backup volume.  This follows a problem when Time machne terminated when the volume was almost full.

    On 11/1/2011, Time Machine (TM) terminated with an error message I did not record.  I noted that the drive was full and decided to do a separate complete bootable  system backup using Carbon Copy Clone (CCC), before clearing the TM volume and trying to start it over clean.  Part way through the full system backup CCC put up a message that there was a Physical Problem  "Library/Application Support/Techtool Protection/McIntosh HD/Directory Backup 2011-11-01-16-28-16".  That was about the time that TM malfunctioned, so I assumed they were related.  After starting CCC over a couple of times, and getting the same error message, I let it go through to completion of the backup, which took three or four hours.  I then ran tests using Disk Utility and verified that there was nothing physically wrong with both the internal hard drive and the TM volume.  I also erased and reformatted the TM volume.  However, every time I started Time Machine, it would record a few GB and terminate with "Unable to complete backup. An error occurred while copying files to the backup volume".  I restarted the computer with no change in results.  Note that prior to starting the CCC backup, I "Repaired Permissions", "zapped the PRAM" and "re-set the SMC", hoping to have a clean bootable system on the backup.  I ran Techtool and no problems were found.
    I'm running this on an Intel iMac under 10.5.8 and recording to a 500GB My Passport drive.  My hard drive is only about half full at 246 GB.  My assessment is that something happened at 16-28-16 on 11/1/2001 to screwup the Backup Directory in the file at "Library/Application Support/Techtool Protection/McIntosh HD/Directory Backup 2011-11-01-16-28-16". My question is, how do I fix it?
    I had just completed writing everything above here, explaining the problems I had been encountering for the past 24 hours.  I had the Time Machine window standing open on the desktop where I could see it, having recentlycleared it after the last termination.  As I was proofing what I had written, I looked at the window and noted that the clock had started a new run for a full back up, since all prior efforts had failed and the TM volume was empty.  As I watched and waited for it to fail again, as it had been doing at about 13 GB, it kept going and going until it just finished a complete backup, about 4.5 hours later, with my having done nothing.  Now my question would have to be - what could possiibly have happened to make it perform this way?   It will be interesting to see if it continue to operate normally, or if the problem will return, in a later backup run.

    jcm21 wrote:
    CCC put up a message that there was a Physical Problem  "Library/Application Support/Techtool Protection/McIntosh HD/Directory Backup 2011-11-01-16-28-16"
    You should not keep those files for long, and probably shouldn't back them up (if you need them at all -- since you do regular backups, I'm doubtful just how worthwhile that feature is).
    "Unable to complete backup. An error occurred while copying files to the backup volume".
    One of Apple's maddeningly incomplete messages. Most likely, there's a problem with a file (quite possibly the one CCC didn't like).  See #C3 in Time Machine - Troubleshooting for details and instructions on finding and fixing it.
    If you continue running the Directory Protection app, be sure to exclude your Time Machine drive from it (as it will just take up lots of room, and won't help repair your backups if there's a problem);  and exclude the folders it creates from being backed-up by Time Machine (as they'll create large backups, and you probably can't use the backed-up folders anyway), per #10 in Time Machine - Frequently Asked Questions.

  • Can anyone help me?Time Machine couldn't complete the backup to...  An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk.  What is the problem?  I've made no changes.

    I recently starting receiving the error message "Time Machine couldn't complete the backup to... An erro occurred while copying files.  The problem may be temporary.  If the problem persists, use Disk Utility to repair your backup disk.  I have had no problems backing up my MacBook Pro 2011 to my Western Digital My Book Live through a Linksys EA4500 router until recently.  I've made no major changes.  I've ran a diagnosis on my back up drive with no problems.  The Time Machine back up starts, but about after about 5 to 10 minutes I get the error message.  I can see the shared drive in Finder.  The light on the drive blinks while it starts the back up.  I can see the shared folders on the networked drive.  The backup process starts but for some reason it just stops.  Can anyone help?

    You can't repair a network volume in Disk Utility.
    Backing up to a third-party NAS with Time Machine is risky, and unacceptably risky if it's your only backup. I know this isn't the answer you want, and I also know that the manufacturer says the device will work with Time Machine, and that it usually seems to work. Except when you try to restore, and find that you can't.
    If you want network backup with Time Machine, use as the destination either an Apple Time Capsule or an external hard drive connected to another Mac or to an 802.11ac AirPort base station. Only the 802.11ac base stations support Time Machine, not any older model.
    If you're determined to keep using the NAS for backup, your only recourse for any problems that result is to the manufacturer (which will blame Apple.)

  • Using Time Machine to back up two systems, OS10.8.3, and OS 10.6.8. Sometimes it backs them up, sometimes I receive this: Backup was not performed because an error occurred while copying files to the backup disc. The problem may be temporary...

    Using Time Machine to back up two systems, OS10.8.3, and OS 10.6.8. Sometimes it backs them up, sometimes I receive this: Backup was not performed because an error occurred while copying files to the backup disc. The problem may be temporary...

    Hello,
    Thanks to the great Pondini...
    http://pondini.org/TM/C3.html

Maybe you are looking for

  • How do I move multiple emails from Inbox to a specific folder?

    I have left a lot of emails in my Inbox that should have been moved to specific folders. How do I move them in bulk to their specific folders other than moving each one individually. I have highlighted the messages concerned by searching and then sel

  • Problem on upgrading the designer repository from v1.3.2 to Desig6

    Hi folks, I have a database 8.1.6 running on SunSolaris. I migrated a database instance from v 7.3.2 which has the designer repositories (DES v1.3.2). Now after migrating the database to V8.1.6, I tried upgrade the repository through the Admin Util o

  • Capture Image in application server.

    Hi all, I have a requirement in which I have to capture an image while Weight is being captured. And I have to use that image in smartform. Does anyone having idea of this?

  • OT: Trouble sending mail lately?

    Hi, I've been getting some strange undeliverable email messages returned to me of late. One of my websites sends emails to users as required, but some users mails are not being delivered. The error message returned is either DNS not found or MX recor

  • Publishing Website to External Server

    Hello, I am used to creating websites in html code in a windows based program, So I have paid for a domain and server space. I now want to use a sub domain as a personal web page, But I want to use iWeb because it is quick, easy and i can do it on th