Oracle iSales - iPad application

Hello,
Below is my story:
Environment :
iPad3 - 16GB with iOS 6
Background :
I have created a html page in which I have added images, texts, jquery plugin(slider control (reveal.js) - which is mainly used to show each section as a slide).
Now I have to show this html page in iSales, and for that we have done all the required configuration in iSales, deployed the page on server and downloaded that html page in iSales app in iPad. After doing this, I am able to open that slides in iSales application in iPad.
Issue :
When I am navigating to slides of this page in iSales app, after some slides the iSales application crashed. when I studied the error log from iPad its showing issue of memory crashing.
There is no specific pattern of this crash. Its crashing anytime.. Some time its not even crashing. The same thing is tested in iPad2 with same version of iSales and there it never crashed but its crashing only in iPad3.
Also I have tested the same page in safari browser in iPad3 , and there its running fine-no crashing problem.
Note: While doing above steps, only iSales app was running in iPad no other application was active
Error Log from iPad:
Sep 19 17:05:40 My-iPad mobile_assertion_agent[373] <Notice>: service_one_connection: Connection closed for client iTunes.
Sep 19 17:05:44 My-iPad disconnectedmobilesales[342] <Warning>: Received memory warning.
Sep 19 17:05:46 My-iPad disconnectedmobilesales[342] <Warning>: Received memory warning.
Sep 19 17:05:47 My-iPad disconnectedmobilesales[342] <Warning>: Received memory warning.
Sep 19 17:05:49 My-iPad disconnectedmobilesales[342] <Warning>: Received memory warning.
Sep 19 17:05:51 My-iPad disconnectedmobilesales[342] <Warning>: Received memory warning.
Sep 19 17:05:53 My-iPad backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
Sep 19 17:05:53 My-iPad UserEventAgent[13] <Notice>: jetsam: kernel termination snapshot being created
Sep 19 17:05:53 My-iPad com.apple.launchd[1] (UIKitApplication:com.oracle.disconnectedmobilesales[0x1a2c][342]) <Notice>: (UIKitApplication:com.oracle.disconnectedmobilesales[0x1a2c]) Exited: Killed: 9
Sep 19 17:05:53 My-iPad backboardd[26] <Warning>: Application 'UIKitApplication:com.oracle.disconnectedmobilesales[0x1a2c]' exited abnormally with signal 9: Killed: 9
Sep 19 17:05:53 My-iPad ReportCrash[403] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
Sep 19 17:05:53 My-iPad ReportCrash[403] <Notice>: Saved crashreport to /Library/Logs/CrashReporter/LowMemory-2013-09-19-170553.plist using uid: 0 gid: 0, synthetic_euid: 0 egid: 0
The above issue shows that while running this html page in iSales its consuming more memory
I tried below options to reduce memory consumption:
1) Reduced number of slides from 35 to 12
2) Removed all the images (only text and jquery plugin)
3) Created multiple pages with some set of slides instead of having all the slides in single page
4) Tested on 4 different iPad3
I tried many other options but not getting success. So I am expecting some help from you guys so that I can resolve this issue.
Please let me know If any more information is required.
Thanks

HI
It is available with the Release 11i.
I donot think that Oracle provides a demo on that.
Regards,
Bibs

Similar Messages

  • 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

  • Deploying a war file in Oracle Apps's application server

    Hi all, i have a war file which i want to deploy inside oracle apps's application server, i just want to know the location to put my war file in so that the application server will auto deploy it.And also provide port and url(Application server) where i can access that web app.

    Babu,
    There are a lot of dependencies involved. app severes before 10g are not generic j2ee server. what kind of files are you putting in ur war file?
    --Shiv                                                                                                                                                                                                                                                                                                                                       

  • New Note 790189.1 - Oracle Clusterware and Application Failover Management

    Hi all,
    please, note the newly created Metalink Note 790189.1 - Oracle Clusterware and Application Failover Management if you want to use Oracle Clusterware as a general purpose cluster solution. The note intends to clarify and to explain the current situation in regards to the supportability of applications managed by Oracle Clusterware.
    In environments not including Oracle RAC, Oracle Clusterware still provides the level of high availability that is commonly known to be achievable for applications and databases managed in (failover) cluster environments. These environments can include Oracle Single Instance Databases, Oracle Application Servers, Oracle Enterprise Manager components, third party databases, or any other kind of application. (For more information on Oracle Clusterware 11g in general, please, refer to [Oracle Clusterware homepage|http://otn.oracle.com/clusterware].)
    Metalink Note 790189.1 - Oracle Clusterware and Application Failover Management is tightly integrated with the information on application failover management available on the [Oracle Clusterware homepage|http://otn.oracle.com/clusterware] and discusses typical questions like
    * Terminology
    * Script supportability and preconfigured agents
    * How to prove that action scripts work outside of Oracle Clusterware
    * Supportability of the Oracle Database Single Instance example scripts
    * How do I know whether a certain script is supported as a preconfigured agent?
    Metalink Note 790189.1, however, does not change the level of support that has been introduced for these kind of configurations as of Oracle Database 10g Release 2: "Generally, Oracle does not support action scripts in the strict terms of supporting individual code fragments. Oracle fully supports the integration of individual action scripts proven to run outside of Oracle Clusterware into the Oracle Clusterware management stack. Supported operations therefore typically involve crs_* commands such as crs_profile, crs_register, crs_setperm, crs_getperm, crs_start, crs_stop, and crs_relocate invoked on custom resources. If actions scripts are used as part of a preconfigured agent, Oracle or the application provider who provides the agent will support the integration of this agent, while only the application provider will provide support for the individual action scripts."
    Just for your information. Thanks,
    Markus

    not meant to be a question - rather an announcement.

  • Open Script supports Oracle Fusion Middleware Application

    Hi,
    Can anybody please confirm whether Oracle Open Script 9.2 supports scripting for Oracle Fusion Middleware Applications?
    We have received a project proposal to do load test for the same.
    Appreciate for early response
    Thanks in advance
    Regards,
    Mahesh

    Hi Mahesh
    ATS supports different protocols when you say Fusion Middleware do you know which protocols you are testing ?
    I have used ATS to test Middleware a lot but is really the protocol that you need to test so find out the protocol that you are testing and you will know if its supported by ATS.
    Regards
    Alex

  • 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

  • Oracle 8/8i application server

    Hello
    Where can i find the download for Oracle 8/8i Application Server
    on Windows?
    Victor.

    Michael,
    Unfortunately I don't have any other suggestions for your current install.
    I can point you to a guide I wrotefor getting a stand alone system up and running pretty quickly.
    Rich

  • Oracle repository in application server

    how to create the oracle repository in application server.

    What service the repository is for?
    For example, if you use JMS service, you could create database, or file based repository. Or are you talking about the repository for deployment?

  • Can we run oracle Forms 5 Application with 10G in Client/Server?

    Hi All,
    Can we run oracle Forms 5 Application with 10G in Client/Server
    Mode?
    Regards
    Gaurav

    In theory you can run it 2 tier - which means that you have the client (the machine the user is sitting at) being the same machine in which the forms application server is running. So yes. But specifically, we don't support a client server runtime anymore. 6i was the last version.
    With 10g you will be running through a browser.
    Regards
    grant

  • Oracle BAM Web Applications not supported by Firefox and Chrome browsers

    Hi,
    1) To enable Oracle BAM in a BPM project, when a project data object is marked as a business indicator, the Process Engine stores
    its value in the BAM and DataMart databases, as explained in the documentation. So, How can we use this information to monitor the process activity? Is there any detailed documentation or a sample?
    2) Does Oracle BAM Web Applications still not supported by the browsers Firefox (3.5 and 3.6) and Google Chrome?
    Tahnks. Regards,
    Hanine

    Hanine,
    The business indicators can be used when creating your data objects in BAM Architect and BAM Active Studio.
    The BAM tools still require Internet Explorer only.
    Heidi.

  • Oracle 9i Real Application Clusters Failover

    I am running CFMX 6.1 with the 3.5 JDBC drivers and
    connecting to a 2 node Oracle 9i Real Application Cluster. The
    problem I am having is when one of the 2 nodes becomes unavailable;
    CFMX does not seem to be failing over seamlessly to the second
    node. Its almost as if the database connections need to first reach
    the timeout limit setup in the datasource setting in CF Admin
    before the will start to failover. I’m not 100% sure that
    they are always even failing over after that has expired. I usually
    end up having to restart CFMX service to renew the DB connections.
    This is a pest when doing DB maintenance since it causes errors on
    our site.
    I do have Maintain Connections checked, with a 5 minute
    timeout. I have my datasources setup as "Other" and am using the
    following connection string:
    jdbc:macromedia:oracle://Node1:1521;SERVICENAME=heartdrp;AlternateServers=(Node2:1521);Loa dBalancing=true
    Does anyone have an experience of had similar problems with
    CFMX not failover DB connections on an Oracle RAC system? Ideally,
    the connections would immediately go to the other node in the RAC
    if one node went down, but CF seems to keep trying to connect to
    the original node, thus not allowing for a true "failover" setup.
    I can provide more info if needed......THANKS!!

    In this weekend I will begin that odessy...
    I will give some feedback by monday!
    FS

  • How to configure SAP 4.7 to Oracle 9i Real Application Cluster ?

    We are using SAP 4.7 running on Oracle 9i with HP-UNIX clustering.
    If we change our existing SAP 4.7 for Oracle 9i Real Application Cluster, is it very complicated ?
    Do we need to re-install SAP and Oracle ?

    Both 4.7 and Oracle 9 are already out of support.
    If you plan to use RAC then I'd first upgrade the application and the database and then implement RAC. You won't have support for your environment without additional costs.
    Markus

  • Requirements to become an Oracle certified Java application

    Hi everyone,
    I want to know any information on how to become an Oracle certified Java application for the company I work for.
    Technologies involved are Java and Eclipse.
    any information or contact you can provide will be highly appreciated.
    Best regards,
    Sebastian

    My suggestion is:
    Consider First:
    1) The exam 1z0-051 which should demonstrate your SQL skills.
    2) The exam 1z0-047 which should earn an SQL Certified Expert Certificate.
    Beyond that you will need to become more familiar with PL/SQL and go towards a PL/SQL developer OCA then OCP
    I believe the following thread is relevant 1Z0-146
    Read the blogs/FAW at the top of the forum, and become familair with the oracle education certification pages.
    You may also seek out some the the '2-day' training as well.
    Hoep this helps.

Maybe you are looking for