File Download - Security Warning

Hi,
We have installed the developing content server under the following options:
OS - Windows 2008 R2 with sp1
Database : MaxDB 7.8
After a successful installation I would maintain the post-Installation.
For the first step I tried to test the connection to the content Server:
1. open a Web browser on a host that is connected to your local network
2. navigate to the following URL like http://<hostname>:1090/ContentServer/ContentServer.dll?serverinfo
Instead of "Running" the result of test is then like following:
It comes up a popup with "File Download - Security Waring" and the question "Do you want to save this file, or
find a program online to ope it?" - Name: contenServer
Type: Unknown File Type, 265KB
From: content1
contentd1 - servername
Who is to say how it can be solved?
Thanks a lot in advance,
Gauguin

Hi Juan,
You mean "Capital" that  the link should be case-sensitive:
http://contentD1:1090/ContentServer/ContentServer.dll?serverinfo
our content server - contentD1
If I enter in the browser, it may come the same symptom.
Have you any idea, to correct the symptom?
Thanks a lot,
Gauguin

Similar Messages

  • "File download - security warning" when running a report

    Hi all,
    Few of our users are having an error on their PCs when trying to run a report in Internet Explorer 8 with Adobe Reader 10.1.3 installed on their PCs. The error is:
    "File Download - Security Warning"
    Do you want to save this file, or find a program online to open it?
    Name: rwservlet
    Type: Unknown File Type
    Find Save Cancel
    Other users are able to run the reports. They have IE8 and Adobe Reader 10.1.2 installed. Any ideas why this problem might occur?
    Any help is appreciated.

    Hi,
    what is the behavior if you leave adobe Reader opened and running before running the report?
    Thanks, Roberto

  • When i try to run my jsp i get "File Download Security Warning"

    Hi,
    I have created a jsp file which is called UpdateEmpDetails1.jsp
    This jsp file picks up the employee id of the employee and transfers it to the backend servlet called UpdateEmpDetails1.java. The backend servlet looks up the table stored in the database and pulls up all the information stored corresponding to the employee id.Then the servlet stores the information in a session object and forwards it to the UpdateEmpDetails2.jsp
    I display the information which has been forwarded by the servlet in the HTML fields of UpdateEmpDetails2.jsp.
    Here the manager can also update the information. When he clicks on submit, the second serlvet UpdateEmpDetails2.java which is linked to UpdateEmpDetails2.jsp picks up the updated information and updates the database. The servlet also displays the message "Your information has been updated". But here is the real problem
    The session variables are being transferred perfectly to the jsp file UpdateEmpDetails2.jsp.
    But when i make any changes to this file and click on submit I get File Download Security Warning. It Says:
    File Download Security Warning
    Do you want to save this file
    Name UpdateEmpDetails2
    Type UnknownFileType
    From LocalHost
    Then I get another file which says
    FileDownload
    Getting FIle Information
    UpdateEmpDetails2 from localhost
    Estimated time left
    Download to:
    Transfer rate:
    Close this dialog box when download is complete
    I am just simply not able to update the employee information in the database due to this message.

    this is what i am trying to do:
    my UpdateEmpDetails1.jsp is as follows:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional //EN">
    <html>
    <head>
    <title>UpdateEmpDetails1.jsp</title>
    <link REL=STYLESHEET
    HREF="JSP-Styles.css"
    TYPE="text/css">
    </head>
    <body BGCOLOR="lightyellow" text="black">
    <h2 align="left"><font color="black">Update Employee Details Page</font></h2>
    <form action="UpdateEmpDetails2" Method="Get">
    <h2 align="left">Please enter the Employee ID of the employee whose details you want to edit</h2>
    <table width=50% align="center">
    <tr><td>Employee ID : </td>
         <td><INPUT TYPE="TEXT" name="employeeid"><br></td></tr>
    <tr><td><center><INPUT TYPE="SUBMIT" VALUE="SUBMIT"></center></td></tr>
    <tr><td><center><INPUT TYPE="RESET" VALUE="RESET"></center></td></tr>
    </table>
    </form>
    </body>
    </html>
    my update EmpDetails1.java is as follows:
    package com.update;
    import com.database.*;
    import java.io.*;
    import java.sql.*;
    import javax.servlet.http.*;
    import javax.servlet.*;
    public class UpdateEmpDetails1 extends HttpServlet
         public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException
              HttpSession session = request.getSession();
              String X = request.getParameter("employeeid");
              System.out.println("Employee ID:" + X);
              //Establishing the jdbc connection
              try
                   Database db = new Database();
                   Connection con = db.useConnection();
                   String query = "Select * from employees where employeeid=?";
                   PreparedStatement stat = con.prepareStatement(query);
                   System.out.println(stat);
                   stat.setString(1,X);
                   ResultSet rs = stat.executeQuery();
                   while(rs.next())
                        String A = rs.getString("employeeid");
                        String B = rs.getString("firstname");
                        String C = rs.getString("lastname");
                        String D = rs.getString("gender");
                        String E = rs.getString("dateofbirth");
                        String F = rs.getString("address");
                        String G = rs.getString("postalcode");
                        String H = rs.getString("phone");
                        String I = rs.getString("mobile");
                        String J = rs.getString("designation");
                        String K = rs.getString("joindate");
                        String L = rs.getString("leavedate");
                        String M = rs.getString("email");
                        String N = rs.getString("qualification");
                        String O = rs.getString("empstatus");
                             System.out.println("comparison successful");
                             session.setAttribute("employeeid",A);
                             session.setAttribute("firstname", B);
                             session.setAttribute("lastname", C);
                             session.setAttribute("gender", D);
                             session.setAttribute("dateofbirth", E);
                             session.setAttribute("address", F);
                             session.setAttribute("postalcode", G);
                             session.setAttribute("phone", H);
                             session.setAttribute("mobile", I);
                             session.setAttribute("designation", J);
                             session.setAttribute("joindate", K);
                             session.setAttribute("leavedate", L);
                             session.setAttribute("email", M);
                             session.setAttribute("qualification", N);
                             session.setAttribute("empstatus", O);
                             String url="/UpdateEmpDetails2.jsp";
                             RequestDispatcher dis = request.getRequestDispatcher("/UpdateEmpDetails2.jsp");
                             System.out.println("Dispatching" + dis);
                             dis.forward(request, response);
              catch(Exception e)
                   System.out.println(e);
    my UpdateEmpDetails2.jsp is as follows:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
    <title>UpdateEmpDetails2.jsp</title>
    <link REL=STYLESHEET
    HREF="JSP-Styles.css"
    TYPE="text/css">
    </head>
    <body BGCOLOR="lightblue" text="black">
    <h1 align="center"><font color="black">Update Employee Details Page</font></h1>
    <form action="UpdateEmpDetails2" Method="Get">
    <table width=50% align="center">
    <tr><td>EMPLOYEE ID:</td>
         <td><INPUT TYPE = "HIDDEN" name="employeeid" value=<%=session.getAttribute("employeeid")%> ></td></tr>
    <tr><td>FIRST NAME :</td>
         <td><INPUT TYPE = "TEXT" name="firstname" value=<%=session.getAttribute("firstname")%> ></td></tr>
    <tr><td>LAST NAME :</td>
         <td><INPUT TYPE = "TEXT" name="lastname" value=<%=session.getAttribute("lastname")%> ><br></td></tr>
    <tr><td>GENDER :</td>
         <td><INPUT TYPE = "TEXT" name="gender" value=<%=session.getAttribute("gender")%> ><br></td></tr>
    <tr><td>DATE OF BIRTH (IN MM/DD/YYYY FORMAT) :</td>
         <td><INPUT TYPE = "TEXT" name="dateofbirth" value=<%=session.getAttribute("dateofbirth")%> ><br></td><tr>
    <tr><td>ADDRESS :</td>
         <td><INPUT TYPE = "TEXT" name="address" value=<%=session.getAttribute("address")%> ><br></td></tr>
    <tr><td>POSTALCODE:</td>
         <td><INPUT TYPE = "TEXT" name="postalcode" value=<%=session.getAttribute("postalcode")%>><br></td></tr>
    <tr><td>PHONE:</td>
         <td><INPUT TYPE = "TEXT" name="phone" value=<%=session.getAttribute("phone")%> ><br></td></tr>
    <tr><td>MOBILE:</td>
         <td><INPUT TYPE = "TEXT" name="mobile" value=<%=session.getAttribute("mobile")%> ><br></td></tr>
    <tr><td>DESIGNATION : </td>
    <td><INPUT TYPE="TEXT" name="designation" value=<%=session.getAttribute("designation")%> > <br></td></tr>
    <tr><td>JOIN DATE:</td>
         <td><INPUT TYPE = "TEXT" name="joindate" value=<%=session.getAttribute("joindate")%> ><br></td></tr>
    <tr><td>LEAVE DATE:</td>
         <td><INPUT TYPE = "TEXT" name="leavedate" value=<%=session.getAttribute("leavedate")%> > <br></td></tr>
    <tr><td>EMPLOYEE EMAIL:</td>
         <td><INPUT TYPE = "TEXT" name="email" value=<%=session.getAttribute("email")%> ><br></td></tr>
    <tr><td>EMPLOYEE QUALIFICATION:</td>
         <td><INPUT TYPE = "TEXT" name="qualification" value=<%=session.getAttribute("qualification")%> > <br></td></tr>
    <tr><td>EMPLOYEE STATUS:</td>
         <td><INPUT TYPE = "TEXT" name="empstatus" value=<%=session.getAttribute("empstatus")%> > <br></td></tr>
    <tr><td><center><INPUT TYPE="SUBMIT" VALUE="SUBMIT"></center></td></tr>
    <tr><td><center><INPUT TYPE="RESET" VALUE="RESET"></center></td></tr>
    </table>
    </form>
    </body>
    </html>
    my UpdateEmpDetails2.java is as follows:
    package com.update;
    import java.io.*;
    import java.sql.*;
    import javax.servlet.http.*;
    import javax.servlet.*;
    import com.database.*;
    public class UpdateEmpDetails2 extends HttpServlet
         public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException
              PrintWriter out = response.getWriter();
              response.setContentType("texthtml");
              String A = request.getParameter("employeeid");
              out.println(A);
              String B = request.getParameter("firstname");
              out.println(B);
              String C = request.getParameter("lastname");
              out.println(C);
              String D = request.getParameter("gender");
              out.println(D);
              String E = request.getParameter("dateofbirth");
              out.println(E);
              String F = request.getParameter("address");
              out.println(F);
              String G = request.getParameter("postalcode");
              out.println(G);
              String H = request.getParameter("phone");
              out.println(H);
              String I = request.getParameter("mobile");
              out.println(I);
              String J = request.getParameter("designation");
              out.println(J);
              String K = request.getParameter("joindate");
              out.println(K);
              String L = request.getParameter("leavedate");
              out.println(L);
              String M = request.getParameter("email");
              out.println(M);
              String N = request.getParameter("qualification");
              out.println(N);
              String O = request.getParameter("empstatus");
              out.println(O);
              try
              Database db = new Database();
              Connection con = db.useConnection();
              String query= "update employees set employeeid=?,firstname=?,lastname=?,gender=?,dateofbirth=?,address=?,postalcode=?,phone=?,mobile=?,designation=?,joindate=?,leavedate=?,email=?,qualification=? where employeeid=?";
              PreparedStatement stat = con.prepareStatement(query);
              stat.setString(1, B);
              stat.setString(2, C);
              stat.setString(3, D);
              stat.setString(4, E);
              stat.setString(5, F);
              stat.setString(6, G);
              stat.setString(7, H);
              stat.setString(8, I);
              stat.setString(9, J);
              stat.setString(10, K);
              stat.setString(11, L);
              stat.setString(12, M);
              stat.setString(13, N);
              stat.setString(14, O);
              stat.setString(15, A);
              System.out.println(stat);
              int i = stat.executeUpdate();
              if (i!= 0)
              System.out.println("The record has been updated");
              else
                   System.out.println("Sorry ! failure");
              ResultSet rs = stat.executeQuery("select * from employees");
              System.out.println(rs);
              while(rs.next())
                   out.print("<table border='1'>");
                   out.println(rs.getString(1) + "<br>");
                   out.println(rs.getString(2) + "<br>");
                   out.println(rs.getString(3) + "<br>");
                   out.println(rs.getString(4) + "<br>");
                   out.println(rs.getString(5) + "<br>");
                   out.println(rs.getString(6) + "<br>");
                   out.println(rs.getString(7) + "<br>");
                   out.println(rs.getString(8) + "<br>");
                   out.println(rs.getString(9) + "<br>");
                   out.println(rs.getString(10) + "<br>");
                   out.println(rs.getString(11) + "<br>");
                   out.println(rs.getString(12) + "<br>");
                   out.println(rs.getString(13) + "<br>");
                   out.println(rs.getString(14) + "<br>");
                   out.println(rs.getString(15) + "<br>");
                   out.print("<br>");
              catch (Exception e)
                   System.out.println(e);
                   e.printStackTrace();
    Now as soon as i click on the submit button of the first jsp i get "File Download security warning message"
    I am new to jsp and i am not able to troubleshoot this

  • Itunes 6, "File Download-Security Warning" box keeps repeating

    I am so frustrated and feel like a terrible mom. I tried to upgrade my son's itunes on his xp machine. I get as far as the windo that asks "Do you want to run or save this file." I click save and it seems to finish the "installation repair". I click on the finish button and nothing happens. When I then try to launch itunes, from the desktop icon, it comes right back to the same box. Over and over again. I'm so fearful of losing his music as he has it on his ipod but not backed up. I was planning on buying an external hard drive this weekend. UGH!! Can anyone help???

    Thanks so much for trying to help. After I hit save, and then find where I've saved the box. I then hit "run", which is seems to do and it says that the "repair is finished" and is "successful." I assume this means that itunes is attempting to reinstall itself. So, I click on finish. Nothing spontaneously happens so I then go to my desktop where I've saved the info and double click on the itunes set up icon. The one that looks like a brown box. As soon as I cick on that, it takes me directly back to my starting point of the larger box that asks me if I want to "run" my program. I once clicked on an older itunes set up icon and it told me that a newer itunes has been installed so I'm assuming the install was successful. I just can't get past the box askng me if I want to "run" the install. Does that make any sense??? Hope you can help.
    P.S. One last dilemma is that while all my son't music is on his iPod, it is not backed up, so any fix that will keep his current itunes intact would be awesome. Thanks again. Karen
    I click on the finish button and nothing happens.
    When I then try to launch itunes, from the desktop
    icon, it comes right back to the same box.
    hi Karen!
    you're not a terrible mom.
    let me just doublecheck something. when you click on
    the icon that would normally launch itunes,
    itunes actually tries to reinstall itself?
    (if so, i think i know what is probably happening,
    but i just want to make sure i'm clear on your
    situation.)
    love, b
    PC   Windows XP  

  • Downloaded JPG Files Have Security Warning When Downloaded with FF 14.0.1

    Since updating to FF14.0.1, JPG files that are downloaded from the internet display "Open File - Security Warning" "Unknown Publisher" when double clicked to open. I can disable the warning for individual files, but would rather have it global for all since JPG file are a low security risk. They do open without the warning when downloaded within IE8. I couldn't find any FF security settings that may affect this issue.

    I'm not aware of any changes in Firefox 14 relating to this feature, but there are dozens of changes in each release, so I certainly can't rule it out.
    Is the E drive a partition on your hard drive, RAM disk, removable storage? Just wondering whether it might be treated differently than the C drive for some reason. But IE and Firefox should be consistent, since this is all about Windows' internal security controls...

  • When I try to open the downloaded file, a security warning restricts me from opening the file.

    I have the new Motorola Bravo which is on the Android 2.1 system. When I try to open the downloaded file, a warning appears saying "This application comes from an unknown source, and for your security only applications from trusted sources can be installed". Is the download corrupt? I would think not, but I am very confused.

    Unfortunately, AT&T disables the ability for its Android phones to install applications that aren't distributed through the Android Market.
    If this phone is not AT&T-branded, then you might be able to enable "Non-Market sources" in the "Applications" section of the Settings app.
    If it is, then you might be able to use the Android developer tool "adb" to install Firefox on your phone (search the web for instructions), or you can wait for our next beta release which should be available through the Market later this month.

  • TS3212 i saw the file download security window and did enter run, it only gets so far and then a window pops up that says there is a problem with the download and can't install.  what do I do?

    I did see the security download window and entered "run", but it only got so far and a window popped up saying "problem with download, can't proceed".  What to do?

    This happened to me, too. If I remember correctly, I had to set wither iTunes or my computer to download files one at a time instead of all at once. I don't remember how I set it to do this, though. I also remember that I had to delete the files and downloads and restart them all after I did this. Sorry I couldn't help more.

  • File download interferes with Quick Time

    Usually, when I download from a website a popup window appears with the option to open, run, and cancel. The title of the window is “File Download – Security Warning”.
    After installing Quick Time, when I try to download from any website, the quick time window appears instead of the Utility window by the WINDOW operating system.I would prefer the Window utility to popup, is there any way I can install quick time in such a way so that quick time window does not pop up for file download.
      Windows XP  

    Hi,
    A tiff file is a picture file. FInd a tiff file on your computer and clik it with the right mouse button. From the list choose the option "open with". You wuill get a few option on which to open the file with, choose something like "Paint" and make sure to select the thick box to always use this program to open these files. From Paint you should have no problem printing.
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Although I work for HP my posts and replies are my own
    Please mark the post that solves your problem as "Accepted Solution"

  • Disable "Open File Security Warning"

    Hi whenever I try to open a file from the local hardrive I get the "Open File Security Warning" asking me whether I want to open the file or not. This is getting rather annoying. I searched online but everything I found seems to be dealing with network shares and I am not using that. Just a file on the local hard drive in the computer I am using to the right of me. I remember in my last install I turned it off somehow, but for the life of me I can't figure out how I did it. Anybody have any ideas? Or is this here to stay?

    Windows 7 - Launching unsafe files is in this path;
    IE -> Internet Options -> Security tab -> Custome Level -> Scroll down in Settings -> Look for radio button "Launching applications and unsafe files (not secure)".
    Don't know if it solves the problem or not but option is there.
    Great, on Windows 8 x64 this is an option I can find and set.
    It will generate a nasty warning in the system tray. And does not solve the problem:
    I have downloaded a warez archive and extracted it. The resulting .exe file is a wrapped program which will extract everything to my choosings. I've used it before. 
    When I try to run the program, all I get is: 
    Windows Security
    These files can't be opened
    Your internet security settings prevented one or more files from being opened. 
    Show details | Close
    I do not use IE, I use chrome. What is this strange behaviour?? :(
    Post-EDIT: I found this link with detailed steps for Windows 8, including screenshots.
    http://www.c-sharpcorner.com/UploadFile/e83792/how-to-disable-the-open-file-security-warning-in-windows-8/
    But this does not solve my particular problem :s
    ... Peace!
    Devvie
    ~~~ [email protected] ~~~
    Cuisvis hominis est errare, nullius nisi insipientis in errore persevare
    All spelling mistakes are my own and may only be distributed under the GNU General Public License! – (© 95-1 by Coredump; 2-013 by DevNullius)
    2nd POST-EDIT: I solved it with a little tool: streams! Read more here: http://scforum.info/index.php/topic,8543.msg22024.html#msg22024 and be done with this IE sheit. Who uses IE anyways and why is it important when I want to run a local file :| The future
    looks grimm :(

  • Security warning in Plugin 1.4.0 during HTTPS applet download

    Hi,
    I develop a simple applet, which is unsigned beause doens't do critical operation like read or write on client File Systen. But I download it from an HTTPS web server and the certificate installed in the server is created by GlobalSign.
    In Plugin 1.3 and previous release, I could download and run my applet from a HTTP or HTTPS site without problem.
    In the Plugin 1.4 BEFORE i download my applet, a security warning popup appears, and it inform me that i try to install a "untrusted" cerfificate for HTTPS comunication.
    I known that in Java Plugin 1.3 HTTPS connection are managed by Browser and for example in IE the GlobalSign CA certificate is trust, but in Java Plugin 1.4 itself manage the HTTPS connection, and the GlobalSign CA certificate is not present in the default CA trusted certificates.
    My costumer is not very "happy" that his costumer see this security warning when download my applet...
    So, the question: is it possible to avoid this message in the default plugin 1.4 configuration?
    If this is not possible I must use a CA certificate which is trust for Java Plugin, abandoning the GlobalSign certificate.
    Best regards
    Michele

    Here is perhaps a related problem. In IE6 I go to an https mode along with a basic authentication to view a series of private webpages. When I reach the webpage with my applet, I have to autheticate the applet before proceeding. Is the way the Sun Plugin should work? I know the Sun Plugin uses the IE API for server transactions, but in the case of an applet, it must start a new (basic authentication) instance. After the first authentication of the applet, all other applets down the line do not require a username and password.

  • Open File - Security Warning - minor annoyance

    Ever since I installed SQL Developer 1.5.5 I get an Open File - Security Warning. The publisher could not be verified.
    I can still run the software, but it is something I haven't seen with SQL Developer before and I have been running it since 1.2
    Anyone else have this issue or just me?

    I know this a very delayed answer to a 2009 question.  But I had a similar problem today and tried to search for a reply and landed in this page.  Later I figured out that the executable file was in blocked stage.  Files received from mail and internet downloads are blocked based on security settings and execution will be permitted after review and allow manually.  As a one time activity, the executable file can be unblocked (Right click - > Properties -> Click Unblock) after which this warning will not appear.
    T.G.Sekhar

  • How to disable IE Security Warning on opening a "local" visio file with Visio Viewer ActiveX?

    Hello all,
    Everyone knows that Microsoft released ActiveX based Visio Viewer for free and allow the users to open Visio drawing and view/print via IE browser.
    The problem that I am facing is that some users are complaining about IE browser's security warning on "active content to run in files on My Computer".
    It means that opening .VSD files from the network, internet, intranet would be all OK but if the user wants to open .VSD files from the local hard drive (or open it as a mail attachment, which will extract it to a temp folder), it prompt the user to select "Allow Blocked Content" EVERYTIME they open them.
    I know that I can GLOBALLY disable this warning by going through Tools - Internet Options - Security section and enable "Allow active content to run in files on My Computer" but I hope that there is a way (or workaround) to allow them by file type or location, etc.
    Questions:
    1. Is there any way to disable those warning for all .VSD only while we still UNCHECK the option on Internet Options?
    2. Is there any 3rd party Win32 based viewer which wouldn't have those restriction?
    3. Is it safe assumption that McAfee VirusScan and Host IPS protection is sufficient enough to remove the IE's security warning feature?
    Thanks in advance?
    Young-

    Are you able to host/launch the VSD file via an HTM page? In that case you can format the HTM page as shown below. This will trick IE into thinking it is loading the file off of a website. Commonly called 'mark of the web'.
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html>
    </html>

  • Open File - Security Warning with Network-based Silent Install of CS4

    I am attempting to run an enterprise deployment of CS4 Design Standard Edition onto a pool of WinXP Pro workstations. I placed all of the install files on a networked server running Windows 2003, and generated from there all of the requisite .xml files (install, uninstall, and override files). From this network share, I can successfully run a silent install.
    HOWEVER. Multiple times (two or three) during the course of the silent install, I receive the same pop-up security warning from Windows XP (definitely an OS message, not anti-virus or other) that reads as follows:
    Open File - Security Warning
    Do you want to run this file?
    Name: AIRApplicationRunner.exe
    Publisher: Adobe Systems Incorporated
    Type: Application
    From: (server IP address)
    I have tried excluding Adobe Air from the installation package, but I still receive the same security prompt. This is sufficiently a hassle to have to click through these prompts in a silent install. But more importantly I am unable to run the silent install as part of a logoff script because for all intents & purposes it is no longer a silent install (i.e. it requires user intervention). To top it off, I found when testing the logoff script the prompts are suppressed and the installation fails prior to the bulk of the installation (Photoshop, Illustrator, & InDesign).
    I'm sure that I could run the install by copying all of the files to each local workstation, but again that would defeat the purpose of an easy, network-based install. In the past I was able to install CS3 in this fashion with no troubles, which of course did not include Adobe Air.
    Can anybody offer a suggestion as to how to disable these security messages, or alternately, how to entirely exclude Adobe Air from the install package? I have found a VB script that is supposed to address the security warnings issue, but to run the script also requires the user to accept it at a security prompt.
    Thanks in advance for any assistance!
    -Dan

    I'm now able to deploy design suite premium cs4 successfully.
    The issue for me was that the AirapplicationRunner installs some useless software. I worked around the issue with the Airapplicationrunner prompt by removing any apps that are installed using that method. By "removing" I mean marking that app as "donotinstall" in the deployment file. The apps I removed are these adobe codes for adobe media player, adobe.com, adobeair itself. The below is from my deploy.xml file used for the silent workflow:
    donotinstall
    donotinstall
    donotinstall
    If you mark those three adobe codes as "donotinstall" the prompt never appears and the real apps get installed just fine.

  • File Download from Secure Site

    Hi ,
    Am trying to download file from secure site. Am reading the file from DB and setting it in reponse. My code woks perfectly in non-secure site. But it doesnt work in secure site. Here is the piece of code am using. Pls help thru this.
    String fileName, contentType,fileContent;
    int fileSize;
    //get file size from DB
    fileSize = rsfile.getInt("file_size");
    //get file name from DB
    fileName = rsfile.getString("file_name");
    final int BUFSIZE = 4096;
    //get file content from DB
    byte b[] = new byte[BUFSIZE];
    b=rsfile.getBytes("file_content");
    //response.setContentType(rsfile.getString("file_content_type"));
    response.setContentType("application/octet-stream");
    response.setContentLength((int) b.length);
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setHeader("Pragma","no-store");
    response.setHeader("Content-Disposition:","attachment; filename=\"" +fileName+"\"");
    response.getOutputStream().write(b);
    response.getOutputStream().flush();
    response.getOutputStream().close();

    Hi bsampieri,
    Thanks for ur reply. I got the issue resolved. The problem was because of caching headers in the page. I got the info from Microsoft Knowledge Base Article - 323308,815313. My issue is resolved. Thanks for your reply. Bye
    Regards,
    Mubarak

  • Java WebDynpro's and IE security settings for file download

    We have a EP 7.0 SP13 environment on which we have deployed a number of own developed java webdynpro's. In some of these webdynpro's we provide the file download functionality. The portal and webdynpro's are used by both internal personnel and external customers.
    On the other hand the default Internet security settings for Internet Explorer, disable "Automatic prompting for file downloads".
    When a user, with these default security settings active, tries to use our webdynpro's file download functionality, the screen seems to refreshes but no file download starts. When (s)he retries, the session runs for some minutes and gives following error message:
    "com.sap.tc.webdynpro.services.session.LockException: Thread SAPEngine_Application_Thread[impl:3]_20 failed to acquire exclusive lock on client session ClientSession".
    This behavior is explained in SAPNote 1234847. Webdynpro provides a single-thread module, meaning a user session is blocked for the during of the request. And because the previous file download isn't yet completed the new try can't start.
    Issue now, although the users IE settings allow file downloads and don't block pop up's, he can't download the file and even isn't made aware of the cause of the failure.
    How can we avoid this issue, without having to communicate the
    application requires specific browser settings?

    Welcome to the Apple Support Communities
    See > http://support.apple.com/kb/HT5290
    You can install the program using different ways:
    1. Right-click the application installer and choose Open.
    2. Go to System Preferences > Security and Privacy and select Anywhere in Allow applications downloaded from

Maybe you are looking for

  • Put HTML reference on JSP

    Hi everybody, I'd like to have a web app based on jsp files which include different HTML files stored on Apache Web Server (on a different machine!!) Ex. Header.html, Menu.html and so on... I tried with Stuts tags but it seems not working with HTML f

  • JDBC for Lotus 1-2-3?

    Can I get data from Lotus 1-2-3 by JDBC? Thank for the help! Victor

  • Java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Opti onal feature

    in my project i wanted insert a date object to the database for that i am using PreparedStatement.setDate(fieldNum,dateObject), i tried out the code segmets and used the java.sql.date onject only but i am gettig the exception"java.sql.SQLException: [

  • Why does xmark continue to freeze the browser on my macbook?

    Dear Volunteer, An "xmark" comment box, in extremely poor English continues to pop up when I open Firefox 4 on my Macbook, running osx 10.5.8. It freezes the browser and will not allow any other actions - indicating that I am to close Firefox and res

  • Report running endlessly

    I Have a custmized costing analysis report that we run in my company at the end of every month. Below is the costing query SELECT ASG.assignment_number, xxoando_general.decode_person_name(ASG.person_id) full_name,           to_date('31-OCT-2009') ear