File & FileSeekableStream

Hi,
I'm using File & FileSeekableStream to read image files located at W2K(Standard) server, but after executed by a few clients, the following message appears:
Java.io.FileNotFoundException:\\ecms\ImgHome\[email protected](No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept)
As for the File object, there is no close() method so I can't close it after each execution by client. As for FileSeekableStream, close() means 'Forwards the request to the real File' as documented in api.
Do you think the exception is caused by the 2 objects not closed after used by each client as it is costing too many connections ?
Please advise soon.
Best Regards,
yckok

The Swing application is at client. The Applet is at the server.
Here is the method/code:
File file = new File(filename);
seek = new FileSeekableStream(file);
TIFFDecodeParam param = null;
ImageDecoder dec = ImageCodec.createImageDecoder("tiff", seek, param);
totalPages = dec.getNumPages();
System.out.println("Number of images in this TIFF: " +dec.getNumPages());
// Which of the multiple images in the TIFF file do we want to load
// 0 refers to the first, 1 to the second and so on.
imageToLoad = selectPageCounter;
//selectPageCounter++;
currentPage = imageToLoad + 1;
System.out.println("Loading page: " + currentPage);
pageMessage = "Page " + currentPage + " of " + totalPages;
//op = new NullOpImage(dec.decodeAsRenderedImage(imageToLoad),null,OpImage.OP_IO_BOUND,null);
arrayPlanarImage = new PlanarImage[totalPages];
for (int i=0; i<totalPages ; i++)
     arrayPlanarImage[i] =
     new NullOpImage(dec.decodeAsRenderedImage(i),
                         null,
                         OpImage.OP_IO_BOUND,
                         null);
HEIGHT = arrayPlanarImage[0].getHeight()+15;
WIDTH  = arrayPlanarImage[0].getWidth()+15;
PlanarImage zoomImage = null;
//PlanarImage zoomImage1    = null;
ParameterBlock params = new ParameterBlock();
params.addSource(arrayPlanarImage[0]);
params.add(defaultImagePCT/100.0f);
params.add(defaultImagePCT/100.0f);
params.add(0.0F);
params.add(0.0F);
if(IMG_MODE.equals("1")||IMG_MODE.equals("2")){
     Interpolation interp = Interpolation.getInstance(Interpolation.INTERP_BICUBIC);
     params.add(interp);
     zoomImage = JAI.create("scale",params);
     HEIGHT = zoomImage.getHeight()+15;
     WIDTH  = zoomImage.getWidth()+15;
     //getContentPane().remove(panelImage);
     //panelImage = new ScrollingImagePanel(zoomImage1, WIDTH, HEIGHT);     
else{
     int newTileWidth         = 500;
     int newTileHeight        = 700;
     ColorModel cm            = new ComponentColorModel(ColorSpace.getInstance(ColorSpace.CS_GRAY),new int[]{8}, false, false, 1, 0);
     SampleModel sm           = cm.createCompatibleSampleModel(newTileWidth,newTileHeight);
     ImageLayout il           = new ImageLayout(0,  0,  newTileWidth,  newTileHeight,sm, cm);
     RenderingHints hints     = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, il);
     zoomImage               = (PlanarImage)JAI.create("subsamplebinarytogray", params,  hints);
     HEIGHT = zoomImage.getHeight()+15;
     WIDTH  = zoomImage.getWidth()+15;
     //getContentPane().remove(panelImage);
     //panelImage = new ScrollingImagePanel(zoomImage0, WIDTH, HEIGHT);     
}//end if-else     
System.out.println("Starting add panelbuttons "+op);
// Display the original in a 800x800 scrolling window
//panelImage = new ScrollingImagePanel(op, WIDTH, HEIGHT);
//panelImage = new ScrollingImagePanel(op, 300, 200);     
System.out.println("Height "+HEIGHT);
System.out.println("Width "+WIDTH);
//getContentPane().add(panelImage, BorderLayout.CENTER);
display = new ImageDisplay(zoomImage, Integer.parseInt(IMG_MODE));
System.out.println("display = " + display);
display.setLayout(new FlowLayout(FlowLayout.RIGHT, 2, 2));
//display.rotate();
Panner panner = new Panner(display, zoomImage, 80, Integer.parseInt(IMG_MODE), false, 0);
panner.setBackground(Color.red);
panner.setBorder(new EtchedBorder());
display.add(panner, FlowLayout.LEFT);
getContentPane().add(display, BorderLayout.CENTER);
this.setSize(800,600);
repaint();
getContentPane().validate();Best Regards,
yckok.

Similar Messages

  • JAI: FileSeekableStream returns an exception when reading an image file...

    Exception Access Denied (java.io.filepermission temp read) is return when I try to run an applet that uses JAI and the JRE is 1.5.x
    Everything works well in the 1.3.x world.
    My applet is signed by Thwate and I want to able to distribute my applet without telling every user to modify the java.policy file.
    Is there any work around for this problem?
    Any help would be greatly appreciated.
    Thanks Allen

    When file is read your main bpel process doesn't come in the picture, it is done via File adapter. If adapter fails to read, you can call second bpel process (rejection handler, which implements specific interface and reads as opaque).
    In nut-shell, you will need one more proccess, but that can be genaric and shared across the enterprise.
    Regards,
    Chintan

  • Rendering Tiff File

    I am trying to view Tiff file, but the problem that it is not clear view
    I mean it is very bad look, not like view it in another Tiff viewer.
    and also it is too big, I mean the width and hight.
    any way, this is my code:-
    public void ReadingTiffFile()
    String strFileName = "d:\\b.tif";
    File file = new File(strFileName);
    SeekableStream s = null;
    try
    s = new FileSeekableStream(file);
    TIFFDecodeParam param = new TIFFDecodeParam();
    ImageDecoder dec = ImageCodec.createImageDecoder("tiff", s, param);
    RenderedImage img = dec.decodeAsRenderedImage(0);
    JFrame frm = new JFrame();
    frm.getContentPane().add(new PnlTiffGraphicsView(img));
    catch (IOException ex1)
    System.out.println("Error While Rending Images");
    public class PnlTiffGraphicsView extends JPanel
    RenderedImage img = null;
    public PnlTiffGraphicsView(RenderedImage img1)
    img = img1;
    public synchronized void paintComponent(Graphics g)
    gg.drawRenderedImage(img, new AffineTransform());
    Many thanks in Advanced.

    I found this code somewhere online... I took a few snippets from it to form my own methods that accepted image paths... Hope it helps.
         import java.awt.Frame;
         import java.awt.RenderingHints;
         import java.awt.image.DataBuffer;
         import java.awt.image.renderable.ParameterBlock;
         import java.io.IOException;
         import javax.media.jai.JAI;
         import javax.media.jai.LookupTableJAI;
         import javax.media.jai.RenderedOp;
         import com.sun.media.jai.codec.FileSeekableStream;
         import com.sun.media.jai.codec.TIFFDecodeParam;
         import javax.media.jai.widget.ScrollingImagePanel;
         public class LookupSampleProgram {
             // The main method.
             public static void main(String[] args) {
         // Validate input.
         // Create an input stream from the specified file name to be
         // used with the TIFF decoder.
                 FileSeekableStream stream = null;
                 try {
                     stream = new FileSeekableStream("C:\\my.tiff");
                 } catch (IOException e) {
                     e.printStackTrace();
                     System.exit(0);
         // Store the input stream in a ParameterBlock to be sent to
         // the operation registry, and eventually to the TIFF
         // decoder.
                 ParameterBlock params = new ParameterBlock();
                 params.add(stream);
         // Specify to TIFF decoder to decode images as they are and
         // not to convert unsigned short images to byte images.
                 TIFFDecodeParam decodeParam = new TIFFDecodeParam();
                 decodeParam.setDecodePaletteAsShorts(true);
         // Create an operator to decode the TIFF file.
                 RenderedOp image1 = JAI.create("tiff", params);
         // Find out the first image's data type.
                 int dataType = image1.getSampleModel().getDataType();
                 RenderedOp image2 = null;
                 if (dataType == DataBuffer.TYPE_BYTE) {
         // Display the byte image as it is.
                     System.out.println("TIFF image is type byte.");
                     image2 = image1;
                 } else if (dataType == DataBuffer.TYPE_USHORT) {
         // Convert the unsigned short image to byte image.
                     System.out.println("TIFF image is type ushort.");
         // Setup a standard window-level lookup table. */
                     byte[] tableData = new byte[0x10000];
                     for (int i = 0; i < 0x10000; i++) {
                         tableData[i] = (byte)(i >> 8);
         // Create a LookupTableJAI object to be used with the
         // "lookup" operator.
                     LookupTableJAI table = new LookupTableJAI(tableData);
         // Create an operator to lookup image1.
                     image2 = JAI.create("lookup", image1, table);
                 } else {
                     System.out.println("TIFF image is type " + dataType +
                                        ", and will not be displayed.");
                     System.exit(0);
         // Get the width and height of image2.
                 int width = image2.getWidth();
                 int height = image2.getHeight();
         // Attach image2 to a scrolling panel to be displayed.
                 ScrollingImagePanel panel = new ScrollingImagePanel(
                                                 image2, width, height);
         // Create a frame to contain the panel.
                 Frame window = new Frame("Lookup Sample Program");
                 window.add(panel);
                 window.pack();
                 window.show();
         }-sal

  • Problem deleting files

    hi
    one week i'm trying to figure this problem out, and i'm quite desperate...
    i'm trying to delete files that i extracted from a ZIP archive. But i have an error message saying they can't be erased.
    Is there a way to find which variables are locking the files ? Because i couldn't find by myself (i cleared or nulled every possible variable)
    here is some raw code of Decompress and Close() :
    public void closeFile()
            panel.fichierChargé = false;
            panel.nombreImages = 0;
            panel.indexRectangleActif = -1;
            panel.insideRect = -1;
            panel.resizeRect = -1;
            panel.tableaux.clear();
            panel.tableau.clear();
            images.clear();
            imageZoom = null;
            imageCouleur = null;
            imageIHS = null;
            listeFichiersTemp.clear();
            try {
                FileUtils.deleteDirectory(new File(TempDirectory  +ArchiveFilename+  File.separator));
            } catch (IOException ex) {
            ArchiveFilename = null;
            ArchiveDirectory = null;
    public class décompresse extends Thread{
        FileSeekableStream stream = null;
        NewApplication na;
        String TempDirectory = "C:\\WINDOWS\\TEMP\\";
        DisplayJAI DisplayJAIFantome;
        ArrayList listeEntrées;
        File f;
        org.apache.commons.compress.archivers.zip.ZipFile zf;
        Archive a = null;
        public boolean close = false;
        public décompresse(NewApplication na) {
            this.na = na;
        private void chargeImage()
            na.panel.nombreImages = na.listeFichiersTemp.size();
            if (na.panel.nombreImages != 0)
                int i = na.panel.nombreImages - 1;
                    stream = null;
                    try{
                        String t = (String)na.listeFichiersTemp.get(i);
                        stream = new FileSeekableStream(t);
                    } catch (IOException e) {
                        e.printStackTrace();
                        System.exit(0);
                    RenderedOp img = JAI.create("stream", stream);
                    na.images.add(img);
                    na.panel.tableaux.add(new ArrayList());
                    if (na.preloadImages)
                    if (i > 0)
                        DisplayJAIFantome.set(img);
                if (na.panel.nombreImages == 1) {
                    na.panel.fichierChargé = true;
                    na.panel.indexImage = 0;
                    na.boutonsEnable(true);
                    na.panel.tableauSélections = (ArrayList) na.panel.tableaux.get(0);
                    if (!na.panel.tableauSélections.isEmpty())
                        na.panel.indexRectangleActif = 0;
                    na.zoomStart();
                    na.zoomSetText(na.panel.zoom);
                    na.panel.repaintParent();
        private void unzip(String filename) throws IOException
            unzipPart1(filename);
            unzipPart2(filename);
            unzipPart3(filename);
        private void unzipPart1(String filename) throws IOException
            listeEntrées = new ArrayList();
            f = new File(filename);
            zf = new org.apache.commons.compress.archivers.zip.ZipFile(f, "IBM437");
            File folder = new File(TempDirectory + f.getName() + File.separator);
            int count = 0;
            for (Enumeration<ZipArchiveEntry> files = zf.getEntries(); files.hasMoreElements();)
                ZipArchiveEntry zae = files.nextElement();
                String zipname = zae.getName();
                ZipArchiveEntry packinfo = zf.getEntry(zipname);
                String entrée = packinfo.toString();
                ListeZIP lz = new ListeZIP(entrée, count);
                listeEntrées.add(lz);
                count ++;
        private void unzipPart2(String filename)
             // simple sorting
        private void extraitElementZIP(int n) throws FileNotFoundException, IOException
            File folder = new File(TempDirectory + f.getName() + File.separator);
            Enumeration<ZipArchiveEntry> files = zf.getEntries();
            ZipArchiveEntry zae = null;
            for (int j = 0; j < n + 1; j++) {
                zae = files.nextElement();
            String zipname = zae.getName();
            ZipArchiveEntry packinfo = zf.getEntry(zipname);
            File chemin = new File(folder + File.separator + zipname);
            if (packinfo.isDirectory()) {
                chemin.mkdirs();
            } else {
                if (!chemin.getParentFile().exists()) {
                    chemin.getParentFile().mkdirs();
                String fn = folder + File.separator + zipname;
                na.listeFichiersTemp.add(fn);
                FileOutputStream fos = new FileOutputStream(fn);
                InputStream is = zf.getInputStream(packinfo);
                IOUtils.copy(is, fos);
                is.close();
                fos.flush();
                fos.close();
                processFileList();
                chargeImage();
                na.màjnombreImagesText();
        private void unzipPart3(String filename) throws IOException
            na.listeFichiersTemp = new LinkedList();
            File folder = new File(TempDirectory + f.getName() + File.separator);
            if (!folder.exists()) {
                folder.mkdirs();
            if (!na.CBVFilename.equals("cbvnontrouvé"))
                extraitElementZIP(na.CBVIndex);
                chargeFichierCBV();
            for (int i = 0; i < listeEntrées.size(); i++)
                if (close) {
                    closeThread();
                    close = false;
                    break;
                int count = ((ListeZIP)listeEntrées.get(i)).index;
                if (count != na.CBVIndex)
                    extraitElementZIP(count);
        @Override
        public void run() {
            String filename = na.ArchiveDirectory + na.ArchiveFilename;
            try {
                unrar(filename);
            catch (Exception e1) {
                try {
                    unzip(filename);
                catch (Exception e2) {
        public void closeThread()
            try {
                a.close();
                zf.close();
                stream.close();
            } catch (IOException ex) {
            DisplayJAIFantome = null;
            stream = null;
            listeEntrées = null;
            f = null;
            zf = null;
            a = null;
            na.closeFile();
    }thanks a lot

    ion_one wrote:
    amazing
    it works
    thank you so much !Yep - amazing. I can't take the credit for it since I read it somewhere. One of just three uses of System.gc() that I am aware of.

  • Noob question, where do i get these files

    hi, im brand new to java and am probally already jumping in over my head, but ive done it before with other languages and it worked out alright. i want to know where i can get these from.
    import javax.media.jai.JAI;
    import javax.media.jai.LookupTableJAI;
    import javax.media.jai.RenderedOp;
    import com.sun.media.jai.codec.FileSeekableStream;
    import com.sun.media.jai.codec.TIFFDecodeParam;
    import javax.media.jai.widget.ScrollingImagePanel;
    ive added the JIA,jar to my /usr/local/lib but it still complains about not being able to find them. thx

    I use JAI too. I was having trouble when I did java MyClass to run MyClass because that invoked the Windows jvm not the one in the jdk. The jvm looks for the JAI files in the same folder and of course they are not in the same folder as the Windows jvm. So Now I have to specify the jdk's jvm explicitly e.g. like this c:\jsdk4\bin\java MyClass.
    I hope that helps.

  • Delete File From Mounted Volume

    Hey,
    I am trying to delete the "Calendar Cache" files on both my laptop PowerBook G4 and the Mac Pro Quad that I sync my calendars with. I am using ChronoSync and the individual calendars sync fine, but there is a little house keeping needed with the cache file. They need to be deleted on both systems in order to "refresh" the views of the calendars.
    So after the sync of calendars, I have the software initiating an AppleScript that deletes both. Here's the script:
    +(* PowerBook Files / delete cache file *)+
    +(* Please note that both systems have the same username. This may be arise a conflict *)+
    +tell application "Finder"+
    + activate+
    + tell application "Finder" to delete file "Calendar Cache" of folder "Calendars" of folder "Library" of disk "useranthony"+
    +end tell+
    +(* Mac Pro Quad/ delete cache file *)+
    +tell application "Finder"+
    + mount volume "afp://10.10.10.1/anthonyabraira"+
    + tell application "Finder" to delete file "Calendar Cache" of folder "Calendars" of folder "Library" of disk "/volumes/useranthony"+
    +end tell+
    I am having trouble addressing a deletion on the networked Mac Pro Quad.

    why send it to the trash — just delete it...
    (* PowerBook Files / delete cache file )
    try
            do shell script "rm -rf /Library/Calendars/Calendar\\ Cache"
    end try
    you may need a delay for the Mac Pro Quad to mount
    ( Mac Pro Quad/ delete cache file *)
    --the mount and then the delay
    delay 4
    try
            do shell script "rm -rf /THE-CORRECT/PATH-HERE/Library/Calendars/Calendar\\ Cache"
    end try
    Tom

  • How Open And Print Proc C Genrated Text File Based Report ON Browser

    Dear Sir
    I have my old 6i forms from which i runs some Pro*c programmers with the help of HOST() command ,and then that generates a normal text file as a resultant report like file name "kha10"
    which i can easily open with any text client ,,,
    now what i want is that, to open this file on browser like web Report on my forms 10g like report builder 10g
    can anyone help me as it will be a gr8 help otherwise i would have to develop approx 100 reports.....
    any solution or any technique plzz help me

    bro my work is almost done apart from this virtual directory , how to make a virtual directory so that is dosent comes under
    http://........../form/
    i mean where to put my
    <virtual-directory virtual-path="/procrepo" real-path="c:\" />
    as my original file looks like bellow
    <?xml version="1.0"?>
    <!DOCTYPE orion-web-app PUBLIC "-//ORACLE//DTD OC4J Web Application 9.04//EN" "http://xmlns.oracle.com/ias/dtds/orion-web-9_04.dtd">
    <orion-web-app
         deployment-version="10.1.2.0.2"
         jsp-cache-directory="./persistence"
         temporary-directory="./temp"
         servlet-webdir="/servlet/"
    >
    <context-param-mapping name="configFileName">D:\DevSuiteHome_1/forms/server/formsweb.cfg</context-param-mapping>
         <virtual-directory virtual-path="/html" real-path="D:\DevSuiteHome_1/tools/web/html" />
         <virtual-directory virtual-path="/java" real-path="D:\DevSuiteHome_1/forms/java" />
         <virtual-directory virtual-path="/webutil" real-path="D:\DevSuiteHome_1/forms/webutil" />
         <virtual-directory virtual-path="/jinitiator" real-path="D:\DevSuiteHome_1/jinit" />
         <session-tracking cookies="disabled" />
    <!-- Uncomment this element to control web application class loader behavior.
    <web-app-class-loader search-local-classes-first="true" include-war-manifest-class-path="true" />
    -->
    <security-role-mapping name="administrators">
    </security-role-mapping>
    </orion-web-app>
    plzzzzzzzzzzz help

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • How do I find, at-a-glance, the sample size used in several music files?

    How do I find, at-a-glance, the sample size used in several music files?
    Of all the fields available in a FInder Search, "Sample Size" is not available. Finder does offer a "Bits per Sample" field, but it only recognized graphic files and not music files.
    Running 10.8.5 on an iMac i5.
    I did search through a couple of communities but came up empty.
    Thank you,
    Craig

    C-squared,
    There is no View Option to allow display of a column of sample size. 
    For WAV or Apple Lossless files, it is available on the Summary tab (one song at a time, as you know).  For MP3 and AAC it is not available at all.
    You can roughly infer it from the files that are larger than expected for their time.
    99% of the music we use is at the CD standard of 16-bit, so I can guess that displaying it has never been a priority.  However, if you want to make a suggestion to Apple, use this link:
    http://www.apple.com/feedback/itunesapp.html

  • Windows no longer boots up, paging file error

    I just reinstalled windows on my mac last week because until now I had been running the old beta version of boot camp.
    Just a few days ago I started getting blue screens every so often and it happened again (twice to be exact) yesterday, however one of the times it booted up and informed me I might want to change my paging file size. Not quite sure what this was I went and found the paging file option in settings and found it was clicked on a set size...so I figured I'd set it on the option that lets windows decide for me hoping this would fix the blue screen problem.
    I shut down my computer later that night and now windows won't get to the desktop.
    When I start it up normally it runs the system check (which I cannot skip for some reason) which gets to 84% and then says \windows\Dump3865.tmp is cross-linked on allocation unit 1731772
    Above it it mentions there is an invalid size for my page file.
    I tried booting it up the in safe mode multiple times and every time it generates a list in dos and stops on windows\system32\Drivers\mup.sys
    I really don't want to have to reload windows again. Is there anyway to skip the system check (it says press anykey, but that has never worked for me) or any other way to get my paging files back to the way they were?
    Thank you.
    Oh I'm running leopard with windows XP professional on a macbook pro (last years model) if that helps in anyway.
    Message was edited by: Tommmmm

    A. run chkdsk
    B. What happens if you boot from XP CD and Repair System
    C. system file checker - from command "sfc /scannow"
    http://www.informationweek.com/news/windows/showArticle.jhtml?articleID=18530125 1
    http://windowshelp.microsoft.com/Windows/en-US/Help/f768809f-ed90-415f-a83f-89b4 2108b3551033.mspx

  • ITunes & Windows Vista Home - Error File C:\Program Data\Apple Computer\Installer\Cache\iTunes 10.5.142\iTunes.msi was rejected by digital signature policy.

    Tried
    https://discussions.apple.com/thread/2713232?start=0&tstart=0
    and
    http://www.vistax64.com/vista-general/159940-computer-blocking-anything-no-digit al-signature.html
    with no avail!!!
    iTunes opens after I click OK on the above message however I cannot do anything within the app its like Windows it preventing it from running.
    PLEASE HELP!!!

    Update:
    I tried what the diagnostic told me to do, and repaired the installation. I was able to burn a CD in iTunes, but after I restarted, the drives have disappeared again! Here's the diagnostic info now:
    Microsoft Windows Vista Home Edition (Build 6000)
    MICRO-STAR INC. MS-6728
    iTunes 7.6.0.29
    QuickTime 7.4
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    Apple Mobile Device 1.1.3.26
    iTunes Serial Number 20D6EAF059AB94B4
    Current user is not an administrator.
    The current local date and time is 2008-01-15 19:09:32.
    iTunes is not running in safe mode.
    Video Display Information
    ATI Technologies Inc., Radeon X1600/X1650 Series
    ATI Technologies Inc., Radeon X1600/1650 Series Secondary
    ** External Plug-ins Information **
    Plug-in Name: Last.fm iTunes plugin
    Plug-in Loaded: Yes
    Plug-in Version: 0.0.13
    Plug-in File Version: 2.0.13.0
    Plug-in Path: C:\Program Files\iTunes\Plug-ins\itw_scrobbler.dll
    No drives showed up to be tested.

  • Error while deploying a PAR file from NWDS into an ECC.

    Hi all,
    I am getting this error while deploying a PAR file from NWDS into an ECC.
    Operation Failed: Please make sure the server is running or check the log (sap-plugin.log) for
    more detail.
    My server is running properly
    1 - Where is sap-plugin.log file? I don´t find it. 
    2 - Could there be another file with another name with information about the error?
    3 - Is there another way to deploy the file directly from the ECC?
    Regards,

    Hi,
    Just make sure you have maintained correct server setting to check the same open the NWDS and follow this path
    Windows/ Prefereces / SAP Enterprise Portal
    Check the following enteries
    Alias
    Host
    Port
    Login etc.
    Regards,

  • In order to create space on my MBA I just bumped iTunes media to G drive linked through Time Capsule.  Now pointed iTunes at new iTunes libary on G drive and, even though all music files are there, iTunes can only 'see' 10 albums. Any help appreciated.

    Bit more detail...
    Mac Book Air has been struggling for space for a while so I bough at time capsule a) for back up and b) to host my itunes folder remotely.  This didnt' work.  I took it into the Genius bar and the genius there told me that time capsule is not designed for anything other than back up.  Instead I have to connect a G drive through the time capsule's wireless router to my MBA. 
    I followed his instructions - moved my files from the Time Capsule and MBA directly onto the G Drive - which took a heartening 2 hrs so something must have been happening - and the held down 'Alt' when starting iTunes and selected the new itunes folder as the location of my itunes libarary which I wanted iTunes to 'point at'.  When I opened iTunes only 10 albums are visible now.
    In ITunes advanced preferences it says it is pointing at the correct folder.  The files are all cleary there when I open the G Drive folder to take a look.  But I cannot get iTunes to find them.
    Any suggestions? 
    Secondary challenge - in spite of deleting the original itunes folder on my MBA I still get messages pop up telling me my start up disk is out of space and I need to clear some - I expected to stop getting this message now I had done this exercise above.  I have emptied Trash.  Again - any pointers appreciated.  I am new to this world of 'intuitive' macbooks.
    Cheers

    After admittedly only a quick read the one thing you don't say is how you are trying to make this move.  Most people with moving library issues do it the wrong way.  Plenty of web sites tell you how to do it the wrong way.
    If the iTunes application is started before the drive with the library is fully mounted and awake iTunes will revert back to the internal drive.

  • I am using Windows 8.1 i have an External Hard Disk and one drive is now inaccessible due to sudden power failure few days ago. Now it shows "Data error (Cyclic redundancy check)". I want all my important files and Pics. How ?

    Hi,
    I am using Windows 8.1
    I have an External Hard Disk i have partitioned it to 4 parts.
    One drive is now inaccessible due to sudden power failure while listening Music from that drive few days ago.
    Now it shows "Data error (Cyclic redundancy check)".
    I tried all the procedures provided here like
    chkdsk /f, diskpart, rescan etc
    but no result :( (i mean all processes failed. They could not detect the drive).
    Please help me to get those data, pictures and project files.
    thank you

    Then why aren't you posting this in the Windows 8 forums found @
    http://social.technet.microsoft.com/Forums/windows/en-US/home?category=w8itpro
    This is a Windows 7 forum for discussion about Windows 7.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Issue in Creation of XML file from ABAP data

    Hi,
    I need to create a XML file, but am not facing some issues in creation of XML file, the in the required format.
    The required format is
    -<Header1 1st field= u201CValueu201D 2nd field= u201CValueu201D>
       - <Header2 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 10 fields>
              <Header3 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
              <Header4  1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 4 fields/.>
               <Header5 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
          </Header2>
       </Header1>
    Iu2019m using the call transformation to convert ABAP data to XML file.
    So please anybody can help how to define XML structure in transaction XSLT_TOOL.
    And one more thing, here I need to put the condition to display the Header 3, Header 4, Header 5 values. If there is no record for a particular line item in header 3, 4 & 5, I donu2019t want to display full line items; this is only for Header 3, 4 & 5.
    Please help me in this to get it resolved.

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

Maybe you are looking for

  • 2009 the attempt to burn a disc failed; the device did not respond properly

    Hi. I've been reading through this very forum, and since 2001, mac users have faced the same issue with burning CDs on a newly update version of itunes. I recently downloaded the new itunes 9, as it was provided in my software updates. EVER since Sep

  • EmailEventGenerator Document and attachment names

    Hi, I am using this method call to get the email attachment names from the EmailEventGeneratorDocument this.emailEventGeneratorDocument.getEmailEventGenerator().getAttachments() The method returns a string of comma delimited file names attached with

  • Screen will not turn on!!!

    Please help... I turn on my iMac and I hear the chimes as if it is starting up, but the screen is completely black. What could be the problem? Do you think all of my data, pictures and music is safe? I am kind of freaking out... Thank you so much for

  • Display image from database

    if i save a picture as an image in my database how do i show it on my web page using jsp??

  • How much volume can this server handle?

    Post Author: mronquillo CA Forum: General Feedback I'm not really sure where to post this. If I posted in the wrong section, please forgive me.I am running Business Objects Enterprise XI R2 on a rack-mounted server with the following specs:Quad Core