Output stream error, need urgent help

<%@page contentType="text/html" language="java"
         import="java.util.*, java.io.*,
            java.sql.*,
            javax.servlet.*,
            java.lang.*,
            Util.*,
            OJ.*"
%>
<!--Assumes that file name is in the request objects query Parameter -->
<%
     String filename               = "";
     String filepath               = "";
     String filenameDisplay                                                = "";
     //read the file name.
     if( (request.getParameter("downloadFilepath")!=null) || (!((request.getParameter("downloadFilepath")).equals(""))) )
          if(request.getParameter("downloadFilename")==null || (request.getParameter("downloadFilename")).equals(""))
               filename = "";
               filenameDisplay = "DownloadFile";
          else
               filename = request.getParameter("downloadFilename");
               filenameDisplay = filename;
          filepath = request.getParameter("downloadFilepath");
          File f = new File (filepath + filename);
          //set the content type(can be excel/word/powerpoint etc..)
          response.setContentType ("application/octet-stream");
          //set the header and also the Name by which user will be prompted to save
          response.setHeader ("Content-Disposition","attachment;filename=\""+filenameDisplay+"\"");
          InputStream in = new FileInputStream(f);
          ServletOutputStream outs = response.getOutputStream();
          int bit = 256;
          int i = 0;
          try {
               while ((bit) >= 0) {
                    bit = in.read();
                    outs.write(bit);
          catch (IOException ioe) {
          finally{
               outs.flush();
               outs.close();
               in.close();
%>
[\code]
This is what i use to download a file!
This is called from a jsp page using an anchor link (<a href>)
This throws an exception saying "getOutputStream() has already been called for this response"
why? I  have removed all the system outs but still there is an error                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

heres some servlet code to get you going
if you choose to go that way, not tested
package mywebapp;
import java.io.*;
import java.net.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class DownloadServlet extends HttpServlet {
    public void init(ServletConfig config) throws ServletException {
        super.init(config);
    public void destroy() {
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
        String filename = request.getParameter("downloadFilename");
        String filepath = request.getParameter("downloadFilepath");
        String filenameDisplay;
        // process inputs
        if( (filepath != null) || (!filepath.equals("")) ) {
            if(filename == null || (filename.equals("")) ){
                filename = "";
                filenameDisplay = "DownloadFile";
            else
                filenameDisplay = filename;
            InputStream in = null;
            ServletOutputStream out = null;
            try{
                // read file into byte array
                File f = new File(filepath + filename);
                int size = (int)f.length();
                byte[] ba = new byte[size];
                in = new FileInputStream(f);
                in.read(ba);
                // write out byte array
                response.setContentType("application/octet-stream");
                response.setHeader("Content-Disposition","attachment;filename=\""+filenameDisplay+"\"");
                out = response.getOutputStream();
                out.write(ba);
                out.flush();
            catch (IOException ioe) {
            finally{
                if(out != null)
                    out.close();
                if(in != null)
                    in.close();
        // i assume you have more code to go here
        // else{
    protected void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
        processRequest(request, response);
    protected void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
        processRequest(request, response);
    public String getServletInfo() {
        return "Short description";
}

Similar Messages

  • Report Server Error (NEED URGENT HELP!!)

    Dear Supporting Team & All Oracle Members,
    I was unable to run my report smoothly just
    recently. The error messages were as follows:
    "rwcgi60.exe - Application Error"
    "The instruction at "0x77f6754b" referenced
    memory of "0x016dle18". The memory could
    not be "read". Click on OK to terminate
    the application".
    For your info, development was by using
    Javascript with Netscape 4.7 as my default
    browser. Is there anything wrong with my
    setting? Before this, I've been using the
    same server for the past three (3) months
    but nothing happen. Kindly provide some
    solutions to this problem.
    Thanks in advance.
    null

    Dear Supporting Team & All Oracle Members,
    I was unable to run my report smoothly just
    recently. The error messages were as follows:
    "rwcgi60.exe - Application Error"
    "The instruction at "0x77f6754b" referenced
    memory of "0x016dle18". The memory could
    not be "read". Click on OK to terminate
    the application".
    For your info, development was by using
    Javascript with Netscape 4.7 as my default
    browser. Is there anything wrong with my
    setting? Before this, I've been using the
    same server for the past three (3) months
    but nothing happen. Kindly provide some
    solutions to this problem.
    Thanks in advance.
    null

  • BW error. Need urgent Help( I will give out full points).

    We have BW version 3.1 and content 3.3.
    We are doing loads to ODS and getting oracle partition error. It gives Oracle partition error ORA-14400. inserted partition key doesn't map to any parititon.
    The exception must either be prevented, caught within the procedure               
    "INSERT_ODS"                                                                     
    (FORM)", or declared in the procedure's RAISING clause.                          
    o prevent the exception, note the following:                                     
    atabase error text........: "ORA-14400: inserted partition key does not map to   
    any partition"                                                                   
    nternal call code.........: "[RSQL/INSR//BIC/B0000401000 ]"                      
    lease check the entries in the system log (Transaction SM21).                                                                               
    ou may able to find an interim solution to the problem                           
    n the SAP note system. If you have access to the note system yourself,           
    se the following search criteria:                                                
    The termination occurred in the ABAP program "GP3WRFMGVS1D8IW16LLGSL4QQKH " in       
    "INSERT_ODS".                                                                       
    he main program was "SAPMSSY1 ".                                                                               
    he termination occurred in line 41 of the source code of the (Include)              
    program "GP3WRFMGVS1D8IW16LLGSL4QQKH "                                              
    f the source code of program "GP3WRFMGVS1D8IW16LLGSL4QQKH " (when calling the       
    editor 410).                                                                        
    rocessing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in      
    the                                                                               
    rocedure "INSERT_ODS" "(FORM)" but was not handled locally, not declared in         
    the                                                                               
    AISING clause of the procedure.                                                     
    he procedure is in the program "GP3WRFMGVS1D8IW16LLGSL4QQKH ". Its source code      
    starts in line 21                                                                   
    f the (Include) program "GP3WRFMGVS1D8IW16LLGSL4QQKH ".                                                                               
    Please help me guys. I will award points for good answers.

    Dear Sir,
    Now I have got the problem like yours (load to ODS and ORACLE partition error ORA-14400 with INSERT_ODS). Tell me, please - did you solve this problem?
    Can you recommend me something? What did you do with partitions?
    Help me, please - I need urgent help too.
    GLEB ([email protected])
    P.S. Sorry for my English, I haven’t got any language practice for a long time.

  • Updating to MAXDB 7.5.00.29- user logon failed error! Urgent Help

    Hi
    I am trying to update MaxDB 7.5.00 to MaxDB 7.5.00.29
    on WAS 6.40. When I run the update via SDBUPD, I get the error "cannot establish database instance". i have looked in the log files(MaxDBUpdate_install-16.07.2005-16.13.log)
    and the error is
    <b>user_logon failed
    ERR
    -24950,ERR_USRFAIL: user authorization failed</b>
    I am following "MaxDB update SAP note 735598" and under Windows section it states I should call the SDBUPD from the cmd prompt as follows:
    SDBUPD -d <database_name> -u <dbm_userid>,<password>
    so i run
    <b>SDBUPD -d J2E -u Administrator,portal</b>
    I assume <dbm_userid> is the default userid which is Admisitrator when installing WAS and MAXDB. I ahve not changed the default during the installation.
    I have tried <b>SAPJ2EDB</b> as dmb_userid as well as <b>J2EE_Admin</b>, they still give the same error.
    Any help on this?
    Need urgent help
    Much appreciated
    RD
    Message was edited by: RD

    Hi
    Thank you for your reply!!
    I used control,control as user,password. This worked 100%, but then it reached to a point where it gave this error, i get this from the log file:
    <b>STDERR: test pgm/sqltcp.dll failed: cannot extract pgm/sqltcp.dll: sharing violation during open of existing file</b>
    What causes this error, and how can i get pass this ?
    I assume some instance is started, but before I ran the SDBUPD, I stopped the J2E under sap system in SAPMMC.
    Below is the output it gave when i ran SDBUPD from cmd prompt, I have bolded where the error starts:
    D:\UpdatesPatches\MaxDB\maxdb-server-win-32bit-i386-7_5_00_29>SDBUPD -d J2E -u control,control
            MaxDB INSTANCE UPDATE
    starting installation Mo, Jul 18, 2005 at 08:57:11
    operating system: Windows I386 NT 5.2 Service Pack 1
    callers working directory: D:/UpdatesPatches/MaxDB/maxdb-server-win-32bit-i386-7
    500_29
    installer directory: D:/UpdatesPatches/MaxDB/maxdb-server-win-32bit-i386-7_5_00_
    29
    archive directory: D:/UpdatesPatches/MaxDB/maxdb-server-win-32bit-i386-7_5_00_29
    beginning to check sap db instances
    start new instance update
    finding instance type...
    finding starting release...
    finding migration strategy...
    looking for running instances...
    checking paramfile modifications...
    looking for domain user...
    checking data consistency for database migration...
    switch database state to OFFLINE
    checking SAP DB instance "J2E" successfully Mo, Jul 18, 2005 at 08:57:23
    starting preparing phase of package Base 7.5.00.29 32 bit
    update release check... ok
    update binary magic check... ok
    checking interferences to other packages... ok
    collecting data finished:
    independent data path: d:/sapdb/data
    independent program path: d:/sapdb/programs
    start extraction test run of "D:/UpdatesPatches/MaxDB/maxdb-server-win-32bit-i38
    6-7_5_00_29/SDBBAS.TGZ"
    <b>test pgm/sqltcp.dll failed: cannot extract pgm/sqltcp.dll: sharing violation dur
    ing open of existing file
    following programs are running:
    dbmsrv.exe [pid = 876]
    dbmsrv.exe [pid = 2496]
    dbmsrv.exe [pid = 1460]
    wahttp.exe [pid = 1420]
    dbmsrv.exe [pid = 1188]</b>

  • R12 AR Invoice raxinv  -Customization (add columns) - need urgent help

    Hi,
    I need urgent help in customization of AR invoice report (raxinv) in R12. I am doing report customization for Brazil. As soon as I add one more column in report common query, build query and main query Q_invoice. Report changes to new variables in report editor q_invoice itself for example from remit_to_address_id to remit_to_address_id1 , previous_customer_id to previous_customer_id1 and start giving error that original variables e.g. remit_to_address_id , previous_customer_id are not defined in the query. Variable names and xml tags are also different from each other. even after trying to fix it, error persist.
    Thanks
    Anju

    Hi,
    I need urgent help in customization of AR invoice report (raxinv) in R12. I am doing report customization for Brazil. As soon as I add one more column in report common query, build query and main query Q_invoice. Report changes to new variables in report editor q_invoice itself for example from remit_to_address_id to remit_to_address_id1 , previous_customer_id to previous_customer_id1 and start giving error that original variables e.g. remit_to_address_id , previous_customer_id are not defined in the query. Variable names and xml tags are also different from each other. even after trying to fix it, error persist.
    Thanks
    Anju

  • Need urgent help with HSDIO hardware timing

    Hi everyone,
    I need urgent help regarding HSDIO hardware timing. I've been working in a project which generating serial ramp using HSDIO pxie device. 
    I'm using clock rate 40MHz and generating 14 bit of boolean for each step of ramp. And I have to generate simply 256 steps ramp.
    Which means, 256 (steps) x 14 (boolean array) x 25 ns (period of 1 boolean value) = 89,6 ns.
    What I'm doing right now is with using index of FOR loop as my input data (converting the index into 14bit boolean), then write into pxie device in every iteration,
    which means, my data is getting into output in every 1ms time, right? (I'm using windows)
    And I want to be able to generate faster than that. 
    How can I prewrite my 256 steps ramp, then write them all at once into pxie device. I'm really stuck here.
    In the picture can you see how I do the write into device in every iteration of FOR Loop.
    Regards,
    Yan.

    hi, thanks for responding.
    with using example of dynamic generation with script, I can manage to generate the ramp with controllable delay (generate the whole waveform, including delay with script command, then write to the card).
    But I still have 1 question, I can test the output of the generation using oscilloscope and cant see the start delay (I'm writing delay at the start, before generating the ramp). My signal generated at 0 sec.
    How can I check this start delay? is there any good example delivered with Labview to check this generation? Somehow I cant use the "dynamic generation and acquisition" example to see my generation (cant figure out how to capture the generated signal).
    regards,
    Yan.

  • Need Urgent Help: Solaris fails to come up after applying patch 120012-14

    Hello All,
    I really need urgent help , as I am in really big problem. Today I applied patches , the last patch I applied was 120012-14.
    After this I rebooted Solaris and it is not coming up now. It is giving me following error, it reboots again and again
    nel/misc/sparcv9/hook: undefined symbol 'netstack_unregister'
    WARNING: mod_load: cannot load module 'hook'
    /kernel/misc/sparcv9/hook: undefined symbol 'netstack_register'
    /kernel/misc/sparcv9/hook: undefined symbol 'netstack_unregister'
    WARNING: mod_load: cannot load module 'hook'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_register'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_event_remove'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_register'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_unregister'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_family_add'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_family_remove'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_unregister'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_find_by_stackid'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_event_add'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_rele'
    WARNING: mod_load: cannot load module 'neti'
    WARNING: neti: unable to resolve dependency, module 'misc/hook' not found
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_register'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip_config'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_impl'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_delete_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip'
    /kernel/drv/sparcv9/ip: undefined symbol 'hook_run'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_cred'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstackid_to_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_create_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_stackid'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_rele'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_hold'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_init'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_fini'
    WARNING: mod_load: cannot load module 'ip'
    WARNING: neti: unable to resolve dependency, module 'misc/hook' not found
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_register'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip_config'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_impl'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_delete_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip'
    /kernel/drv/sparcv9/ip: undefined symbol 'hook_run'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_cred'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstackid_to_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_create_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_stackid'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_rele'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_hold'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_init'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_fini'
    WARNING: mod_load: cannot load module 'ip'
    WARNING: ip: unable to resolve dependency, module 'misc/hook' not found
    strplumb: can't install module drv/ip, err -1
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'cons_tem_disable'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_inverses'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'consmode'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_hide_cursor'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_pos'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_term_font_size'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_size'
    WARNING: mod_load: cannot load module 'consconfig_dacf'
    /kernel/misc/sparcv9/consconfig: undefined symbol 'dynamic_console_config'
    WARNING: mod_load: cannot load module 'consconfig'
    WARNING: consconfig: unable to resolve dependency, module 'dacf/consconfig_dacf' not found
    panic[cpu3]/thread=180e000: mod_hold_stub: Couldn't load stub module misc/consconfig
    000000000180b890 genunix:mod_hold_stub+1f0 (0, 185fc00, 18acbf8, 60002cff370, 1817328, 0)
    %l0-3: 0000000001843b18 0000060003308000 0000000001811ce8 0000000000000000
    %l4-7: 0000000000000000 0000000000000064 ffffffffffffffff 0000000000000000
    000000000180b940 unix:stubs_common_code+30 (1f037ce7fb0, e164, 64000000, 0, 1ef800, 0)
    %l0-3: 000000000180b209 000000000180b2e1 000000337e000000 0000000000000001
    %l4-7: 0000000000000000 0000000001817338 0000000000000000 0000060002ccf6c0
    000000000180ba10 genunix:main+134 (18ad050, 18a8c00, 1836500, 1861800, 183b400, 1814000)
    %l0-3: 0000000070002000 0000000000000001 0000000000000000 0000000000000002
    %l4-7: 00000000018b0280 00000000018b0000 00000000018ad060 00000000018ad000
    syncing file systems... done
    skipping system dump - no dump device configured
    rebooting...
    Please help me what should I do. I have gone through all forums and mailing lists but couldnt find pin point solution.
    Thanks,
    Farhan
    Edited by: rozzx on Jul 5, 2008 1:48 AM

    Solve this. Patch just screwed the meta devices, changed vfstab in single user mod and it booted fine.

  • Need Urgent Help. ORA-12500 with no reason

    I need urgent help.
    I have 8.1.7.2.1 on Win2K.
    I get ORA-12500 error when trying to connect oracle instance. This problem begin to arise only when number of sessions reach a number about 200. At the same time there is no definite boundary for it. Once it happened when there were 216 session, then 196, then 206.
    There rarely (1/100) I get ORA-12514 and after again ORA-12500. Once I got ORA-12600.
    What it might be you think? It can't be a problem in listener.ora or in tnsnames.ora because it works fine if number of sessions is about 100. It tried to restart tnslistener (from lsnrctl and the service) and restarted database (but not the service). I did it different in sequences, but didn't help. What should I do? Is it a known bug?

    I need urgent help.
    I have 8.1.7.2.1 on Win2K.
    I get ORA-12500 error when trying to connect oracle instance. This problem begin to arise only when number of sessions reach a number about 200. At the same time there is no definite boundary for it. Once it happened when there were 216 session, then 196, then 206.
    There rarely (1/100) I get ORA-12514 and after again ORA-12500. Once I got ORA-12600.
    What it might be you think? It can't be a problem in listener.ora or in tnsnames.ora because it works fine if number of sessions is about 100. It tried to restart tnslistener (from lsnrctl and the service) and restarted database (but not the service). I did it different in sequences, but didn't help. What should I do? Is it a known bug? bash-2.03$ oerr ora 12500
    12500, 00000, "TNS:listener failed to start a dedicated server process"
    // *Cause:  The process of starting up a dedicated server process failed.
    // The executable could not be found or the environment may be set up
    // incorrectly.
    // *Action: Turn on tracing at the ADMIN level and reexecute the operation.
    // Verify that the ORACLE Server executable is present and has execute
    // permissions enabled. Ensure that the ORACLE environment is specified
    // correctly in LISTENER.ORA. The Oracle Protocol Adapter that is being
    // called may not be installed on the local hard drive. Please check that
    // the correct Protocol Adapter are successfully linked.
    // If error persists, contact Oracle Customer Support.
    There is not enough info to go on but the problem seems to be either in the listener.ora
    or tnsnames.ora. Did you make any changes before this started occurring?
    William

  • Need Urgent help, I have made partition hard drive in my mac book and using OS mac

    Need Urgent help, I have made partition hard drive in my mac book and using OS mac & Window8 seperately... for couple of days it works great for both window & OS mac But nowadays, my pc gets restart automatically while using window & even I cant access to my Mac OS...........  I got some error in window (error80070003) ...>>>>> Now how can I format whole drive & recover my Mac book OS.without boot disk.

    I can't find that model. If you open System Profiler in the Utilities folder look for the Model Identifier over in the right hand display. What do you find for the model ID? If your computer supports Internet Recovery here's what to do:
    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer. If Mavericks is not installed, then you can reinstall it by re-downloading the Mavericks installer.
    You will need to use Boot Camp Assistant in order to create a new Windows partition, then reinstall Windows.

  • Iphone 5 changes time randomly.. need urgent help!!

    hi everybody .. i need urgent help to fix the problem of my iphone 5 ( IOS 7, Vodafone Germany) ..  2 weeks ago i noticed that the time on iphone was completely wrong and not related even to other time zones .. sometimes it freezed at the same minute for 1 hour .. sometimes it ran anticlockwise.. i switched off the automatic time setting..i made reset and erased all contents and reloaded all configuration from iCloud..the same problem.. i registered it as new iPhone .. no improvement... i switched off the WIFI..3G...i made reset using iTunes .. same error. same error... i took it to Apple store in Dresden- Germany and demostrated the problem there .. they told me that the problem beyond their knowledge and i have to contact apple support ... i sent the iPhone to Apple support in Netherland ... they sent it back on the next day coz they were not able to reproduce the problem...after regestering the iPhone again with my ID.. the same problem ... it's catastrophic coz many functions are time dependent (imessege, Calender, Email, etc.. )..and i cannot rely on my iPhone anymore... has anybody encountered the same problem in germany... and what is the solution?

    If the phone is failing to charge, then there are three possibilities -
    1) The charging cable is defective - does it work with anything else?
    2) The power source is defective - unlikely since you have tried different ones with same result.
    3) The phone has a hardware failure - which means you need to take to an Apple store or call them up for advice.

  • Need urgent help with Ifs1.1 on Solaris

    We have installed IFS 1.1 with Oracle 8.1.7 on a three tier System (two Suns). We use JWS as WebServer. When we start IFS and JWS everything seems to work fine. But after some time (irregulary) we are not able to contact the JSP-Sites via a bowser. After restarting JWS, everything works fine for some time.
    Sometimes it happens (about one times a day), that the whole JWS crashes (JWS-Admin doesn't work). So we have to restart the whole IFS.
    What can be the problem? We need urgent help, because the deadline for our project is Wednesday.
    By the way:
    Where do I have to start CTX on the IFS- or the Oracle-Side?
    null

    Yes, we tried the Oracle HTTP - Server, but we weren4t able to get it to work. We didn4t get our JSP-Files to work with it. But that is another issue. I think it4s not a problem of JWS, but IFS.
    Additionally it is strange, that we are still able to connect to the database via SqlPlus.
    IFS works fine for about 15 minutes, than it crashes, nothing works anymore. We found following errors in the IfsAgents.log:
    maybe it can help?!
    Mon Dec 04 23:12:20 CET 2000
    Server STARTED: IfsAgents(19944) not managed
    Attempting to load agent EventExchangerAgent
    Agent EventExchangerAgent loaded
    Server STARTED: IfsProtocols(19945) not managed
    Attempting to start agent EventExchangerAgent
    EventExchangerAgent: Start request
    Agent EventExchangerAgent started
    Attempting to load agent ExpirationAgent
    Agent ExpirationAgent loaded
    EventExchangerAgent: starting timer
    Attempting to start agent ExpirationAgent
    ExpirationAgent: Start request
    Agent ExpirationAgent started
    Attempting to load agent GarbageCollectionAgent
    Agent GarbageCollectionAgent loaded
    ExpirationAgent: computed initial delay (in ms) is: 10024504
    ExpirationAgent: starting timer
    Attempting to start agent GarbageCollectionAgent
    GarbageCollectionAgent: Start request
    Agent GarbageCollectionAgent started
    Attempting to load agent ContentGarbageCollectionAgent
    Agent ContentGarbageCollectionAgent loaded
    GarbageCollectionAgent: computed initial delay (in ms) is: 11816890
    GarbageCollectionAgent: starting timer
    Attempting to start agent ContentGarbageCollectionAgent
    ContentGarbageCollectionAgent: Start request
    Agent ContentGarbageCollectionAgent started
    Attempting to load agent DanglingObjectAVCleanupAgent
    Agent DanglingObjectAVCleanupAgent loaded
    ContentGarbageCollectionAgent: starting timer
    Attempting to start agent DanglingObjectAVCleanupAgent
    DanglingObjectAVCleanupAgent: Start request
    Agent DanglingObjectAVCleanupAgent started
    Attempting to load agent OutboxAgent
    Agent OutboxAgent loaded
    DanglingObjectAVCleanupAgent: computed initial delay (in ms) is: 5500105
    DanglingObjectAVCleanupAgent: starting timer
    Attempting to start agent OutboxAgent
    OutboxAgent: Start request
    Agent OutboxAgent started
    Attempting to load agent ServiceWatchdogAgent
    Agent ServiceWatchdogAgent loaded
    OutboxAgent: Done processing
    Attempting to start agent ServiceWatchdogAgent
    ServiceWatchdogAgent: Start request
    Agent ServiceWatchdogAgent started
    Attempting to load agent QuotaAgent
    Agent QuotaAgent loaded
    ServiceWatchdogAgent: Initializing ServerWatchdogTable with 9 entries
    ServiceWatchdogAgent: starting timer
    Server STARTED: FtpServer(20082) managed by IfsProtocols(19945)
    ServiceWatchdogAgent: New Server being watchdogged
    Attempting to start agent QuotaAgent
    QuotaAgent: Start request
    Agent QuotaAgent started
    QuotaAgent: starting timer
    Server STARTED: CupServer(20124) managed by IfsProtocols(19945)
    ServiceWatchdogAgent: New Server being watchdogged
    Server STARTED: ImapServer(20130) managed by IfsProtocols(19945)
    ServiceWatchdogAgent: New Server being watchdogged
    Server STARTED: SmtpServer(20150) managed by IfsProtocols(19945)
    ServiceWatchdogAgent: New Server being watchdogged
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server Detected in checkServer
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Unlocked Server being investigated
    ServiceWatchdogAgent: Freeing unlocked server 19687
    ServiceWatchdogAgent: Freeing unlocked server 19666
    Server STOPPED: CupServer(19687) managed by IfsProtocols(19519)
    ServiceWatchdogAgent: Freeing unlocked server 19723
    ServiceWatchdogAgent: Freeing unlocked server 19520
    Server STOPPED: FtpServer(19666) managed by IfsProtocols(19519)
    Server STOPPED: SmtpServer(19723) managed by IfsProtocols(19519)
    ServiceWatchdogAgent: Freeing unlocked server 19519
    Server STOPPED: IfsAgents(19520) not managed
    ServiceWatchdogAgent: Freeing unlocked server 19712
    Server STOPPED: IfsProtocols(19519) not managed
    Server STOPPED: ImapServer(19712) managed by IfsProtocols(19519)
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    ServiceWatchdogAgent: Freed Server removed from watchdog list
    QuotaAgent: Timer event: 0 active; 0 exceeded
    ContentGarbageCollectionAgent: Freed 5 unreferenced ContentObjects
    QuotaAgent: Timer event: 0 active; 0 exceeded
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-11012: Unable to get events from other services
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException in checkForDeadServices():
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException in handle loop; continuing:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    ServiceWatchdogAgent: IfsException publishing timer details:
    ServiceWatchdogAgent: oracle.ifs.common.IfsException: IFS-10651: Unable to begin transaction
    oracle.ifs.common.IfsException: IFS-10603: Unable to set database savepoint
    java.sql.SQLException: ORA-03114: not connected to ORACLE
    null

  • I have a video in excellent quality (1280x720 23,976 fps) I burn the dvd in encore cs6 with hd menu and I get pixelated.   I've done transcoding but It downgrade to 480   I need urgent help.

    I have a video in excellent quality (1280x720 23,976 fps) I burn the dvd in encore cs6 with hd menu and I get pixelated.   I've done transcoding but It downgrade to 480   I need urgent help.

    Hi,
    first, sorry if my english sucks jajaa i speach spanish, havent practice my english for a while.
    first i edited my video in premier cc
    sequence 1280X720, 59,94 fps
    48000hz - stereo
    the i linked it with dynamik link to after, make some color correction, etc etc etc
    i renderd in quicktime animation
    my video looks fine in my computer, but when i send my .mov video to encore (cs6) in a HD MENU and standard menú, the image sucks.
    i have done the transcoding in encore, but i doesnt work either. i dont know what else to do.

  • Need urgent help!!!! (combine prompt and formula)

    Hi,
    I am using Oracle Business Intelligence 10.1.3.3.2, and creating some reports from answers. I desperately need to combine
    prompt and formula on some column.
    I need to use prompt in my formula on some column.
    Need urgent help !

    You can use the presentation variables to pass the value of the prompt into the report or any column formula.
    In the dashboard prompt you see an option called "Set Variable" where and you need to give a name to the variable.(Say Var_value)
    Now the value of the variable can be simply referenced using the syntax @{var_name}{10}. Here '10' being the defualt value which is optional you can simply reference using @{var_name} and you have the value of the prompts passed.
    Hope it works
    Thanks
    Prash

  • Need urgent help to expend a BB school group numbers of members...

    Need urgent help to expend a BB school group....The group can only accept 30 members and the school student using BB are about 6000 students that are interested in joining the group....
    ...Moyosoreoluwa...

    I believe there is a hard limit of 30 people in a BBM group. 

  • I need urgent help to remove unwanted adware from my iMac. Help!

    I need urgent help to remove unwanted adware from my iMac. I have somehow got green underline in text ads, pop up ads that come in from the sides of the screen and ads that pop up selling similar products all over the page wherever I go. Its getting worse and I have researched and researched to no avail. I am really hestitant to download any software to remove whatever it is that is causing this problem. I have removed and reinstalled chrome. I have cleared Chrome and Safari cookies. Checked extensions, there are none to remove. I need to find an answer on how to get rid of these ads. Help please!

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Application Support/VSearch
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchAgents/com.vsearch.agent.plist
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. It must be said that this failure of oversight is inexcusable and has seriously compromised the value of Gatekeeper and the Developer ID program. You cannot rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

Maybe you are looking for

  • How do I use Internet accounts to add accounts to mail in mavericks

    I used migration Assistant to Migrate to a new Imac(late 2013), The new machine was 10.8.4 so the very first thing I did was add an account so I could update. I suspect this was the root cause of my problem because then when I migrated the account I

  • Lost access to my keychain

    I've got a seriously irritating problem. For some reason today my keychain access seized up entirely. All the entries are there in my login keychain but none of the passwords are accessible. Clicking "Show password:" pops up an error message "Access

  • Compare columns SQL select statement (easy question)

    Hi, I need to write a query which compares every account's products to see if they match up with a corresponding service. Here is an example of my dataset. Account_no products service 0001 prod1, prod2,prod3 serv1, serv2,serv3 0002 prod1,prod2,prod4

  • IOS-XRv and HSRP: Supported?

    Hey gang - I'm building a virtual lab within a KVM hypervisor, and it includes 2 XRv images tied together across a VM switch image (Arista vEOS, but that's unimportant).  The L2 connectivity is clearly there between the two routers: RP/0/0/CPU0:r2#sh

  • Copy FTP files according to modified date and time

    Hi all, I am creating an application where I need to copy the latest file created only from a remote FTP location. So for example, if my remote/ftp location contain some folders and some files, it would list only the file which was modified recently.