I am Student and having a huge problem need some help quick!!!

Hello I am student in college and i am developing a file share portal for my final year project using Flex 3 on the client side, java on the server side, hibernate for ORM, Sping MVC and My Sql 5. I am having a bit of a problem parsing this:
------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
Content-Disposition: form-data; name="Filename"
Flex3.txt
------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
Content-Disposition: form-data; name="action"
upload
------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
Content-Disposition: form-data; name="file"; filename="Flex3.txt"
Content-Type: application/octet-stream
Flex 3 can be a pain in the arse!!!!!!
------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
Content-Disposition: form-data; name="Upload"
Submit Query
------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4--
This is my Java code:
package com.file.exchange.service;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import java.io.*;
import java.sql.Blob;
import com.file.exchange.vo.Files;
import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.File;
import org.apache.commons.fileupload.*;
import org.apache.commons.fileupload.disk.*;
import org.apache.commons.io.*;
import org.apache.commons.fileupload.servlet.*;
import java.util.Iterator;
import java.util.List;
import java.util.ArrayList;
import java.util.ListIterator;
import javax.imageio.ImageIO;
import javax.imageio.ImageReader;
import javax.imageio.stream.ImageInputStream;
import org.apache.commons.fileupload.util.FileItemHeadersImpl;
import javax.servlet.*;
import javax.servlet.http.*;
public class FileUpload extends FileBaseService
     InputStream in = null;
     OutputStream out = null;
     ByteArrayOutputStream bout = null;
     @SuppressWarnings("unchecked")
     @Override
     protected String getXmlFromOperation(HttpServletRequest request,HttpServletResponse response) throws Exception
          int readBytes = -1;
int length = request.getContentLength();
in = request.getInputStream();
byte[] buffer = new byte[length];
bout = new ByteArrayOutputStream(length);
while((readBytes = in.read(buffer, 0, length)) != -1) {
bout.write(buffer, 0, readBytes);
byte[] inData = bout.toByteArray();
FileOutputStream fos = new FileOutputStream("C:/Documents and Settings/Andrew Hobbs/Desktop/helloworld.txt");
for(int i=0; i<inData.length; i++)
fos.write(inData);
fos.close();
          DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
          Date date = new Date();
          String data = "Hello";
          String id = "1";//getCharacterDataFromElement(vID);
          String name = "meh";//getCharacterDataFromElement(vname);
          String type = "1";//getCharacterDataFromElement(vtype);
          String size = "5555";//Long.toString(fileObject.length());//getCharacterDataFromElement(vsize);
          Blob content = org.hibernate.Hibernate.createBlob(data.getBytes());//fisFile);//data.getbytes[]
          String date_uploaded = dateFormat.format(date);
          Files file = getFileDao().uploadFile(Integer.parseInt(id), name, type, Integer.parseInt(size), content, date_uploaded);
          return file.toXml();
I will so grateful if somebody could point me in the right direction with this or point me to possible examples of parsing this!
Thanks

Let me warn you up front: never mark your questions as urgent. People really don't care how urgent it is to you, and will likely only irritate them enough to not want to help you. Lucky for you, I couldn't care less ;)
you seem to want to get an uploaded file using FileUpload. Did you see the user guide on how to do this? You seem to be going about it in completely the wrong way.
[FileUpload user guide|http://commons.apache.org/fileupload/using.html]
Also:
FileOutputStream fos = new FileOutputStream("C:/Documents and Settings/Andrew Hobbs/Desktop/helloworld.txt");Hardcoded paths in your code? Not very portable is it. I would define paths in a properties file. Read this:
[smartly loading properties|http://www.javaworld.com/javaworld/javaqa/2003-08/01-qa-0808-property.html]

Similar Messages

  • Widget creation on Flex builder and related problems - need some help

    Hi all.
    I am trying to create a widget like application and it seems
    I have made a mistake. As you know, desktop widgets are like small
    stickers, they do not appear on taskbar and can be hidden or
    docked.
    The problem is that I created an AIR application using Flex
    Builder 3 Beta and now I cannot find how to make that application
    behave like custom-shaped window. My app appears on Windows taskbar
    and I don't want it. When I drag the window (which is a custom
    shape) it shows that nasty dragging rectangle around it.
    As far as I found out (and tried it) I need to use cod like:
    var initOptions:NativeWindowInitOptions = new
    NativeWindowInitOptions();
    initOptions.systemChrome = NativeWindowSystemChrome.NONE;
    initOptions.type = NativeWindowType.UTILITY;
    to hide my window from the taskbar. But it seems I cannot use
    such a code for class mx:Application. Or can I (would be grateful
    for some idea)?
    The main question is:
    if I want to migrate my app to that NativeWindow based
    solution - then NativeWindow is not an mx class and I cannot find
    how I will use Flex Builder Design mode to arrange my GUI elements.
    Is it somehow possible to wrap my mx:Application inside
    NativeWindow and do not have to migrate the design from mxml files
    to pure ActionScript?
    The second issue - if I want to use some kind of subforms -
    like widget settings window - when I move that window with the
    mouse, it is being clipped to the region of my Application. Does
    that again mean that I need to use NativeWindow for creating such a
    "Widget settings" dialog window?
    Thanks for any ideas (and especially for useful links and
    examples :-) )

    Hi all.
    I am trying to create a widget like application and it seems
    I have made a mistake. As you know, desktop widgets are like small
    stickers, they do not appear on taskbar and can be hidden or
    docked.
    The problem is that I created an AIR application using Flex
    Builder 3 Beta and now I cannot find how to make that application
    behave like custom-shaped window. My app appears on Windows taskbar
    and I don't want it. When I drag the window (which is a custom
    shape) it shows that nasty dragging rectangle around it.
    As far as I found out (and tried it) I need to use cod like:
    var initOptions:NativeWindowInitOptions = new
    NativeWindowInitOptions();
    initOptions.systemChrome = NativeWindowSystemChrome.NONE;
    initOptions.type = NativeWindowType.UTILITY;
    to hide my window from the taskbar. But it seems I cannot use
    such a code for class mx:Application. Or can I (would be grateful
    for some idea)?
    The main question is:
    if I want to migrate my app to that NativeWindow based
    solution - then NativeWindow is not an mx class and I cannot find
    how I will use Flex Builder Design mode to arrange my GUI elements.
    Is it somehow possible to wrap my mx:Application inside
    NativeWindow and do not have to migrate the design from mxml files
    to pure ActionScript?
    The second issue - if I want to use some kind of subforms -
    like widget settings window - when I move that window with the
    mouse, it is being clipped to the region of my Application. Does
    that again mean that I need to use NativeWindow for creating such a
    "Widget settings" dialog window?
    Thanks for any ideas (and especially for useful links and
    examples :-) )

  • Huge problem, need urgent help.

    Here's the story:
    I dropped my ipod touch and cracked the screen, the touch screen was working fine.
    After fixing my screen, I attempted to connect the ipod to the computer to charge it and update my music/apps. However it would not recognise as a apple device on itunes but it would charge.
    So I thought to solve this problem, i can just restore it to factory settings through the ipod but now whenever i turn the ipod on, the screen is just stuck at the apple logo screen with the loading wheel under it.
    So in conclusion, is there any way i can fix it FOR FREE? or is the ipod just died.
    Thank you

    No luck, the device is just stuck on the itunes + usb cable, it does not recognize on Itunes. Thank you though

  • 865pe Neo2-V problem. need some help, please

    i clocked my CPU [email protected](box culer-40C idle) and i believe that i can raise FSB more but i have problem.my Kingmax(512ddr400) goes to 505 MHz, and i can't stop her. i can't put FSB/DRAM 1:1. it is allways 4:5. My old Transcend too. So it isn't memory. In BIOS i have options:
    ddr - 266/333/AUTO. i have tried 333 and AUTO and DDR is 4:5. Also, i don't know where i can turn off "performance mode".
    DDR modul is in slot1. I did not tryed to put him in slot2 or 3. Default timings are 2.5/3/3/7. i chosed 2.5/4/4/8.
    also, when i chose "by speed", BIOS do nothing, and latencies is like before i chose "by speed" so i need to chose 2.5/4/4/8 by myself.
    BIOS version is 6.1(latest)
    this is my stable selection:
    CPU - 3.33 GHz(18x185) - 38 C temperature now/ motherboard 29 C
    DDR - 462 MHz
    Thanks

    my memory now runs @ 1:1 after i chose option DDR 266 and my cpu goes @3.78!!!!!!!!. excelent.

  • Bit of a problem need some help please

    import java.io.*;
    class IO
    public static void main(String args[])
    String sOutString = "";
    int iRecordLength = 0;
    int iWork=0;
    int[] array = new int[21];
    try
    // creat input file, buffer.
    FileInputStream fis = new FileInputStream("myInFile.txt");
    BufferedInputStream bis = new BufferedInputStream(fis);
    DataInputStream dis = new DataInputStream(bis);
    // Create an output
    String fileName = "myOutFile.txt";
    File myOutFile = new File(fileName);
    FileOutputStream outStream = new FileOutputStream(myOutFile);
    PrintWriter out = new PrintWriter(outStream);
    out.println ("This is the header record");
    String record = null;
    while ( (record=dis.readLine() ) != null )
    String sTest = "";
    sTest = record;
    if (iWork==0)
    iRecordLength = sTest.length();
    sOutString = sTest.substring(0, iRecordLength);
    System.out.println(sOutString);
    out.println (sOutString);
    System.out.println(sTest.substring(0, 5));
    out.close();
    // System.out.print ("\n");
    catch (IOException e)
    System.err.println("File Error; " + e);
    System.out.println("");
    System.out.println("Ended");
    System.exit(0);
    // use get chars w substring
    Ok theres my code what im trying to do is substring my in file so that it will take a section of it out and put the rest in
    an out file. The problem is that my in file has a few lines and i do not know how to dubstrin g different linec can anyone help me?

    Well,
    I took the liberty of rewriting your code to make it readable, and expurgated most of the carp... what you've got there boils down to a really complicated-azzed implementation of cat.
    package forums;
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.io.PrintWriter;
    import java.io.BufferedWriter;
    import java.io.FileWriter;
    import java.io.IOException;
    class FileCatterator {
      public static void main(String args[]) {
        BufferedReader input = null;
        PrintWriter output = null;
        try {
          input = new BufferedReader(new FileReader("FileCatterator.java"));
          output = new PrintWriter(new BufferedWriter(new FileWriter("FileCatterator.txt")));
          String line = null;
          while ( (line=input.readLine()) != null ) {
            int len = line.length();
            String substring = line.substring(0, len);
            System.out.println(substring);
            output.println(substring);
        } catch (Exception e) {
          e.printStackTrace();
        } finally {
          if(input!=null)try{input.close();}catch(IOException e){e.printStackTrace();}
          if(output!=null)output.close();
    }The substring doesn't do anything.
    Now, What did you need it to do? Print the first so-many characters of each line or something?

  • Import data using Excel and Oracle SQL Developer - I need some help

    Dear friends,
    I'm using Oracle SQL Developer 1.5.1 and I need to import an Excel file into a database table. If I try to import this file in XLS format, fields and headers are correctly being shown and separated, but if I press "Next" button, it simply doesn't do anything - it stays stopped.
    I did some search here in this forum and it seems to me that, when you try to import a file via XLS format, SQL Developer has bugs. Is this correct?
    If I save the same file in CSV format and try to import the same file, it goes ahead, but SQL Developer is not separating fields and headers correctly. It combines all CSV fields into one - let's say Column0 and fields 1;TEST;01/01/2000 below the same Column0.
    Saving the file in CSV format is not a problem, taking a very little time. But I don't know how to make SQL Developer import it correctly. Could somebody please help me? Thanks in advance.
    Best regards,
    Franklin

    Hello K,
    yes, you're right. I found the following topic after posting this question here.
    Re: After update to 1.5.1, import from Excel fails
    I downloaded version 1.5.0 and I'll use it whenever I import data from Excel.
    Thanks,
    Franklin

  • Hey I need a code for an Itunes 25$ gift card because when I scratched with a coin like it says it scratched the code right of and its unreadable. I need some help here.

    What I want is a code so I can buy my Lord of the Rings Extended Edition Videos because its upseting to see how easy it is to ruin these codes. The code was for 25$ for Itunes and now its ruined please help me its Christmas and I just got my Ipod Touch.

    iTunes Store: Invalid, inactive, or illegible codes
    http://support.apple.com/kb/TS1292

  • Hi i need some help im having problems the ipod can not be turned , in fact it was working fine but suddenly switched off and did not return to light n because it reconnected and if I had drums

    hi i need some help im having problems , the ipod can not be turned , in fact it was working fine but suddenly switched off and did not return to light n because it reconnected and if I had drums  . what can i do to turned on .
    its an ipod touch 64gb

    That symptom is covered here:
    iPod touch: Hardware troubleshooting

  • Just want to say I love Apple and a very special thank you to Moustafa Barighzaai for going the extra mile and resolving a huge problem for me. Thanks sooo much, it was and is greatly appreciated.

    Just want to say I love Apple and a very special thank you to Moustafa Barighzaai for going the extra mile and resolving a huge problem for me. Thanks sooo much, it was and is greatly appreciated.

    Just want to say I love Apple and a very special thank you to Moustafa Barighzaai for going the extra mile and resolving a huge problem for me. Thanks sooo much, it was and is greatly appreciated.

  • I'm having the same problems as some of the others, but s...

    I'm having the same problems as some of the others, but still don't see a corrective answer.  I'm having trouble viewing video through MSN without losing connection and having to reset the router.
    How do I roll back to my previous version of firmware?, and is that the only way to fix this problem, or has linksys offered any support?
    Thanks,
    Chris

    please let me know the model and version no. of the router, so that i can tell you what should be done...

  • HT2731 how can i install free application in my iphone 4s i am a student and i haven not a credit card. help me

    how can i install free application in my iphone 4s i am a student and i haven not a credit card. help me

    There are instructions on this page for how to create a new account without giving a credit card number : http://support.apple.com/kb/HT2534 e.g. select a free app in the store and click on 'create Apple id' when 'buying' it

  • Need some help and guidance please!

    Hi everyone,
    I desperately need some help because I am at my wits end.   In September I purchased a Compaq Presario CQ60-450US.  Shortly after purchasing, I fresh installed Windows 7 Professional.  Recently I decided to tried to dual boot ubuntu on the machine only to find that the installation failed because of CD read error.  I know for a fact that the CD is not the issue because I have used this CD three other times to install ubuntu thus I came to the conclusion that the CD/DVD drive was bad.  
    I called HP support to get a new CD/DVD drive replaced only to spend 2 hours on the phone with a individual that decided to troubleshoot first trying to install ubuntu remotely (I informed the indiviual that the remote session would end), then by playing a DVD and "skipping throughout" the movie.  He/she said that she could see no issue.  (no diagnostic was run)I informed the individual that I had issues with buring as well.  He/she proceeded to go online and install software asking me to demonstrate the issue after which the call got dropped mysteriously.
    I called HP support back and told them that I am having an issue now burning.  They proceed to connect remotely and look at the software the previous support individual downloaded and said that the software was not supported by HP.  I informed the individual that I give permission to install any software needed to troubleshoot but the individual said that I could not be suppoted because I wasn't using the OS installed by HP.  I was instructed to recover my machine to the OS that was installed with the machine if I was to continue to get support.
    I informed the individual that the drivers and software are the same for either OS considering the CD/DVD rom is a plug and play device.  The individual refused to help and told me I had lost my warranty because of my decision to install an OS directly from Microsoft or a third paper vendor. 
    That is where I stand.  HP is refusing to give me support because I am not running their Vista Home edition even though my issue is hardware.  I cannot find any warrent information stating that I need to have the original operating system installed on the machine to receive support.   Can anyone point me to a reputable division that can help me with my issue?  I feel I was just thrown aside so that they don't have to initiate a repair.  If not has anyone filed a compalint against this outrageous support requirement?   

    Dear ndjumpball,
    I would like to say that I have some good -- or at least encouraging -- advice.  Regretfully, I do not.  I had issues with my dv7 practically since purchasing it a year ago specifically so I would have a reliable computer for school.  My first problem: I bought my laptop a mere 7 weeks before HP started offering their free upgrade to Windows 7.  Consequently, I was forced to purchase the full installation retail or continue to deal with the wonton freezes and system failures that inevitably occurred while I was working on homework -- courtesy of HP's installation of Vista Home Premium 64-bit.  Thankfully, I was able to purchase a copy of Windows 7 Professional 64-bit through a significant student discount offer from Microsoft, and I had my new OS downloaded the evening of October 23, 2009; I had to give their servers time to free up, since it seemed like everyone and their dogs were also downloading what the reviews posted on CNET and PC World touted as being more reliable.  I recall (I can't remember exactly which site this appeared) the statement, "Windows 7 is what Vista should have been from the beginning."
    I was all excited and happy now that I had a laptop for school that had everything I was looking for:  decent size hard drive, a fair amount of RAM, great 17.3" display with awesome colors, and a CDRW/DVDRW/Blu-Ray disk drive in the bay.  Not only was I very satisfied with the hardware; it also came with a decent host of software that are thought was pretty cool, too.  It came with CyberLink's DVD Suite 6 that I could activate simply by touching a soft button above the keyboard.  Aside from Vista Home Premium crashing on me at the most inopportune times, I was exceedingly happy with my $1000 purchase and investment.  Then came the "upgrade" to Windows 7 Professional 64-bit...Because I didn't have a "compatible" version of Vista, I had to do a full ("custom") install.  In other words, I lost all of the cool features I originally bought the machine for in the first place...no more cool one-finger's brush software activation (still don't have that working), and HP Chat Support told me the same thing they told you.  The following is a direct copy/paste quote from an email response I received from HP Total Care:  "In order to help you relevantly I would like to request you to please revert back to Vista operating system and check whether the issue is persisting or not.  If the issue is still persisting after reverting the operating system back to vista then we need to perform system recovery."
    After pursuing my case for 6 months -- finally getting my case escalated to two HP Customer Care Case Managers in Texas/Oklahoma -- the best "customer support" I received was what I'm sure was a truly heartfelt and sincere apology...  Oh, neither case manager was "able" to send me either the true upgrade disks that would have preserved the features purchased, nor were they willing to send me a stand-alone installation of the CyberLink’s DVD Suite 6 that is currently offered with the HP Pavilion dv6t Quad Edition series.  (In massive frustration and anger, I bought the CyberLink’s DVD software - $100 I didn't have to spend on something I had already bought...)
    A month later (late March), MY CD-RW/DVD-RW/Blu-Ray drive stopped working.  After an hour online with Customer Care, I had finally convinced the rep that the drive was working fine after my ditching Vista Home Premium, and that its failure had absolutely nothing to do with Windows 7 Pro.  After giving the guy my credit card number as security, I had a replacement drive shipped to me.
    My personal recommendation:  clearly state that the hardware failure had nothing to do with whatever software or OS you chose to install.  Bottom line:  your computer is only 8 months old and is still covered under warranty, they can replace the defective part, or you can return the entire machine.  You probably want to be the "Nice Guy" but you need to remind them that you have other brands available to purchase.
    I don't know if that helps or not, but thank you for giving me the opportunity to vent!  :-)

  • My airport problem has returned big time --Need some Help!!

    Aloha once again:
    I though that this was fixed by simply changing channels on my airport router, but that fix only lasted for a few days, but now it's back and even worse. Let me give you some background on this problem. Here's my original message concerning the problem:
    I have my Airport Router connected to the Internet via DSLcable. I then tie my two computers into the internet via their airport cards. For about 6 months this system has been working just fine. Recently my desktop computer quit listening to the router and can no longer connect to the internet. It shows no signal strength and the name of the network on the Airport is not seen in the "connect to internet" panel. The same Airport works just fine on my LapTop and I am using it right now to get this message off to the internet.
    I have fixed permissions, removed the airport card and cleaned the connector, the antenna plug and removed the system configuration folder from library preferences all to no avail!
    This problem has been hounding me, intermittently, for over a year now What can I do to remedy this??? HELP!!!!
    Dan Page
    Maui, Hawaii
    The suggestion to change channels, that came from this original request, worked but just for a very short time. Now I have to shut down my computer overnight to get connected and then it only lasts for several hours and the connection quits.
    I thought maybe heat was a problem, but the last time it happened I opened the computer and played a large fan right on the card. This did not help. I shut it down for the night and it was fine the next morning for about 2 hours.
    One new data point; if I turn off just the airport on my laptop computer overnight, that will fix the problem for a short time also.
    Still need some help!!!
    Dan

    First, power off both the Time Capsule and AirPort Express.
    Wait a few minutes, then power up the Time Capsule first, and let it run for a few minutes.
    Temporarily, move the AirPort Express to the same room or close proximity to the AirPort Express and power it up.
    If the Express powers up correctly, power it off again and move it approximately half the distance between the Time Capsule and the general area that needs more wireless coverage. Try to minimize obstructions like walls, ceiling, heavy furniture, etc as much as possible. 
    Please report on your results.

  • HT1222 I need some help.... I Have the iPhone 4S and downloaded the new software (6.0) and everything seems great so far except when I try to open a link in safari from a different app (messages, Facebook, ext..) it glitches and won't load. Any advice?

    I need some help.... I Have the iPhone 4S and downloaded the new software (6.0) and everything seems great so far except when I try to open a link in safari from a different app (ie..messages, Facebook, ect..) it glitches and won't load. The blue loading bar will just jump back and forth and the page will not load properly if at all....

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it. Update it to IOS 7.1.1

    Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it and still cannot be fixed. I updated it to IOS 7.1.1 recently only, does it have connection with the inconvenience I am experiencing right now? What should I do? Thanks!

    Hi Melomane1024,
    If you are still having issues with your iPhone’s speaker, you may want to look at the steps in this article -
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/TS5180
    Thanks for using Apple Support Communities.
    Best,
    Brett L

Maybe you are looking for

  • All free/busy requests get error 403 in iCal with MobileMe

    I'm playing for the first time with looking with my availability in iCal / Lion / MobileMe CalDAV accounts. Everything else is working well with my calendars and Mobile Me. I can add events, remove them, edit them, the sync is working well between th

  • Importing Word Document as Template

    I would like to use a Word or PDF document as a template for designing of SSRS report. Design and Document layout is better in Word, the canvas in BIDS is not design friendly. So, does anyone know if importing Word or PDF is allowed in BIDS? Regards,

  • Why is this happening? pixellated screen, not rebooting

    This all it is seem to do. Day and Night. Doesnt reboot, doesnt do anything else. Doesnt charge. Randomly this happened. Explain someone please?

  • Flush the queue

    Is there a best practice or a maintenance schedule when it comes to flushing out cancelled and success items from the queue? We have never done this and have around 2500 of each type sitting in the queue. Nothing is showing up as failed.

  • Plug-in enabled, fatal Vm error in browsers

    Lately, Java applets on web pages are not working for me on any of my browsers (Mozilla 1.4, IE 6.0, Netscape 4.79) under Windows XP. In each I get a pop-up window with title Java(TM) Plug-in Fatal Error and text: the Java Runtime Environment cannot