Why the serving servlet start to download on another server

Dear All,
i am trying to upload the file to database from a individual jsp(upload.jsp). which is calling the Servlet(FileUploadServlet) which return the attachment no which i updated with my other data to database.
it is working fine on apache serverBut as i tried this code on Oracle App Server 10gR2 which is my actual implementaion server.it's working fine accept one thing it also give me the screen which says to save or cancel the FileUploadServletPlease suggest me why this is being happeningyou can also review the code.
Regards,
Manoj Rajput

//upload.jsp
<%@ page contentType="text/html;charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Ajax File Upload</title>
<script language="javascript">
var max_no=0;
var req;
function ajaxFunction()
   var url = "../servlet/FileUploadServlet";
   if (window.XMLHttpRequest)        // Non-IE browsers
      req = new XMLHttpRequest();
      req.onReadyStateChange = processStateChange;
      try
         req.open("GET", url, true);
      catch (e)
            alert(e);
      req.send(null);
   else if (window.ActiveXObject)    // IE Browsers
      req = new ActiveXObject("Microsoft.XMLHTTP");
      if (req)
             req.onReadyStateChange = processStateChange;
            req.open("GET", url, true);
            req.send();
function processStateChange()
   if (req.readyState == 4)
      if (req.status == 200) // OK response
          //alert(req.responseText);
          max_no=req.responseText;
      else
            alert(req.statusText);
function show(va)
     if(va=="unloading")
          window.opener.document.forms['regis'].elements['temp'].value=max_no;
</script>
</head>
<body onLoad="show('loading');" onUnload="show('unloading');">
    <form id="myForm" enctype="multipart/form-data" method="POST" action="../servlet/FileUploadServlet" onSubmit="ajaxFunction()">
   <input type="file" name="txtFile" id="txtFile" /><br />
   <input type="submit" id="submitID" name="submit" value="Upload" />
</form>
<img id="Wait_Image" displayafter="1" src="images/11.gif" mce_src="images/11.gif" style="cursor:pointer;visibility:hidden; ">
</div>
</body>
</html>
//FileUploadServlet
//both these package name are commented because jsp was not able to get them on the path so i use this directlly from root
//package com.psclistens.ajax.fileupload;
package wflow;
import javax.servlet.Servlet;
import javax.servlet.http.HttpServlet;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Iterator;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.FileItemFactory;
import org.apache.commons.fileupload.FileUploadException;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import java.sql.*;
import oracle.sql.*;
import java.io.*;
* This is a File Upload Servlet that is used with AJAX
* to monitor the progress of the uploaded file.
public class FileUploadServlet      extends HttpServlet implements Servlet
     private static final long serialVersionUID = 2740693677625051632L;
     protected int max_no=0;
     protected String msg="";
     protected String  contype="";
     public FileUploadServlet()
     super();
   protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
          response.setContentType("text/plain;charset=Big5");
          response.setHeader("Pragma", "No-cache");
          response.setHeader("Cache-Control", "No-cache");     
          doPost(request,response);
         PrintWriter out = response.getWriter();
          out.println(msg);
          out.flush();
          out.close();
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
          // create file upload factory and upload servlet
          FileItemFactory factory = new DiskFileItemFactory();
          ServletFileUpload upload = new ServletFileUpload(factory);
          Connection con=null;
          oracle.sql.BLOB myBlob = null;
          PreparedStatement pstmt=null;
          Statement stmt=null;
          ResultSet rs=null;
          List uploadedItems = null;
          FileItem fileItem = null;
          try{
          Class.forName("oracle.jdbc.driver.OracleDriver");
          con=DriverManager.getConnection("jdbc:oracle:thin:@10.129.1.14:1521:igfl","intrappsx","intrappsx");
          stmt=con.createStatement();
          String query="SELECT nvl(max(sugg_no),0)+1 FROM temp_attach";
          rs=stmt.executeQuery(query);
          rs.next();
          max_no=rs.getInt(1);
          msg="";
          msg=String.valueOf(max_no);
          }catch(Exception e){}
          try
               // iterate over all uploaded files
               uploadedItems = upload.parseRequest(request);
               Iterator i = uploadedItems.iterator();
               while (i.hasNext())
                    fileItem = (FileItem) i.next();
                    if (fileItem.isFormField() == false)
                         if (fileItem.getSize() > 0)
                              File uploadedFile = null;
                              String myFullFileName = fileItem.getName(),myFileName = "",slashType = (myFullFileName.lastIndexOf("\\") > 0) ? "\\" : "/"; // Windows or UNIX
                              int startIndex = myFullFileName.lastIndexOf(slashType);
                              // Ignore the path and get the filename
                              myFileName = myFullFileName.substring(startIndex + 1, myFullFileName.length());                              
                              myBlob = oracle.sql.BLOB.createTemporary(con, false, oracle.sql.BLOB.DURATION_SESSION);
                               InputStream f_in = fileItem.getInputStream();
                              byte buffer[]=new byte[myBlob.getBufferSize()];
                               while(f_in.read(buffer)>0)
                                   myBlob.putBytes(myBlob.length()+1,buffer);     
                              if(myBlob!=null && !(myBlob.equals("null")) &&  !(myBlob.equals("")))
                                         String     query2 = "insert into temp_attach(SUGG_NO, ATTACHMENT, ATT_TYP, CREAT_USR_ID,file_name, CREAT_DT) values(?,?,?,?,?,sysdate)";               
                                         pstmt = con.prepareStatement(query2);               
                                          pstmt.setInt(1,max_no);               
                                           pstmt.setBlob(2, (java.sql.Blob)myBlob);
                                         //pstmt.setBinaryStream(2,f_in,(int)(new File(myFileName)).length());
                                         contype=fileItem.getContentType();
                                         if(contype.equals("application/x-zip-compressed"));
                                              contype="application/x-zip";
                                         pstmt.setString(3,contype);
                                         pstmt.setString(4,"3133");
                                         pstmt.setString(5,myFileName);
                                            int h=pstmt.executeUpdate();
          catch (FileUploadException e)
               e.printStackTrace();
          catch (Exception e)
               e.printStackTrace();
}

Similar Messages

  • Why the Adobe Flash Player's download is stuck at 25% for hours?

    Hello! I have a MacBook Air. When I try to install Adobe Flash Player, the download stops for hours at 25 or 30%. Could someone help me?

    Thanks a lot!
    Le 23 mars 2015 à 17:13, m_vargas <[email protected]> a écrit :
    Why the Adobe Flash Player's download is stuck at 25% for hours?
    created by m_vargas <https://forums.adobe.com/people/m_vargas> in Installing Flash Player - View the full discussion <https://forums.adobe.com/message/7333434#7333434>
    Hi,
    Please try the offline installer posted at the bottom of the Installation problems | Flash Player | Mac <https://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-mac.html> page, in the 'Still having problems' section.
    Maria
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7333434#7333434 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7333434#7333434
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Installing Flash Player by email <mailto:[email protected].hosted.jivesoftware.com> or at Adobe Community <https://forums.adobe.com/choose-container.jspa?contentType=1&containerType=14&container=46 36>
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624 <https://forums.adobe.com/thread/1516624>.

  • Why the listener cannot start? All seems OK

    Why the listener cannot start? It seems no problems.
    [oracle@localhost database]$ lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 18-JUL-2009 10:46:33
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.0.109)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    [oracle@localhost database]$ lsnrctl start listener
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 18-JUL-2009 10:47:00
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Starting /u01/app/oracle/product/10.2.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    System parameter file is /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Log messages written to /u01/app/oracle/product/10.2.0/db_1/network/log/listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.109)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    TNS-12547: TNS:lost contact
    TNS-12560: TNS:protocol adapter error
    TNS-00517: Lost contact
    Linux Error: 104: Connection reset by peer
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.0.109)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    [oracle@localhost admin]$ cat listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = db1)
    (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
    (SID_NAME = db1)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.109)(PORT = 1521))
    [oracle@localhost admin]$ cat tnsnames.ora
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/10.2.0/db_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    DB1 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.109)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = db1)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    [oracle@localhost admin]$ ifconfig
    eth0 Link encap:Ethernet HWaddr 00:13:21:C7:21:F1
    inet addr:192.168.0.109 Bcast:192.168.0.255 Mask:255.255.255.0
    inet6 addr: fe80::213:21ff:fec7:21f1/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:11748 errors:0 dropped:0 overruns:0 frame:0
    TX packets:3354 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:792680 (774.1 KiB) TX bytes:155584 (151.9 KiB)
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:8335 errors:0 dropped:0 overruns:0 frame:0
    TX packets:8335 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:3326132 (3.1 MiB) TX bytes:3326132 (3.1 MiB)
    peth0 Link encap:Ethernet HWaddr FE:FF:FF:FF:FF:FF
    inet6 addr: fe80::fcff:ffff:feff:ffff/64 Scope:Link
    UP BROADCAST RUNNING NOARP MTU:1500 Metric:1
    RX packets:11747 errors:0 dropped:0 overruns:0 frame:0
    TX packets:3354 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:839608 (819.9 KiB) TX bytes:225672 (220.3 KiB)
    Interrupt:17
    vif0.0 Link encap:Ethernet HWaddr FE:FF:FF:FF:FF:FF
    inet6 addr: fe80::fcff:ffff:feff:ffff/64 Scope:Link
    UP BROADCAST RUNNING NOARP MTU:1500 Metric:1
    RX packets:3354 errors:0 dropped:0 overruns:0 frame:0
    TX packets:11748 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:155584 (151.9 KiB) TX bytes:792680 (774.1 KiB)
    xenbr0 Link encap:Ethernet HWaddr FE:FF:FF:FF:FF:FF
    UP BROADCAST RUNNING NOARP MTU:1500 Metric:1
    RX packets:11618 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:614983 (600.5 KiB) TX bytes:0 (0.0 b)

    Thank you
    You are right. Doing according to you conduct, the Listener is started. But EM console cannot be started any more.
    How to do next?
    [oracle@host admin]$ emctl start dbconsole
    TZ set to US/Eastern
    Exception in getting local host
    java.net.UnknownHostException: host: host
    at java.net.InetAddress.getLocalHost(InetAddress.java:1191)
    at oracle.sysman.emSDK.conf.TargetInstaller.getLocalHost(TargetInstaller.java:4977)
    at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:3758)
    Exception in getting local host
    java.net.UnknownHostException: host: host
    at java.net.InetAddress.getLocalHost(InetAddress.java:1191)
    at oracle.sysman.emSDK.conf.TargetInstaller.getLocalHost(TargetInstaller.java:4977)
    at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:3758)
    OC4J Configuration issue. /u01/app/oracle/product/10.2.0/db_1/oc4j/j2ee/OC4J_DBConsole_null_db1 not found.
    Edited by: junez on Jul 18, 2009 9:05 AM

  • I would like to ask whether anyone knows of any true explanation for why the iPhone 5 starts at $199 in the US and £529 in the UK? That is more than a £400 discrepancy...

    I would like to ask whether anyone knows of any true explanation for why the iPhone 5 starts at $199 in the US and £529 in the UK? That is more than a £400 discrepancy...
    iPhones are duty free and even with a $50 shipping fee it would only come to £185.75 including VAT at the current exchange rate.

    How much a month is the standard 24month contract with AT&amp;T or one of the other American providers that makes the handset cost $199?
    Here's the cheapest plans available from the big three:
    The plans start there and can run up to $230/mo (for AT&T).

  • Why the server side behavior of LoadVars() not consistent?

    In my server side script for FMS app,there is such code:
    var lv = new LoadVars();
    var params = new LoadVars();
    lv.send("http://mysite.com/registerVideo.php", params, "POST");
    The expected behavior is that the request will be as if sent directly from the browser,thus SESSION information is not lost ,which is the exact behavior for my computer.
    But it's not the case for my boss --- session information is lost for him.
    Why the server side behavior of LoadVars() not consistent?
    What do I need to do to make sure session information is not lost @ server side ?

    Oops,why this feature has always worked like charm for me only??
    Below is the server side request caught from firebug:
    POST registerVideo.php
    http://mysite.net/registerVideo.php
    200 OK
    mysite.net
    115ms
    ParamsHeadersPostPutResponseCacheHTML
    Response Headersview source
    Server
    nginx/0.7.67
    Date
    Tue, 29 Mar 2011 14:45:31 GMT
    Content-Type
    text/html
    Transfer-Encoding
    chunked
    Connection
    keep-alive
    Vary
    Accept-Encoding
    X-Powered-By
    PHP/5.2.14
    Expires
    Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control
    no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Pragma
    no-cache
    Content-Encoding
    gzip
    Request Headersview source
    Host
    mysite.net
    User-Agent
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.13) Gecko/20100914 Firefox/3.5.13
    Accept
    text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language
    en-us,en;q=0.5
    Accept-Encoding
    gzip,deflate
    Accept-Charset
    ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive
    300
    Connection
    keep-alive
    Cookie
    pass=angel333; user=liying123; PHPSESSID=8m966mbd070tsdqqodnncesbj5
    Source
    Referer: http://mysite.net/flash/main.swf?sessionId=8m966mbd070tsdqqodnncesbj5 Content-type: application/x-www-form-urlencoded Content-length: 35 name=test&record=live&action=insert

  • Hello,  I'd like to know why the fat contours starts 100.000pts and why I have to close and reopen the software to have the contours for 1 pt?

    hello,  I'd like to know why the fat contours starts 100.000pts and why I have to close and reopen the software to have the contours for 1 pt?

    Hi BoxeTv,
    In addition, please try to reset the preferences.
    http://helpx.adobe.com/illustrator/using/setting-preferences.html#setting_illustrator_pref erences
    Hope this helps.
    Please let us know in case it doesn't worked.
    Regards,
    Sumit Singh

  • When I am connected to the WiFi, my apps cannot be download. Once I had disable the wifi and connect directly to the service provider, the apps will start to download. Please advise what is the problem and solution for my iPhone 5.

    When I am connected to the WiFi, my apps cannot be download. Once I had disable the wifi and connect directly to the service provider, the apps will start to download. Please advise what is the problem and solution for my iPhone 5.

    I can't follow your meaning. What does connect directly to your ISP mean?
    Did you mean turning off WiFi but turning on Cellular Data on your iPhone?

  • Why the server was down earlier today ?

    If I may ask , Why the server was down earlier today ? (around 9 AM GMT)
    Just curious .

    ckeck wrote:It was down for a while, I was up last night from about 10:30pm-12:30am CST and could not reach the site the entire time. Not sure how long it was down after that.
    From looking at the post history, it was down for about 10.5 hours.
    I was afraid someone forgot to pay the bills. 

  • Why the itunes always must sync all data another file if making update application for iphone ?

    Why the itunes always must sync all data another file if making update application for iphone ?

    I'm not sure I understand the question

  • Why the server for registration doesn't work now ?

    i try to register my iphone 4s and after 3 minutes when tryies to make the activation says your iphone coudn't be activated because the server for activation is temporary stoped. :|

    we're users here.  We have no way of knowing why the activation servers are temporarily unavailable.

  • Why the server down?

    HI:
              I use the jsp code like the accessories in this mail, the
              jsp import a dbquery class ,the .java of the class also in this mail. And
              when I run the jsp call the class and run it
              the weblogic server down , and the server show me a message like this :
              # An EXCEPTION_ACCESS_VIOLATION exception has been detected in native code
              outside the VM.
              # Program counter=0x1000a94b
              and in the browser, the OS also show me the application program java.exe
              run error.
              I ues intel PIII 550 cpu, and the OS is WinNT4.0, sp6, the weblogic
              server I use 5.1 edition, Sp4. jdk1.3 edition , jsp1.1 edition
              and I also give the startweblogic.cmd file to show you my java run
              environment.
              [index.jsp]
              [PharmaQueryBean.java]
              [startWebLogic.cmd]
              

              The same issue for us.
              The same solution : switch to Oracle Thin Client.
              Dimitri Rakitine <[email protected]> wrote:
              >It uses native libraryi(OCI), so, while it should not, it is possible
              >that is can crash.
              >
              >I would suggest you use Oracle thin JDBC driver - it is 100% java, so
              >it will
              >not crash the JVM. You can download it from http://otn.oracle.com, if
              >you do not have it
              >already.
              >
              >shannon <[email protected]> wrote:
              >> HI :
              >> I use the jdbc driver=weblogic.jdbc.oci.Driver, but my fellow also
              >use this
              >> jdbc driver, and on his computer can run these programs, he and I use
              >the
              >> SAME system, includes the software and hardware.
              >
              >> thanks , Dimitri Rakitine !
              >
              >
              >> Dimitri Rakitine <[email protected]> wrote in message
              >> news:[email protected]...
              >>> Which jdbc driver are you using? It looks like it causes an error.
              >>>
              >>> shannon <[email protected]> wrote:
              >>> > HI:
              >>> > I use the jsp code like the accessories in this mail, the
              >>> > jsp import a dbquery class ,the .java of the class also in this
              >mail.
              >> And
              >>> > when I run the jsp call the class and run it
              >>> > the weblogic server down , and the server show me a message like
              >this :
              >>>
              >>> > #
              >>> > # An EXCEPTION_ACCESS_VIOLATION exception has been detected in native
              >> code
              >>> > outside the VM.
              >>> > # Program counter=0x1000a94b
              >>> > #
              >>>
              >>> > and in the browser, the OS also show me the application program
              >> java.exe
              >>> > run error.
              >>>
              >>> > I ues intel PIII 550 cpu, and the OS is WinNT4.0, sp6, the weblogic
              >>> > server I use 5.1 edition, Sp4. jdk1.3 edition , jsp1.1 edition
              >>> > and I also give the startweblogic.cmd file to show you my java run
              >>> > environment.
              >>>
              >>> Dimitri
              >
              >Dimitri
              

  • Why didn't it start to download after I purchased it?

    I just bought an episode of south park 5 minutes ago, and the site took the money from my account, but the download never took place. The episode is still sitting in my cart. I dont have enough to buy the episode again. What is wrong, What do I do, And Why cant I find a tech support option on the Itunes site?
    Message was edited by: mjbdcm
    Message was edited by: mjbdcm

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copy of the track and try redownloading a fresh one. See the following document for instructions:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not playing properly. If you can't see "Report a Problem" next to the item, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.

  • Why did the installation not start after downloading trial version of PS Elements 12?

    Looking for a low price photo editor to touch up old photos that I have scanned from snapshots. My last software was the free Photoshop that came with an older version of Windows. I am currently running Win/XP on a Dell Vostro 1500, I know I should be upgrading but this machine still works for me.

    Thank you Ls29_GP40 I would recommend reviewing your PDApp.log file for the exact error.  You can find details on how to locate and interpret the PDApp.log at Troubleshoot install using logs | Elements - http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-install-using-logs-elements.html.  You are welcome to post any specific errors you discover from the log to this discussion.

  • WHY THE HECK CAN'T I DOWNLOAD ADOBE FLASH PLAYER?!?!?

    When I first got my IPhone I loved it, but the more I use it the more limited it seems to be, my latest gripe is with not being able to view 'FLASH' content and how many websites are out there with flash stuff?!!
    APPLE; you really need to asters this quick smart... If your problem is with adobe specifically then you need to either release your own version of the software or get on the blower to another company and start releasing something cause this is "********"!!!!!!!!!!!!!!!
    Stop focusing on world domination and start more on customer service!!!!!
    P.s: when I signed up for being able to discuss what's on my mind (another painful apple process that was) it wouldn't show me the terms and conditions properly and un full no matter how much I tapped/clicked on it I couldn't scroll down further. As a result I am advising you that I had no other option but to click I accept only for the fact that if I hadn't my rights to voice my concerns would have been denied all as a result of your faulty software and I saw no other alternatives in order to make my point of my dissatisfaction as I also checked out the support pages!  Thank you again apple!

    Flash was designed for computers with cooling systems, it runs fine on my single core Atom netbook even.
    The new iOS devices come with dual core Atom-like A4 netbook processors, but atlas! no Flash.
    It's because Flash needs cooling and those iOS devices don't have it.
    So dump the phone if the lack of Flash is such a bother, it's a overpriced, over rated phone that has little purpose that a regular phone with text messaging, a laptop, a GPS, a camera and a iPod can do so much better and cheaper as they are separate devices with more abilities.
    Check out this poll.

  • Why the workflow is start after the checkouted record is modified?

    Hi support,
    My workflow is configed as autolauch after the record is modified immediately. I believe that the checkout record should not be put into workflow before being checkin even though it is modified. Please kindly told me the accurate process.
    Regards,
    Song

    Hi ,
    My workflow is configed as autolauch after the record is modified immediately. I believe that the checkout record should not be put into workflow before being checkin even though it is modified. Please kindly told me the accurate process.
    The purpose of Workflow  is  to  move all the records goes through a process  before being checked in and the purpose of checkout the record is  to allow changes  over a period over a time until you are ready to commit.
    the only reason to use checkout record in workflow is to keep track changes  by seeing in the worflow tab and do the changes when required.
    If you not added to the workflow then this difficult for  approver to track what changes goin on and what is the exact time to checkin
    the record.
    Thanks,
    sudhanshu

Maybe you are looking for