Developing Applications for Mobiles - event, inlcuding APEX session

Just a heads up that on the 5th of Feb there is a special interest group on mobile application development including a session on Apex, full details here
https://blogs.oracle.com/grantronald/entry/special_interest_group_on_mobile
Regards
Grant

Hi Anoush,
are you using the most recent version of the notification plug-in (version 1.3)? Because almost two years ago we fixed that bug. From the release notes
v1.3 (24-Nov-2011)
-) Fixed issue with CSS files that caused underlying Application Express session to be invalidated
I think that covers your problem. Just download and update the plug-in and you should be good.
regards
patrick

Similar Messages

  • Oracle bpm worspace application for mobile...

    is there any bpm workspace application for mobile ?? ADF mobile ??

    I was looking for a Mobile app for BPM and came across this blog:
    https://blogs.oracle.com/fusionmiddleware/entry/unleashing_your_mobile_workforce
    I want to highlight this:
    "Oracle Business Process Management (BPM) can accomplish your workflow needs, and BPM includes a task list application for iPad, iPhone, and Android. "
    Is this something coming in the next release?

  • I am looking for a good development application for IOS. Please help me.Thanks.

    I am looking for a good development application for IOS. Please help me.Thanks.

    Xcode is required to submit your app to the App Store. So at some point (even if it is just to submit) you will need to use it.

  • How to develope application for converting excel data into oracle database

    I am very new to the oracle world. I want to develop application for converting excel sheet into oracle database using oracle forms. I have basic knowldge of oracle but i am totally new to the forms. Can anybody tel me step by step procedure to do this task? Please help me out in this problem.
    Thanx in advance.

    Hello,
    just do a "Search" in this forum with words "excell to oracle"... and you could find lot of posts about that, i.e.:
    Re: How to load excel-csv file into oracle database
    Jose L

  • Can I use the SDK on a PC to develop applications for the iPad, iPhone, etc

    I was thinking about paying the $99 a year to join the developer program because I want to download the SDK and try creating applications for the iPhone and iPad; however, can you download the SDK and use it on a PC or does it require that you have a Mac in order to do development work? The xcode4 and interface builder feature looked rather nice but I didn't know if I were to sign up and download if it would all run on my PC (Windows 7)or not.

    It will not run under windows, and you need an Intel-based Mac running Snow Leopard to use it. Have you looked at the Mac Mini?
    http://store.apple.com/us/browse/home/shopmac/family/macmini?mco=MTQzMDMxODY

  • Developing application for usb6211 without having device

    Hi
    1.  Is there a way to install the drivers for a usb-6211 without actually connecting one to the bus?  I've just gotten a new computer and installed a copy of LV 8.2.1 on it.  My vi's (that include daqmx code)  do not compile because iLV's looking for daq stuff.  IThe install included installing daqmx8.5.  Is there something else that I have to do?
    2.  Is there a way to simulate a usb-6211 so that I can develop code for one without actually having one connected to the bus?
    3.  Why don't any of the multifunction usb cards have watchdog timer, and how can I make it safer to operate a pump (that is make the pump turn off) when the software or hardware goes south (or even if the program is exited normally)?  I'm looking for a tricky work-around if this is at all possible.
    Thanks
    LV 8.6 on Windoze XP

    Answer for #2:- Yes
    Start MAX
    Right click Devices and Interfaces
    Select Create New
    Double click on NI DAQmx Simulated Devives
    Expand the M Series DAQ tree
    Choose USB-6211
    I do not know what functionality it exposes for the simulated card.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

  • Development tools for mobile device apps.

    Is there tools to develop sap mobile apps/add-ons?

    Hi JBrotto,I have an API in order to develop mobile solutions for Business One and others ERP.
    Please get in contact directly with me if you need more info.
    Kind Regards,
    paolo
    Edited by: Paolo Manfrin on Oct 21, 2011 1:00 PM

  • What is missing, when I render my Application for Mobile Support, like PDA?

    Hello @ all,
    I have a question about ADF Mobile.
    I implemented a bean, which has a Method:
    getRenderKitId(){
    AdfFacesContext afc = AdfFacesContext.getCurrentInstance();
    Agent agent = afc.getAgent();
    if(Agent.TYPE_PDA.equals(agent.getType().toString()))               return "oracle.adfinternal.view.faces.ui.laf.simple.pda";          
    else if(Agent.AGENT_GECKO.equals(agent.getAgentName()))
         return "com.apress.projsf.xul.ajax";
    else if(Agent.AGENT_IE.equals(agent.getAgentName()) &&
    Agent.TYPE_DESKTOP.equals(agent.getType()))
         return "com.apress.projsf.htc.ajax";
    else if(Agent.AGENT_WEBKIT.equals(agent.getAgentName()))
         return "com.apress.projsf.html.ajax";
    else
         return RenderKitFactory.HTML_BASIC_RENDER_KIT;
    When I debug my Application on an PDA, this Method returns the right String for PDAs "oracle.adfinternal.view.faces.ui.laf.simple.pda".
    I also have the public class DynamicRenderKitViewHandler extends ViewHandlerWrapper{
    public String calculateRenderKitId(FacesContext context){
         String renderKitId = super.calculateRenderKitId(context);
         Matcher matcher = DYNAMICRENDER_KIT_ID.matcher(renderKitId);
         if(matcher.matches()){
         String expression = matcher.group(1);
              Application application = context.getApplication();
              ValueBinding binding = application.createValueBinding(expression);
              if(binding.getType(context) == String.class)
                   renderKitId = (String) binding.getValue(context);
              return renderKitId;
    The return Value of this Method is also oracle.adfinternal.view.faces.ui.laf.simple.pda.
    So know my question is, what else do I have to implement, to render my components on a PDA. Because, when i run my Application on a Pocket PC 2003 with Windows CE, the Mobile Internet Browser shows me the same rendering page like it is on the "normal" PC Internet Browser.
    Do I have to work with the ADF Faces Tags, like the <af:commandButton ...>
    because, i don't use these tags.
    The Libraries i have imported are, the adf-faces-api-10_1_3_0_4.jar file and simular the impl-jar.
    Please could anybody help me?

    Hello Jrozier,
    first I wanne thank you for your reply.
    Know my ApplicationBean getRenderKitId Method returns "oracle.adf.core"
    I had wrote a little JSP that looks like the following:
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <afh:html>
    <afh:head>
         <title>Test Page</title>          
    </afh:head>
    <afh:body>
    Testing
    </afh:body>
    </afh:html>
    But when I try to run my Application, I get the following error:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: org.ajax4jsf.framework.ajax.AjaxViewRootRIOneOne
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:372)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:101)
         oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:101)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:65)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:226)
         oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    What could go wrong?

  • Rights in developing software for mobile

    Hello!
    I want to make a software and sell it. It will be developped under eclipse and carbidej from nokia. Could you tell me if I can sell it directly or do I have to buy a licence for this kind of software developping?
    Thanks,
    Cristian

    In general, you only need a license for something you redistribute. Eclipse is "just" a development environment and CarbideJ seem to be as well. It is unlikely that they will be distributed with your application, so you are unlikely to run into trouble by using those to develop your software.
    You may need to worry about the license if your application includes classes from either product.
    In any case, both products come with licensing terms, read those (or have a lawyer read them) if you want to know what you can and cannot do.

  • Develop application for java  Monitoring and Management

    hi
    i would like to develop an application that enables me to monitor and manage Java applications and instead of using jconsole ormc4j
    please can you tell mz how to start

    The various general JMX clients such JConsole, [MC4J|http://mc4j.org/confluence/display/mc4j/Home] (the tool referenced with "or mc4j" above), VisualVM, and jManage all use the same approach for remote JMX management that you can use ([JSR 160|http://jcp.org/en/jsr/detail?id=160]).
    Some useful resources include the [Java Tutorial on JMX Remote Management|http://java.sun.com/docs/books/tutorial/jmx/remote/index.html], [Remote JMX: Connectors and Adapters|http://marxsoftware.blogspot.com/2008/08/remote-jmx-connectors-and-adapters.html], and [Remote JMX: With and Without Spring and Proxies|http://marxsoftware.blogspot.com/2008/06/remote-jmx-with-and-without-spring-and.html] (focus on non-Spring clients with and without proxies).

  • J2ee application for mobile,pda

    hi all,
    I am going to build a web-based application using j2ee. I want my application to be accessiable with mobile and PDA's also. I have heard that few application server supports it and i don't have to change anything weather it is called by mobile or desktop pc.
    Can anybody guid me on this issue? How should i proceed?
    Thanks in advance
    Nitin

    Nope, not possible

  • Developing Application for third-party Java API (jar) libraries

    I need some of your inputs on architecting a web based solution to invoke Vantive java API using SAP Netweaver Technology. The API provides methods to connect, insert, update, fetch data from Vantive system using java classes. Pl. let me know which would be best way (webdynpro/ j2ee/java) to create & run web based forms to connect, insert and update data in Vantive using these Java APIs.

    I think there is your choice only that based on your experience with web technologies (in case of integration with portal as I understood) but the nominee with the best integration capabilities is Dynpro. Of course you can simply use standard JEE techniques (see the official JSR for official technology and release notes of official restrictions by SAP implementation). Third party integrations are available in both choices: Dynpro or not. In general your choice is better to be with an appropriate estimation, isn't it? Or try to define concretely criteria of such integration.

  • Using Mac OS X 10.8.3 to develop applications for 10.7

    Hi,
    I am new to Xcode and would like to double check that I will be able to create applications that will run on both MacOS X 10.7 and 10.8 when my machine has Mac OS X 10.8.3.  Are there any specific things I should avoid to be sure my application is able to run on both 10.7 and 10.8?
    Paul

    There is not too much to avoid, just to be aware of. 10.7 and 10.8 are quite close. Unless you are using something that depends on 10.8, you shouldn't even need to worry about it. Just set your deployment to 10.7. If you want to support new features in 10.8, you can do that too with a little effort.

  • Need to develop a Mobile Application for Time Entry

    Hi,
    I need to develop a Mobile App for Time Entry details which can used as an Applicaion on Android or iOS.
    Can anyone help me with the approach i need to follow to develop such an application which can be used on Android or other OS.
    Thanks,
    CV

    Hi CV,
    Oracle Application Development Framework Mobile (ADF Mobile) browser is a standards-based framework that enables the rapid development of enterprise mobile applications. Oracle Fusion Middleware 11g release 1 of ADF Mobile browser extends Oracle ADF to browsers running on mobile devices. Because ADF Mobile browser is built upon the component model of Java Server Faces (JSF), you can quickly develop applications for mobile browsers. ADF Mobile browser's mobile-specific extensions to JSF enable you to develop mobile applications using the same methodologies for developing JSF applications for the desktop.
    http://docs.oracle.com/cd/E17904_01/web.1111/e10140/pda_ovrv.htm#ADFMB101
    Cheers,
    Vlad
    Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question. If you think this is helpful, please consider giving points

  • Developing Online Help for Mobile Applications

    My company is just starting to develop applications for mobile devices (cell phone, iPad
    , etc.). Can anyone tell me whether RoboHelp is the best Adobe application for devel
    oping online help for mobile devices or if some other application should be used? Thanks.

    Thanks for the insight. I haven't read about RH8 so wasn't aware of that difference. No, I haven't tried the demo yet. I guess that would be the logical next step. I've been trying to get to the STC web site to download the PDF file of the presentation, but can't get the web site to open. Oh well. Thanks again.
    Regards, Fred W. Brown
    Technical Writer 3
    InnovaSystems International, LLC
    (757) 282-7921
    • Writing is simple. First you have to make sure you have plenty of paper... sharp pencils... typewriter ribbon. Then put your belly up to the desk... roll a sheet of paper into the typewriter... and stare at it until beads of blood appear on your forehead.
    • Prof. Cosmo Fishhawk, in Shoe

Maybe you are looking for