App-V 5 Application runs once then errors

Hello Experts,
I'm running an App-V 5.0 SP1 Management Server and Publishing Server on Server 2012 R2. My Sequencer and Client are App-V 5.0 SP2 from the current MDOP 2013 R2.
The target systems are all running TrendMicro Antivirus, but I'm not sure, if that could be related, as the applications can run once. I'm afraid I can't uninstall or deactivate the AntiVirus in the case :-(
I can sequence applications fine and run them once on any given system. But as soon as the application has been run once, it cannot be run on any system anymore. It errors out with the message:
"A Problem caused the program to stop working correctly. Please close the program" then when clicking close the program, a new error message pops up: "The application was unable to start correctly (0x00000005). Click OK to close the application"
In this case, it's FireFox, but the problem isn't related to the sequenced app - it happens to all app-v applications. If I export the sequenced app to my lab environment, the application works fine and does not through any errors.
Here are the event viewer logs:
Application Log:
Faulting application name: firefox.exe, version: 27.0.1.5156, time stamp: 0x52fc0faa
Faulting module name: MSVCR100.dll, version: 10.0.30319.1, time stamp: 0x4ba1dbbe
Exception code: 0xc0000005
Fault offset: 0x000407a6
Faulting process id: 0x1668
Faulting application start time: 0x01cf3865e9e27497
Faulting application path: C:\Users\setup\AppData\Local\Microsoft\AppV\Client\Integration\C36655B9-CE43-445D-91CE-CCCCD2D8ABD1\Root\VFS\ProgramFilesX86\Mozilla Firefox\firefox.exe
Faulting module path: C:\Users\setup\AppData\Local\Microsoft\AppV\Client\Integration\C36655B9-CE43-445D-91CE-CCCCD2D8ABD1\Root\VFS\ProgramFilesX86\Mozilla Firefox\MSVCR100.dll
Report Id: 284ea35b-a459-11e3-955e-001dd8b71c30
App-V Admin Log:
Error encountered while executing command Mount-AppvClientPackage -PackageId abf22cdc-27ea-4d63-a937-d3824ce71196 -VersionId 9d3c1bfb-5ecc-4aa0-be9a-0f2811f5ae1a. Error: Application Virtualization Service failed to complete requested operation.
Operation attempted: Mount Package.
Windows Error: 0x80004004 -
Error module: Streaming Manager. Internal error detail: 74F0282C80004004.
Please consult AppV Client Event Log for more details.
A virtual application could not be launched from package '' because the App-V Client Service is not running. Start the App-V Client Service and try again.
Any Ideas? 
Cheers,
Fred

Hello,
Have you tried this hotfix?
http://blogs.technet.com/b/appv/archive/2014/03/03/hotfix-package-2-for-microsoft-application-virtualization-5-0-service-sp2-is-now-available.aspx
Nicke Källén | The Knack| Twitter:
@Znackattack

Similar Messages

  • Xcode 4.2 Example runs once then stuck

    I was having an issue, so I went back to a book example and found the same problem.  I am trying to create a very simple NSDictionary application under Cocoa.  At an early point I tried 'build and run' and it worked to bring up the screen I am constructing.  However, when I stop that run, and then repeat build and run, it never shows the screen.  It comes up with the following message and seems to be in a loop from there.  The number seems to be an almost random number.  I am sure it is a novice error, but it is stopping all progress!  Any help would be appreciated.
    tty /dev/ttys000
    [Switching to process 4792 thread 0x0]

    Thanks.  The code is pretty short, so I am including it all.  It really is beginner level.  I am sure I just need an experienced eye to point out some mis-direction on my part.  Thanks for any coaching I can get.  I only wrote the first method and added a line to the init method.  It has occurred to me that perhaps this has something to do with the upgrade from Xcode 3.x to Xcode 4.2.  The book example I am following was written to Xcode 3.  The book examples had similar errors with NSDictionary and NSArray examples.
    Document.h
    #import <Cocoa/Cocoa.h>
    @interface Document : NSDocument
        NSMutableDictionary *mainDictionary;
        IBOutlet NSTextField *kRefInField;
        IBOutlet NSTextField *dataInField;
    - (IBAction)storeRefAndData: (id)sender;
    @end
    Document.m
    #import "Document.h"
    @implementation Document
    - (IBAction)storeRefAndData: (id)sender
        NSString *kRefToStore = [kRefInField stringValue];
        NSString *dataToStore = [dataInField stringValue];
        [mainDictionary setValue:dataToStore forKey:kRefToStore];
    - (id)init
        self = [super init];
        if (self) {
            // Add your subclass-specific initialization here.
            // If an error occurs here, return nil.
            mainDictionary = [[NSMutableDictionary alloc] init];
        return self;
    - (NSString *)windowNibName
        // Override returning the nib file name of the document
        // If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
        return @"Document";
    - (void)windowControllerDidLoadNib:(NSWindowController *)aController
        [super windowControllerDidLoadNib:aController];
        // Add any code here that needs to be executed once the windowController has loaded the document's window.
    - (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
         Insert code here to write your document to data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning nil.
        You can also choose to override -fileWrapperOfType:error:, -writeToURL:ofType:error:, or -writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented", NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return nil;
    - (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError **)outError
        Insert code here to read your document from the given data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning NO.
        You can also choose to override -readFromFileWrapper:ofType:error: or -readFromURL:ofType:error: instead.
        If you override either of these, you should also override -isEntireFileLoaded to return NO if the contents are lazily loaded.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented", NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return YES;
    + (BOOL)autosavesInPlace
        return YES;
    @end
    Re: [Switching to process 2576 thread 0x0] 

  • Xcode 3.x to 4.2 transition - Runs once then stuck

    I am teaching myself Xcode from a good book.  However I ran into a strange thing where a code example runs once in Xcode 4.2 and after that builds clean but gets in a loop when running and never even brings up the screen I set up in XIB.  It doesn't matter if I change the code or not.  The message showing in the debugger is [Switching to process 5521 thread 0x0] - the number seems to be rather random.  The first run was clearly stopped using the menu quit command, but it is like it is trying to write over itself or something.
    It finally dawned on me that perhaps this has something to do with the upgrade from Xcode 3.x to Xcode 4.2.  The book example I am following was written to Xcode 3.  The book examples had similar errors with NSDictionary and NSArray examples.
    The code is pretty short, so I am including it all.  It really is beginner level.  I am sure I just need an experienced eye to point out some mis-direction on my part.  Thanks for any coaching I can get.  I only wrote the first method and added a line to the init method. 
    Document.h
    #import <Cocoa/Cocoa.h>
    @interface Document : NSDocument
        NSMutableDictionary *mainDictionary;
        IBOutlet NSTextField *kRefInField;
        IBOutlet NSTextField *dataInField;
    - (IBAction)storeRefAndData: (id)sender;
    @end
    Document.m
    #import "Document.h"
    @implementation Document
    - (IBAction)storeRefAndData: (id)sender
        NSString *kRefToStore = [kRefInField stringValue];
        NSString *dataToStore = [dataInField stringValue];
        [mainDictionary setValue:dataToStore forKey:kRefToStore];
    - (id)init
        self = [super init];
        if (self) {
            // Add your subclass-specific initialization here.
            // If an error occurs here, return nil.
            mainDictionary = [[NSMutableDictionary alloc] init];
        return self;
    - (NSString *)windowNibName
        // Override returning the nib file name of the document
        // If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
        return @"Document";
    - (void)windowControllerDidLoadNib:(NSWindowController *)aController
        [super windowControllerDidLoadNib:aController];
        // Add any code here that needs to be executed once the windowController has loaded the document's window.
    - (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
         Insert code here to write your document to data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning nil.
        You can also choose to override -fileWrapperOfType:error:, -writeToURL:ofType:error:, or -writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented",NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return nil;
    - (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError**)outError
        Insert code here to read your document from the given data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning NO.
        You can also choose to override -readFromFileWrapper:ofType:error: or -readFromURL:ofType:error: instead.
        If you override either of these, you should also override -isEntireFileLoaded to return NO if the contents are lazily loaded.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented",NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return YES;
    + (BOOL)autosavesInPlace
        return YES;
    @end

    I am teaching myself Xcode from a good book.  However I ran into a strange thing where a code example runs once in Xcode 4.2 and after that builds clean but gets in a loop when running and never even brings up the screen I set up in XIB.  It doesn't matter if I change the code or not.  The message showing in the debugger is [Switching to process 5521 thread 0x0] - the number seems to be rather random.  The first run was clearly stopped using the menu quit command, but it is like it is trying to write over itself or something.
    It finally dawned on me that perhaps this has something to do with the upgrade from Xcode 3.x to Xcode 4.2.  The book example I am following was written to Xcode 3.  The book examples had similar errors with NSDictionary and NSArray examples.
    The code is pretty short, so I am including it all.  It really is beginner level.  I am sure I just need an experienced eye to point out some mis-direction on my part.  Thanks for any coaching I can get.  I only wrote the first method and added a line to the init method. 
    Document.h
    #import <Cocoa/Cocoa.h>
    @interface Document : NSDocument
        NSMutableDictionary *mainDictionary;
        IBOutlet NSTextField *kRefInField;
        IBOutlet NSTextField *dataInField;
    - (IBAction)storeRefAndData: (id)sender;
    @end
    Document.m
    #import "Document.h"
    @implementation Document
    - (IBAction)storeRefAndData: (id)sender
        NSString *kRefToStore = [kRefInField stringValue];
        NSString *dataToStore = [dataInField stringValue];
        [mainDictionary setValue:dataToStore forKey:kRefToStore];
    - (id)init
        self = [super init];
        if (self) {
            // Add your subclass-specific initialization here.
            // If an error occurs here, return nil.
            mainDictionary = [[NSMutableDictionary alloc] init];
        return self;
    - (NSString *)windowNibName
        // Override returning the nib file name of the document
        // If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
        return @"Document";
    - (void)windowControllerDidLoadNib:(NSWindowController *)aController
        [super windowControllerDidLoadNib:aController];
        // Add any code here that needs to be executed once the windowController has loaded the document's window.
    - (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
         Insert code here to write your document to data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning nil.
        You can also choose to override -fileWrapperOfType:error:, -writeToURL:ofType:error:, or -writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented",NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return nil;
    - (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError**)outError
        Insert code here to read your document from the given data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning NO.
        You can also choose to override -readFromFileWrapper:ofType:error: or -readFromURL:ofType:error: instead.
        If you override either of these, you should also override -isEntireFileLoaded to return NO if the contents are lazily loaded.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented",NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return YES;
    + (BOOL)autosavesInPlace
        return YES;
    @end

  • Problem with app-v packages - opens first time, then error

    Hi
    I've recently deployed some app-v packages via sccm. 
    the reason for this is that previously we had the few app-v packages we're actually using in our Citrix environment. 
    but.. some update has broken something.. and the packages don't work anymore.. 
    and the people responsible for citrix aren't really that interested in fixing it since they want it out of citrix.. which is fine.
    So.. I deployed some packages via sccm. 
    What's happening is:
    I start the app-v package on a client and all is well..
    I then close the app and start it again... 
    But now it fails..
    one package is really just a pdf file.. it opens fine in the local adobe reader..
    the second time I open the same package I am prompted to choose language in adobe.. and when I do the adobe window hangs for a few seconds and then the package (and adobe reader) closes..
    In the sftlog I see:
    (translated from Danish)
    an error occurred while opening (accessing) the virtual registry database (section 9), rc: 07b01f0c-0000004a
    The osd file content is:
    <?xml version="1.0" standalone="no"?>
    <SOFTPKG GUID="CD416D60-F6D3-472F-B7EE-EA18F57DE7CC" NAME="Stærkstrømsbekendtgørelsen afsnit 6A" VERSION="1">
    <IMPLEMENTATION>
    <CODEBASE HREF="HTTP://%APPVURL%:80/content/SB.1/SB.1_5.sft" GUID="5BFD30D4-4054-4E50-BD0A-054C3DB0AFA4" PARAMETERS="" FILENAME="SB.1\Stærkstrømsbekendtgørelsen afsnit 6A - Elektriske installationer\SB6A elektronisk udg..pdf" SYSGUARDFILE="SB.1\osguard.cp" SIZE="27721276"/>
    <WORKINGDIR>%SFT_MNT%\SB.1\Stærkstrømsbekendtgørelsen afsnit 6A - Elektriske installationer</WORKINGDIR>
    <VIRTUALENV TERMINATECHILDREN="FALSE">
    <DEPENDENCIES/>
    <ENVLIST/>
    </VIRTUALENV>
    <VM VALUE="Win32">
    <SUBSYSTEM VALUE="console"/>
    </VM>
    </IMPLEMENTATION>
    <DEPENDENCY>
    <CLIENTVERSION VERSION="4.6.0.0"/>
    </DEPENDENCY>
    <PACKAGE NAME="SB.1"/>
    <ABSTRACT>Stærkstrømsbekendtgørelsen 2009 udgivelse.</ABSTRACT>
    <MGMT_SHORTCUTLIST>
    <SHORTCUT LOCATION="%CSIDL_STARTMENU%\StærkstrømsBekendtgørelsen\" FILENAME="" OVERRIDDEN="TRUE" DISPLAY="Stærkstrømsbekendtgørelsen afsnit 6A" ICON="%SFT_MIME_SOURCE%/SB.1 Icons/Stærkstrømsbekendtgørelsen afsnit 6A.ico"/>
    </MGMT_SHORTCUTLIST>
    <MGMT_FILEASSOCIATIONS>
    <PROGIDLIST/>
    <FILEEXTENSIONLIST/>
    </MGMT_FILEASSOCIATIONS>
    </SOFTPKG>
    As you can see, the :
    <SUBSYSTEM VALUE="console"/>
    is already set.. which is the solution I've seen on various forums.
    Any ideas?
    Kindest regards, Martin

    The subsystem shouldn't be the issue. 
    It might be that AdobeReader writes back some data to the 'App-V User Delta' (.pkg file) that isn't consistent.
    It might be worth having a look into a user's .pkg files (use Tim Mangan's PKGView and/or Gridmetric's Application Virtualization Explorer Classic) and perhaps delete Adobe related information using a pre-launch script.
    I'd personally use the path to Adobe Reader as the FILENAME and the document path as the PARAMETER, but I'm not sure if that'd change anything.
    Running AdobeReader from within an App-V environment may cause some trouble (depending on the reader version, protected mode on/off, plugins) 
    Falko
    Twitter
    @kirk_tn   |   Blog
    kirxblog   |   Web
    kirx.org   |   Fireside
    appvbook.com

  • XenApp 6.5 + App-V - published applications not starting

    I am using App-V 5 in different Citrix environments together with Windows 2008r2, Citrix XenApp 6.5 and Workspace Manager 2014. I am logging on the desktop on a Citrix XenApp server and from there have the ability to start applications
    on another environment through the Program Neighbourhood Agent to another Citrix server, so I am basically running ICA to ICA.
    The problem I have here is that if a new user logs on (that has no userprofile) starts an App-V package on the other Citrix server first, then the ICA session is established, the userpofile gets loaded and then it logs the user off by
    itself. If however the user first starts a non-App-V published application first and then starts the App-V package everything works as it should.
    When a new user first starts an App-V package I see that it don’t create an AppV catalog under AppData\Roaming\Microsoft\. If the user however starts a non App-V application first, then it is created with its sub files and folders.
    Any idea why this is happning? Is perhaps the AppV application trying to launch before the creation of the userprofile is complete?

    Thanks’ guys for the replies.
    I have tried to publish the application directly in Citrix AppCenter. Same things happens, the program does not start on a clean profile, but the App-V AppData Roaming files are being created. If the user logs off and then tries again
    it works. I even tried to put a dealy for 30 seconds, but same things happens.
    This is not a server issue, it is a userprofile issue. On this test I only use 2 terminal servers in each zone. The App-V files on the servers are already loaded before the users logs on. And this only happens on a clean profile.
    Just to be clear: user logs on to Citrix XenApp server nr 1. From server 1 it wants to start a virtual application from server 2. ICA tunnel is being created between server nr 1 to server nr 2. Userprofile is being created on server nr
    2. App-V client starts on server nr 2, but fails if this is a new user without an existing profile. If the user starts a non App-V application on server nr 2 first, everything works as it should and the AppData\Roaming\Microsoft\AppV\Client folder is being
    created with subfolders and files, so if the second application a user starts is a virtual application it will work. Next time the user logs on it can start an App-V application on server 2 as the first application and everything will work from now on.

  • Webdynpro application running error

    Hi
    i am trying to run my webdynpro application, i got an error in webpage like .....
    Error when processing your request
    What has happened?
    The URL http://secp:8000/sap/bc/webdynpro/sap/wdr_test_application_api was not called due to an error.
    Note
     The following error text was processed in the system EC6 : Die URL enthält keine vollständige Domainangabe (secp statt secp.).
     The error occurred on the application server secp_EC6_00 and in the work process 0 .
     The termination type was: RABAX_STATE
     The ABAP call stack was:
    Method: CHECK of program CX_FQDN=======================CP
    Method: LATE_CONSTRUCTOR of program CL_WDR_UCF====================CP
    Method: HANDLE_REQUEST of program CL_WDR_UCF====================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    What can I do?
     If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system EC6 in transaction ST22.
     If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server secp_EC6_00 in transaction SM21.
     If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server secp_EC6_00 . In some situations, you may also need to analyze the trace files of other work processes.
     If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 001 -u: SAPUSER -l: E -s: EC6 -i: secp_EC6_00 -w: 0 -d: 20080812 -t: 161055 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    help me how to solve this ........
    Regards
    Karuna

    No Cross Posting!
    Read the "Rules of Engagement"
    Regards
    Juan

  • #### Cannot run application Application1 due to error deploying to Default.

    Hi all,
    Now, I am studing ADF 11. When I run my application, I meet a problem:
    This problem, "can not run your application", I try to stop java, or rebuild, or clean my application... but not successfull
    *#### Cannot run application Application1 due to error deploying to DefaultServer.*
    *[Application Application1 stopped and undeployed from Server Instance DefaultServer]*
    *[Server Instance DefaultServer is shutting down.  All applications currently running will be terminated and undeployed.]*
    *[sending request to shutdown server...]*
    C:\oracle\Middleware\jdeveloper\system\system11.1.1.0.31.51.88\DefaultDomain\bin\stopWebLogic.cmd
    Stopping Weblogic Server...
    But, If I remove adf 11 software, after that I install this software then okie, and I can run my application.
    Help me.
    thanks all

    Just for the record - my thinking is that there was an application deployed on the integrated server that was miss configured.
    Instead of removing the whole system directory - you could just remove the defaultServer subdirectory there.
    But even better would have been the option to remove the specific offending application see here:
    http://blogs.oracle.com/shay/2009/08/removing_applications_from_you.html

  • I get the following error message when trying to download ITunes on my computer running Windows XP - Error writing to file: C:\Program Files\Common Files\Apple Application Support\CFNetwork.dll

    I get the following error message when trying to download ITunes on my computer running Windows XP - Error writing to file: C:\Program Files\Common Files\Apple Application Support\CFNetwork.dll

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there also links to backup and recovery advice should it be needed.
    tt2

  • Error in Application.Run(DisplayLoginForm) and Remote Authentication in SharePoint Online Using the Client Object Model

    Hi guys
    I Think that is a simple error, but I don’t have enough knowledge in .NET apps.
    I make an console app that use Remote Authentication in SharePoint Online Using the Client Object Model, that a I downloaded from MSDN.
    This App run ok.
    But when I like to make a Windows From App. This component send me an error in Application.Run(DisplayLoginForm)
    This err msg :
     An unhandled exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
    Additional information: Starting a second message loop on a single thread is not a valid operation. Use Form.ShowDialog instead.
    Is there any way to use a form inside a windows form?
    Thank in advance
    Ramiro
    Ramiro B

    Hi,
    Based on the error message, please do as following:
    1. Check your code logic below:
    void btn_Click(object sender, System.EventArgs e)
    Thread t = new Thread(StartMyForm);
    t.TrySetApartmentState(ApartmentState.STA);
    t.Start();
    public static void StartMyForm()
    Application.Run(new MyForm(..));
    2.Try to add the following code line in your code.
    Application.Restart();
    If the issue still exists, please provide your requirement and code for a further research.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • TS2446 hai friendz, i try to download application fro apps sore , but i am getting 1 error getting error message "your apple id has been disabled".... plz help me...

    hai friendz,
    i try to download application fro apps sore , but i am getting 1 error getting error message "your apple id has been disabled"..
    plz help me...

    Depending on why it's been disabled you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page
    If it then works on your computer's iTunes but not your iPad / iPhone / iPod Touch then try logging out of your account on the device by tapping on your id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in and see if that 'refreshes' the account on it

  • Can a fusion web application run on smart phones also? Then what about database for mobiles?

    Sir,
    Can a fusion web application run on smart phones also? Then what about database for mobiles?
    Regards

    Any web application can run on smart phone because you are accessing it from browser so no need for database or application server on your mobile
    It is same as accessing any website on mobile
    If you are talking about mobile app
    check this - http://www.oracle.com/technetwork/developer-tools/adf-mobile/overview/adfmobile-1917693.html
    Ashish

  • Hey all just trying to set up my ipad synced up with itunes but now if i try to download any apps i put my password in then comes up with unknown error and wont download any help would be great

    hey all just trying to set up my ipad synced up with itunes but now if i try to download any apps i put my password in then comes up with unknown error and wont download any help would be great

    Reset your iPad and see if that helps.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • While trying to run it show error message : "The application or DLL C:\Program Files\Mozilla Firefox\sqlite3.dll is not a valid Windows image. Please check this against your installation diskette

    Just updated firefox. While trying to run it show error message : "The application or DLL C:\Program Files\Mozilla Firefox\sqlite3.dll is not a valid Windows image. Please check this against your installation diskette." Tried to download and install new firefox, but it alway show that the file is corrupt
    == Today ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)

    Do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can skip the step to create a new profile, that is not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • My iphone application running continuously in background to access some information by "beginBackgroundTaskWithExpirationHandler" then can i submit in appstore .

    My iphone application running continuously in background to access some information by "beginBackgroundTaskWithExpirationHandler" then can i submit in appstore ?

    This is a question that should probably be posed in the Developer forum.

  • How can I turn-off the apps which I have opened once in ISO 7.0.2. In previous version of ISO it was easy to turn- the opened apps by double clicking on home button and then click and hold on respective apps then click on cross sign.

    How can I turn-off the apps which I have opened once in ISO 7.0.2. In previous version of ISO it was easy to turn-off the opened apps by double clicking on home button and then click and hold on respective apps then click on cross sign but in this version I could not do so and my iPad appears slower.

    Close inactive apps
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe the app's windows upwards to close
    3. The app will fly off the screen

Maybe you are looking for

  • O/P problem for po

    Dear Experts, I had a one issue. When I goes to T. Code u2013 ME23N and gives PO no, After that I clicks on Print preview, System generates spool request in SP01  instead showing Print Preview. Can anybody guide what is this problem and where exactly

  • Shift Apple 4

    When I use the shift Apple 4 to take a screen shot, the image always saves as a .png. How do I get my Mac to automatically save as .jpg please???

  • Integration of two Form and making a single form

    Hi All, I have developed two Oracle Apps Costume form Each form has there own logic and it has developed with the content cnavas. Now the client is interested to put both the form with single prompt and it is having TAB. Mence I need to do it in TAB

  • Network connection Failure:

    this error comes up at start up then intermittently, internet connection works fine, not other apparent networks active, looking to see how I can identify which network item the computer thinks is failing. I have tried using network preferences to de

  • I can't publish preview any of my MX 2004 swf

    Just upgraded to flash 8 on OSX, but now I can't publish preview any of my MX 2004 files, I get an output error can't find URL? If I create a new flash file in 8 and publish preview, it works fine??? any pointers?