Impossible to test or debug on iPad application

Hello,
I'm trying to test my AS3 application done in Flash CC pro 2014 v14.1.0.96 with the command menu "test on the USB Device" or "debug on USB device", but it always says that my device are not connected ! (although of course they are)
It worked one week ago, and now, it works as it wants.
It seems like a recent update has changed some things. I had to come back to XCode 5 to have the ios simulator. I wanted to go back to an earlier version of Flash, but it seems now impossible !
The console log says at one time "Adobe Flash CC 2014: Failed to open file", and it stops trying to execute the debugger.
The strange thing also is that the debug environment doesn't open neither.
Do you have any idea to make it work ?
Thanks

Yes, I see my device on all my softwares (file browser, itunes, and even in the Flash IDE).
But I tried to remove the iOS simulator link and to completely remove Xcode, and it eventually worked !.... It should not be that way... It is like the iOS simulator is in conflict with the USB debugging tool. If I launch iOS simulator before launching the USB debugging tool, this last one won't work (that's what I think).

Similar Messages

  • Debug the swing application from eclipse

    Hi
    I had a swing application, to create a exe file i build the application using using build.xml. To run the application we need to open the exe file.
    I want to debug this swing application from eclipse. Can anybody please tell me how to debug this application.
    Note: I can able to debug simple swing application. But i can't able to debug this application.
    Thanks
    mindus

    If it's an actual .exe--that is, if you've compiled it to a native Windows executable--then you can't debug it using a Java debugger (such as the one in Eclipse).
    If, on the other hand, you just have a .jar file or a bunch of .class files, then you can debug this app the same way you debugged the other one.
    If you don't provide more details about what you actually did and what exact problems you're having ("I can't do it" contains no useful information whatsoever), then it's impossible to provide any more detailed advice than this.

  • I am looking for a load testing tool for my flex application

    I am looking for a load testing tool for my flex application having a limited budghet of 1000-1500$. I have gone through NEOLoad,WebUiLoad all are very expensive.

    Do you have iPad 1 or 2?
    You can connect iPad 1 via a VGA adapter to any projector with a VGA input (all projectors have this).
    You can connect iPad 2 via VGA or HDMI.
    I like Epson or Sony for projectors.

  • LSMW testing and Debugging

    Hi
      I really need help about testing and debugging LSMW. I really appreciate  if anybody can provide me enough help on how to test LSMW and Debug in QA environment
    Pls help me

    Once you input the Project, Subproject and Objec on the initial screen and execute it.
    Here you are guided through the individual steps of data migration. Example: Maintain Object attribute...etc.
    on the application tool bar, click on the personal menu push button, you will list of all the steps. Check the Display conversion program.
    After you maintain the field mapping, read data and convert data. you can execute the Display conversion program step. This will display the generated progrom.
    Here you can set the <b>break point</b>.
    Other way is while doing the field mapping, you can set hard break-point.

  • Testing and debugging

    This question was posted in response to the following article: http://help.adobe.com/en_US/flashbuilder/using/WSe4e4b720da9dedb5-6caff02f136a645e895-7fff .html

    Probable BUG:
    I believe the final section of the documentation "Change Application ID while testing or debugging" is incorrect.  Despite removing the ".debug" from the AppID in the run configuration, and making certain nothing of that nature appears in the manifest (just covering all the bases even though that's not referenced in this section), when I attempt to build onto my device, I still receive an AppID mismatch error [Exception occurred during launch Reason: The AIR application ID "org.PictureTools.Apps.PictureToolsOnTheMoveMakeIt.debug" does not match the pattern "org.PictureTools.apps.PictureToolsOnTheMoveMakeIt" specified in the provisioning profile. Either change the applications ID, or use a provisioning profile that matches the existing ID.]
    Any solutions?
    Btw... The error dialog contains incorrect English grammar.  The possessive "Either change the applications ID, or use..." should be denoted using an apostrophe, "Either change the application's ID, or use...". I so believe.  Cheers!

  • How to show ipad application in itunes, but will only be assessable to owners, not the general public.Using lock code/password protected on iTunes

    How to show ipad application in itunes, but will only be assessable to owners, not the general public by using lock code/password protected on iTunes

    So if I understand you properly, I need to create EOs for all my list of values (which are based on views of Oracle apps tables) and base my VO on those EOs. And then I setup associations between these EOs and the Item EO. Then I include the these EOs in my Items VO and add the description attributes to my list of attributes. I had done this for the list of users, but for the views of Oracle I had just created read only VO. Sounds like that won't work if I want to display the description. I know what to do - I guess I was hoping there was a way to use the read only VO.
    Thanks
    Karen

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • Error while configuring Debugging for WebDynpro Application

    Hi Experts,
    I am trying to configure Portal server for debugging a WebDynpro application.
    In NWDS , in Debug configuration
    When i tried to add my Webdynpro Project and application under Debug tab , No problem.
    But when i checked J2EE Engine tab : it showed the following error.
    <b>[J2EE Engine]: the selected server node does not run  in restricted load balancing mode, please configure it correctly so that the URL extention can be used</b>
    And ignoring it when i started debugging the application , the URL was formed like this :
    http://<host>:50000/@@@DEBUG@@@7672950/webdynpro/dispatcher
    /local/WDtest/WDtest?SAPtestId=1
    with the error :   The requested resource does not exist.
    Details: Go to main page of this application!
    Can anybody help me to fix the configuration.
    Regards,
    Ashish Shah

    Hi,
    To configure to the debugging mode... follow the steps:
    1. Select "SDM" from J2EE engine (To get this view navigate thru Window--> Show View --> J2EE Engine)
    2. Make a right click on "SDM" and choose "Enabling Debugging of Process"
    3. Now, Navigate to Run --> Debug --> Select your Project as "Webdynpro Application" and click "new" button
    4. Now give some name and Click BROWSE to select ur project and then click APPLY and DEBUG
    Or if u use 2004s, then u can do the settings in Portal itself...which gives u more clear information...  follow the link
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0cb32c5-36a7-2910-2c9b-ba4a5bbdbb56">WebDynpro Java Debug Configurator</a>
    Hope it helps...
    Regards / Guru

  • Debugging abap webdynpro application

    hi gurus,
    an abap webdynpro application is runninf fine in developmernt server but not in production system. i transported the application again to refresh the application in production. but still the error persists. now i want to debug the abap editor in production system. so i wrote code 'BREAK POINT' in abap editor. but program is not stopping at this code. in dev as well as in prod system. please suggest.
    Moderator Message: There is a separate forum for Webdypro for ABAP. Please post your question there.
    Edited by: kishan P on Nov 29, 2010 1:25 PM

    Hi
    Few links to check:
    External debugging is not working
    Re: Debugging Abap webdynpro appln
    Re: Unable to Debug WD ABAP application
    Dedug is not working in Production Server.
    a) Check on number of R/3 sessions opened at a time.
    b) Check that user ID configured in portal using System Mapping Under 'Delegate User Administration' is the same user for which you are setting external breakpoint in backend system.

  • How to unlock ipad over find my ipad application?

    How to unlock ipad remotely via find my ipad application?

    Restore it.
    If you are unable to restore the type "unable to restore " into the search bar at the top of this page by Support and read the resulting help article.

  • Shouldn't 180 degree orientation be a standard for all iPad applications?

    I find it curious that there isn’t a de facto standard for viewing angles on all third-party applications, and that some applications literally appear “upside down,” when trying to use the iPad in its case - with the easel flap tucked in - for landscape viewing.
    Jonathan Ives’ eloquent “the device conforms to you,” notwithstanding, it would seem to me that reorientation - 180 degrees - should be a basic requirement for any iPad application.
    Of course I can easily flip the iPad around, but then it renders the case design ergonomically ineffective, and hence, I conform.
    While not a big deal (yet), I’m starting to now question some of the premium prices, particularly for applications that do not perform an essential iPad task such as this.

    Hi Steve
    No you're not quite getting me. The apps (and games) I mentioned will not move at all, so essentially they appear in a fixed location. If you have the iPad turned the "wrong way," you have to physically turn the iPad 180 degrees, as if the iPad were a static device, to view these apps correctly.
    The assumption here (I think, anyway), is that the iPad handles the orientation of third-party applications, orientating them when you move the iPad. In principle that's correct, but obviously the third-party developers have to develop the application to behave this way. And, as I've pointed out, a handful are not doing this. Again, I'm not talking about iphone/ipod ports, but actual iPad releases, with a premium price.
    The application, "The Elements" which is more like an interactive book, is a prime example of what I'm talking about. I bought it on the day of the iPad release, and with my iPad tucked into the case, set up as an easel comfortably on my lap, the program displayed upside down. If you look at their recent release notes for the latest update, it even says "orientation now fixed." So obviously they were aware of this limitation.
    So apparently, there's either not a requirement for an application/game to have to take advantage of the iPad's reorientation abilities, or it's somehow getting past without notice.
    Sorry to be so cryptic in my post. I guess it would have been simpler to ask why there are some iPad developed applications that don't move at all when you flip the iPad 180 degrees.
    Message was edited by: Greg Paxton
    Message was edited by: Greg Paxton

  • How to Debug C++ Multithreaded Application in Solaris

    Hi All,
    I am working in Solaris Sparc 5.8 Machine. I need to debug Multithreaded C++ Application in Unix Environment.
    I am using dbx debugger.
    Please explain me how to debug multithreaded applications. if possible please explain me with example.
    Thanks in Advance.
    Thanks & Regards,
    Vasu

    1. Look over the dbx manual that comes with Sun Studio. Dbx includes many features for debugging MT code.
    2. If you have specific questions after reading the manual and trying out the features, ask them in the debugger forum:
    http://forum.sun.com/forum.jspa?forumID=257

  • How to test and deploy a BPEL application in JDeveloper?

    Hi guys!
    I'm trying to use the cue card overview (step 4) to test and deploy a BPEL application.
    I'm using the new version o JDeveloper Preview (10.1.3.1.0) and when a click in "Launch the Create Integration Server Connection wizard" it asks me about Application Server, host name and port number. What I should fill in? Should I start BPEL process manager outside JDeveloper to start testing?
    In the wizard of "Create Application Server Connection" (step 2 of 4: Authentication) it asks me about username (which is filled with oc4jadmin) and Password. What password I shout use here?
    Finally, in the step 3 of 4 (Connection) the wizard asks me about host name and RMI port, what I should fill in?
    Any help will be appreciate

    You need an istance of a BPEL server to test this.
    So download the SOA Suite Developer Preview and install on your machine - this will provide you with a server you can test BPEL on.
    http://www.oracle.com/technology/software/products/ias/soapreview.html

  • Debugging of any Application on WAS

    Hello Everybody,
    Can two developers can debug the same application at the same time on the same server?
    If not, then can two developers can debug the different but dependant applications at the same time on the same server?
    What are the possible options are available to debug any applications on the server?
    Thanks,
    Bhavik

    Hi Rich,
    This is Bhavik here.
    I have tried to debug from two different workstations for a same application running on same server under same network.
    If one is debugging, it gives following error to other:
    Failed to connect to remote VM.Connection refused.
    If first person comes out of the debugging and another trying to step into, at that moment there is no problem in debugging.
    So, what should I need to do more to debug simulteneously?
    My WAS server : NW04 SP12
    My NWDS: SP12
    I have enabled my debug mode in config tool.
    Thanks,
    Bhavik

  • Accessing a Hana Database through a native iPad application

    Hi Guys,
    I was wondering if there was a way by which a connection can be established to retrieve data from a Hana Database through an iPad application .
    Our team has to build a POC (timelines are very crunchy, about 1 week to build it and get it up and running) on the iPad .
    Please help.
    ~
    Shrayas
    I065680.

    Actually we at Approyo have an Ipad application that we run SAP and all the solutions in a native format.
    http://www.approyo.com/#!projects/c1vw1
    see the photo's attached and the web link...Hope they help

Maybe you are looking for

  • SAPMF02K components in ECC 6.0

    Hi All, I'm new in this forum ... My problem is the following: Im working in an Upgrade Project and we have to make some test with CREMAS IDOCS. The basic type CREMAS03 has an extension with some Z segments. When we change the field "Alternat.payee"

  • SQL Cluster - Unable to obtain IP Address from System Center IP Pool

    Hi everyone, we are trying to deploy a SQL cluster into a windows azure pack tenant cloud. Our azure pack environment contains: - 4X Hyper-V server in a failover cluster - 1X SCVMM server - multiple WAP server Steps we have done: -    Windows failove

  • How to view controlfile

    Hello all, I want to view control file contents. I've used the command alter database backup controlfile to trace as 'C:\control.sql'; is there any way i cn view the file without accessing the file system.?

  • Won't print alignment page or any page after new ink cartridges installed.

    I just installed a new color and a new black ink cartridge into my HP Envy 5531. I have never had an issue with this printer before, owned it for 2 years. After installing it, it tells me to print an alignment page, I press ok. The alignment page com

  • What business scenario require both of these setting

    Hi QM gurus, May I know if system allows both the Physical Sample Drawing and Sample Determination to happen at the sametime. In another word, I assign sampling procedure using sampling schema for the activity of sample size, and in the meantime, the