Installation error occurred when the air is built from another machine.

The senerio is that .
AIR SDK: 2.0
I orginally built an AIR versioned 1.05 from a mac 10.0.6 with FlashBuilder 4.6 and now I used the same code based and same application.xml to build a newer version 1.06 from a windows 7 x64  FlashBuilder 4.5 then i got the following error
The application could not be installed because an application with that name already exists at the selected installation location. Try installing to a different location.
I have put publisherID into the descriptor xml.
Could somebody please help

I found out the cause.
What I do:
Copy the Flex sdk from mac to pc directly.
More info:
The reason why i didnt do the above step at the begining because there are so many hidden files are generated by mac and which let the flashbuilder in PC keep prompting error.As a result, I manually deleted all the hidden files (more than 2k files) and build release with that sdk and finally the installation error not show.
Also,I found that although both mac and pc are using Flex 4.1 sdk ,may be with different build number? The point is I will/may face the same problem if I decide to update the flex sdk from 4.1 to newers version.
This is a very big problem because there are so many ppl installed the old version  and they may have to manually uninstall and install again and I will receive so many phone calls for support but  which is fine if they are all hot girls..

Similar Messages

  • Error occuring when trying to download movie from apple tv

    When ever I rent a movie from apple tv an error occurs when I go to downlaod it. The error just says that the movie cant download right now, try again later. Even after numerous attempts the movie still wont download. This had been happening for months and I've just been watching movies from netflix. I'm being charged for movies I can't even watch! How can I fix this problem?

    First, what is your internet speed? www.speedtest.net
    iTunes HD content requires 6mbps (SD would be 3mbps)
    Netflix uses variable bit-rate so it simply degrades on slower connections
    iTunes content waits to play until enough has buffered for playback without interupption

  • Error occured When I migrated my APP from JSF1.1 to JSF1.2 in Tomcat6.X

    Recently, I accepted a work from my leader that migrate the exist web application based JSF from JSF1.1 to JSF1.2. Because JSF1.2 must be
    run in those web servers that implementsJSP2.1 I downloaded Tomcat6.X from apache and put jsf-impl.jar together with jsf-api.jar into Tomcat's Lib directory.
    But an exception occured when I start tomcat; the following is the detail information about the exception. Any help welcome!
    Dec 5, 2006 5:02:14 PM org.apache.catalina.core.StandardContext listenerStart
    SEVERE: Error configuring application listener of class com.sun.faces.config.GlassFishConfigureListener
    java.lang.NoClassDefFoundError: javax/el/ExpressionFactory
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Class.java:2328)
         at java.lang.Class.getConstructor0(Class.java:2640)
         at java.lang.Class.newInstance0(Class.java:321)
         at java.lang.Class.newInstance(Class.java:303)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3771)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4336)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:451)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)

    You're using an older version of JSF 1.2. Please upgrade to the latest, 1.2_03 [1].
    [1] https://javaserverfaces.dev.java.net

  • Unknown error occurred when trying to buy music from iTunes

    Whenever I try to buy a song or album from iTunes it says an unknown error has occurred (-405054) and can't be completed.

    I had this problem just recently.
    I discovered that the problem was located here: ROOT / Users / Shared  -- if you open that and the "adi" folder has a little red minus symbol in its corner, your permissions have somehow been lost. (If you can't see your root directory, open Finder Preferences and, under sidebar, check "Hard disks." That will make your root drive visible.)
    If the "adi" folder has the red minus symbol, right-click the folder and select GET INFO.
    Sharing & Permissions is probably set to "System: Read & Write | wheel: Read Only | everyone: No Access"
    If so, your user account has no permissions, and that means iTunes can't use the folder properly.
    To fix this, first unlock the folder using the padlock icon in the bottom-right corner of "get info." You will have to supply your admin password to do this.
    Then click the little + sign in the bottom left corner to add a user, and select your user ID from the list of choices. Give yourself Read & Write permissions. (Alternatively, you could change the permissions of "everyone" to Read & Write; others have done that, but I was leery of doing it).
    Re-lock the folder when you're done.
    Hopefully that will solve it.

  • Error occured when trying to pass object from Jsp to Applet

    I am trying to pass a serialized object(ie, object class implements java.io.Serializable...so that is not a problem) from a Jsp to an Applet.
    My jsp(Jsp_RMI.jsp) page is:-
    <%@ page import="java.io.*" %>
    <%@ page import="com.itlinfosys.syslab.mfasys.scm.*" %>
    <%@ page import="java.util.*" %>
    <applet code="com/itlinfosys/syslab/mfasys/scm/Applet_RMI" width=200 height=100>
    </applet>
    <%! ObjectOutputStream outputToApplet=null;
    PrintWriter out=null;
    BufferedReader inTest=null;
    %> <% Student student=new Student();
    Vector students=new Vector();
    students.addElement(student);
    outputToApplet=new ObjectOutputStream(response.getOutputStream());
    outputToApplet.writeObject(students);
    out.println(student);
    outputToApplet.flush();
    outputToApplet.close();
    %> <html> <head> <title>My Page</title> </head> <body> </body> </html>
    My Applet Applet_RMI.java is:-
    package com.itlinfosys.syslab.mfasys.scm;
    import java.applet.*;
    import java.net.*;
    import java.io.*;
    import com.itlinfosys.syslab.mfasys.scm.Student;
    import java.util.*;
    public class Applet_RMI extends Applet{
    Vector aStudent=null;
    ObjectInputStream inputFromServlet=null;
    String location="<URL>";
    public void init(){
    getConnection(location);
    public void getConnection(String location) {
    try{
    URL testJsp=new URL(location);
    URLConnection jspConnection=testJsp.openConnection();
    jspConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    jspConnection.setDoInput(true);
    jspConnection.setDoOutput(true);
    jspConnection.setUseCaches(false);
    jspConnection.setDefaultUseCaches(false);
    inputFromServlet=new ObjectInputStream(jspConnection.getInputStream());
    aStudent=(Vector)inputFromServlet.readObject();
    }catch(MalformedURLException e){ System.out.println(e);
    catch(IOException e){
    System.out.println(e);
    catch(ClassNotFoundException e){ System.out.println(e);
    I am using netscape-4.73 on weblogic server. On server when I try to view Jsp page it gives netscape.security.AppletSecurity Exception.
    When I am trying to call this Jsp from IE-5 on my client machine, I am getting error:-"java.io.StreamCorruptedException: InputStream does not contain a serialized" Pl help me out.

    You should probably change your implementation to use a servlet rather than JSP. There may be extra stuff being put in by the JSP. Besides, servlets run faster. Here is some code that may help.
    From the Servlet:
      public void doPost(
          HttpServletRequest               httpServletRequest,
          HttpServletResponse              httpServletResponse )
          throws ServletException, IOException {
        ObjectInputStream in = new ObjectInputStream(new GZIPInputStream(httpServletRequest.getInputStream()));
        requestObject = in.readObject() ;
        ObjectOutputStream out = new ObjectOutputStream(new GZIPOutputStream(httpServletResponse.getOutputStream()));
        out.writeObject(responseObject);
        out.close();
      } //end doPost()And from the Applet:
      public Object doServletCall(
          Object                           sendObject ) {
        try {
          HttpURLConnection con = (HttpURLConnection)servlet.openConnection() ;
          con.setRequestMethod("POST");
          con.setDoInput(true);
          con.setDoOutput(true);
          con.setUseCaches(false);
          con.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
          ObjectOutputStream out = new ObjectOutputStream(new GZIPOutputStream(con.getOutputStream()));
          out.writeObject(sendObject);
          out.flush();
          out.close();
          ObjectInputStream in = new ObjectInputStream(new GZIPInputStream(con.getInputStream()));
          Object returnObject = in.readObject() ;
          in.close();
          return returnObject ;
        } catch (IOException e) {
          e.printStackTrace();
        } catch (ClassNotFoundException e) {
          e.printStackTrace();
        } //end try
        return null ;
      } //end doServletCall()Of course you can remove the ZIP and send object if you don't need them

  • I have an error occurred when i try to print from LabVIEW

    an"error -2147352567 occured at failed to get a printer information" eventhough everything is ok.if somebody can help me with that.
    Thank you.
    file attached.
    Attachments:
    50 HZ FFT2 Print.vi ‏234 KB

    Hi,
    The printer name was probably misspelled.
    I’ve changed your vi to print to the default printer and it seems to work fine…
    Attachments:
    50 HZ FFT2 Print_2.vi ‏231 KB

  • An error occured in the claim providers configured from this site collection

    Hi Team
    I have farm Environment.I have Couple of Question
    1)I have enabled web application from classic to claims mode.
        Since than i have been getting error in sites in that Particular Webapplication.
        I have configured CA,Webapplications Alternate acess Mapping.
       In the farm i have 4 Servers
    2)  In one of the server i do not have Central Admin site in IIS.IS this causing error.
    3) Also can anyone tell how to run services on Servers in details
     can anyone throw light on my issue

    Hi Prashanth,
    Can you describe that error here ?
    Also how did you create AAM by extending a web application from central admin or by just putting url into IIS ?
    Let us know your results, thanks 
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • I get an error message when a page is loaded from another application

    When another application try's to load a webpage, I get a small dialog box. Across the top (border) is the webpage address, within the dialog box is the following, "there was a problem sending the command to the program".
    However, the page does load, but I have to keep clicking 'ok' to get rid of the dialog box

    You can't use Safari to download iPad apps. Only use iTunes/App Store.
     Cheers, Tom

  • How do I delete a photo album off of my iPhone 5 when the photo album is from another computer. I can't delete it btw!

    I've synced an photo album from my old Toshiba laptop to my iPhone 5 last year, the laptop doesn't work anymore, but now i have a MacBook pro and i can't delete it off of my phone or iTunes! please help! My storage is almost full and i want to delete it!

    If you select a single photo on your Mac to be transferred to your iPhone, all photos on your iPhone that were transferred from your previous computer should be erased first.

  • An error occurs when trying to exit from ALV report

    Hi,
    I have a report which imports and display in ALV data from an excel file. Unfortunately when I'm trying to exit I receive an error as I copied below.
    Runtime Errors         MOVE_TO_LIT_NOTALLOWED_NODATA
    Date and Time          17.10.2008 08:39:18
    Short text
         Error at assignment: Overwritten protected field.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLSLVC_FULLSCREEN" had to be terminated because it
          has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         A new value is to be assigned to the field "<L_BOX>", although this field is
         entirely or partly protected against changes.
         The following are protected against changes:
         - Character literals or numeric literals
         - Constants (CONSTANTS)
         - Parameters of the category IMPORTING REFERENCE for functions and
         methods
         - Untyped field symbols not yet assigned a field using ASSIGN
         - TABLES parameters if the actual parameter is protected against changes
         - USING reference parameters and CHANGING parameters for FORMs, if the
         actual parameter is protected against changes and
         - Accesses using field symbols if the field assigned using ASSIGN is
         protected (or partially protected, e.g. key components of an internal
         table with the type SORTED or HASHED TABLE) against changes
         - Accesses using references, if the field bound to the reference is
         protected (or partially protected) against changes
         - External write accesses to READ-ONLY attributes,
         - Content of a shared object area instance accessed using a shared lock
         (ATTACH_FOR_READ).
    Trigger Location of Runtime Error
         Program                                 SAPLSLVC_FULLSCREEN
         Include                                 LSLVC_FULLSCREENF02
         Row                                     686
         Module type                             (FORM)
         Module Name                             MARKS_SAVE
    How can I solve the problem ?
    Thanks
    Stefan

    Hi ,
      Please check the GUI status you are using for the ALV.
    Looking at the code what i feel is that the error occurs when the user action is the code &SAL' or '&ALL'.
    Please put a break point at the statement and see why is the error occurring
    Regards,
    Arun

  • Error occurs while the user creates an vendor(MDM)

    Hi,
    The following error occurs when the user creates an vendor(MDM) and submits the form for validation on Enterprise portal.
    " Could not create JCOClientConnection for logical System: MDM_WD_MODELDATA_DEST - Model: class com.xxxx.ven.crt.MDMBAPIValidateModel. Please assure that you have configured the RFC connections and/or logical system name properly for this model"
    Can any one help me out how to rectify this error?
    Regards,
    KN

    Hello,
    test MDM_WD_MODELDATA_DEST  with webdynpro content admin rights . check sso or uid/pw given and system details as error message showing that JCO Destination configuration is wrong.
    Regards,
    Koti Reddy

  • -18004; An error occurred accessing the LabVIEW Run-Time Engine DLL.

    Hello,
    I have this error when i want to get a VISA session refnum from a viSession handle.
    This error occured when the specified class is IviFgen.
    The device concerned is a PXI-5402/PXI-5412 (i need to get the model with a property node - Inherent IVI Attribute... from the refnum)
    It also occured during a cast (if the class specified is niFgen).
    Could somebody help me ?
    Thanks !
    Attachments:
    ErrorLVRT_TestStand.png ‏11 KB

    Hi Ggraindo,
    This error occured during deployment? Which is the LabVIEW adapter version that you are trying to use, is it the 9.0.1? Do you have other LabVIEW or TestStand versions installed in your computer? This error only occured when you try to used the class IviFgen, or even just with a simple VI?
    What is the result of the error cluster from LabVIEW?
    Also, can you post a simple exemple to reproduce this issue?
    Regards,
    Rémi D.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Les rencontres techniques de NI - Mesures et acquisition de données : de la théorie à la mise en ...

  • I am trying to install itunes on my hp laptop with windows vista 64 bit. But when i install i get this error "An error occured during the installation of assembly "Microsoft.VC80.CRT.type="win32"version="8.0.50727.6195".publickeyTOken="1fc8b3 b9a1e18e3b".

    I am trying to install itunes on my hp laptop with windows vista 64 bit. But when i install i get this error   "An error occured during the installation of assembly "Microsoft.VC80.CRT.type="win32"version="8.0.50727.6195".publickeyTOken="1fc8b3 b9a1e18e3b".processorArchitecture="x86""

    Repair your Apple Application Support.
    Control Panel > Programs n Features > highlight AAS, click CHANGE the REPAIR

  • I have Lightroom 5 installed on my MacBook Air but when I try to open the program I receive the message "An error occurred when attempting to change modules".  I uninstalled, emptied trash and re-installed but I continue to get the same message.

    I have Lightroom 5 installed on my iMac which I downloaded (uploaded?) to my MacBook Air (via wi-fi) but unlike the iMac, I'm unable to use the program on the MacBook Air.  When I open the program on the iMac and click 'file', (as people using the program would know) there are 21 options - import pics, export, etc, etc - however, in the version on the MacBook Air, opening 'file' gives me four options - New Catalogue, Open Catalogue, Page Setup and Printer - and with that comes the pop-up message "An error occurred when attempting to change modules".  Any ideas please?

    A forum thread from 3 years ago talking about LR 1.x which had this problem seems to need permissions fixed or new folders created with the corrected permissions.  You might try doing a repair permissions for your user and/or run LR as an administrator user.  I am a PC person so cannot tell you exactly how to do that.
    https://forums.adobe.com/message/1457020

  • When i download iTunes during downloading process on messege shown:  An error occurred during the installation of assembly'Microsoft CRT.version="8.0.50727.6195 publicKey Token = 1f c8 b3 b9a 1e 18e 3b processo rArhitecture = x86.

    HELP PLS.......when i download iTunes during downloading process on messege shown:  "An error occurred during the installation of assembly‘Microsoft CRT.version=”8.0.50727.6195 publicKey Token = 1f c8 b3 b9a 1e 18e 3b processo rArhitecture = x86." please refer to Help and Support for more information. HRESULT: 0x80073712.
    when click ok it rolling back and start process download again. and at last this messege appear: Service‘Apple Mobile Device’ (Apple Mobile Device) failed to start. Verify that youhave sufficient privileges to start system services  with option
    Abort    Retry    Ignore
    i tried all option one by one but i did not success to download itunes.
    Please help .

    You should check Windows update for Service Pack update, if there is any.
    Otherwise, try to fix and update windows system filesas follows:
    Go to command prompt (START/ALL PROGRAMS/ACCESSORIES right mouse click "command prompt" and choose "Run as Administrator"
    type in
    sfc /scannow
    let Windows fix any system files that need to be repaired.
    Restart the computer if it did actually repair any files.
    Then do the download again.

Maybe you are looking for