MyRIO Mobile App Framework

We are making our hackathon winning Mobile App Framework for LabVIEW available!
The framework makes it easy to build mobile apps and web apps from LabVIEW. 
Learn more on our webpage http://myrio.chrislarson.me
Cheers!
Chris
I build web apps for LabVIEW
http://chrislarson.me

Moving this discussion to the Adobe Shape CC forum.

Similar Messages

  • Paypal button for jquery mobile app in DW CS5.5

    Using the jquery mobile app framework in DW CS5.5 and need help in using Paypal mobile.
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <input type="hidden" name="cmd" value="_xclick" />
      <input type="hidden" name="bn" value="webassist.dreamweaver.4_5_0" />
      <input type="hidden" name="business" value="[email protected]" />
      <input type="hidden" name="item_name" value="Odor Cat" />
      <input type="hidden" name="amount" value="19.50" />
      <input type="hidden" name="currency_code" value="USD" />
      <input type="hidden" name="shipping" value="5.50" />
      <input type="hidden" name="return" value="http://www.mysite.com/checkout_success.php" />
      <input type="hidden" name="cancel_return" value="http://www.mysite.com/checkout_failure.php" />
      <input type="hidden" name="undefined_quantity" value="1" />
      <input type="hidden" name="receiver_email" value="@hotmail.com" />
      <input type="hidden" name="mrb" value="R-3WH47588B4505740X" />
      <input type="hidden" name="pal" value="ANNSXSLJLYR2A" />
      <input type="hidden" name="no_shipping" value="0" />
      <input type="hidden" name="no_note" value="0" />
      <input type="submit" name="submit1" id="submit1" value="Pay with PayPal">
               </form>
    This form button will take the user to paypal for payment, but is not for mobile app.
    thanks for your help,
    -Jim Balthrop

    How do I get someone to respond to my question here?
    Let me try again.
    With DW CS5.5 when I try to insert a PayPal button into a table (which I always did with DW8) the table in Design View gets scrambled, making it unusable.  Please would one of you out there who is much more knowledgeable about DW than me try it and see if there is a solution?  If you create a new HTML page in Design view, create a table in it, place the insertion point inside one of the table cells, go to the code view and locate the insertion point there, then paste the PayPal button code at that point. Here's the code:
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="XSXQ9CUMUVLQC">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    Now go back to Design view and see how it looks.  If it acts the way it does for me, the table is no longer visible, but if you go to Live View everything looks fine with the table and the button inside it.  Of course, I can't design in Live View.
    PLEASE can someone out there help me.
    Many thanks.

  • Web service Invocation from ADF mobile app errors

    Mobile App Gurus,
    The webservice when invoked from ADF web app is working fine but, when invoked from Mobile APP errors in emulator with as below...
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication serivce is oracle.idm.mobile.SSOAuthenticationService
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication context status is IN_PROGRESS
    D/oracle.idm.mobile.OMAuthenticationServiceManager_retrieveAuthenticationContext
    ( 1096): Authentication context for the key appsnet5login.sysadmin retrieved from the credential store is : null
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication serivce is oracle.idm.mobile.BasicAuthenticationService
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication context status is IN_PROGRESS
    D/oracle.idm.mobile.OMAuthenticationServiceManager_doInBackground( 1096): Invalid Authentication URL.
    Please can you let me know if I am missing some step in ADF Mobile App framework.
    Thanks,
    Shreedhar
    Edited by: sh**** on Apr 22, 2013 5:11 AM
    Edited by: sh**** on Apr 22, 2013 6:50 AM

    I don't know if you fixed it already by this time or not. But here is my findings anyway, to be able to inject the security header correctly in any SOA Gateway service, you need to have your Mobile Application Secured, meaning that there is a prompt for username/password when you open it.
    Then you will have to make a Proxy service for the webservice you are using from apps. And you must create it with a SOAP Handler also and write below sample code in the handler to inject the security header in the SOAP call. At last, you are going to deploy this proxy service to your Application Server.
    These steps were taken on a Glassfish server not Weblogic. I think there is an easy way for this if you are using Weblogic..
    Sample handler is below:
    package com.mobile.xxsoap;
    import java.util.HashSet;
    import java.util.Set;
    import javax.xml.namespace.QName;
    import javax.xml.soap.Name;
    import javax.xml.soap.SOAPElement;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPFactory;
    import javax.xml.soap.SOAPHeader;
    import javax.xml.ws.handler.MessageContext;
    import javax.xml.ws.handler.soap.SOAPHandler;
    import javax.xml.ws.handler.soap.SOAPMessageContext;
    public class CustomSOAPHandler implements SOAPHandler<SOAPMessageContext> {
        private static final String AUTH_PREFIX = "wsse";
        private static final String AUTH_NS =
            "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
        public boolean handleMessage(SOAPMessageContext context) {
            try {
                SOAPEnvelope envelope = context.getMessage().getSOAPPart().getEnvelope();
                SOAPFactory soapFactory = SOAPFactory.newInstance();
                SOAPElement wsSecHeaderElm = soapFactory.createElement("Security", AUTH_PREFIX, AUTH_NS);   
                SOAPElement userNameTokenElm = soapFactory.createElement("UsernameToken", AUTH_PREFIX, AUTH_NS);
                SOAPElement userNameElm = soapFactory.createElement("Username", AUTH_PREFIX, AUTH_NS);
                userNameElm.addTextNode("redsam");
                SOAPElement passwdElm = soapFactory.createElement("Password", AUTH_PREFIX, AUTH_NS);
                Name passwdTypeAttr = soapFactory.createName("Type");
                passwdElm.addAttribute(passwdTypeAttr,
                                       "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText");
                passwdElm.addTextNode("123456");
                userNameTokenElm.addChildElement(userNameElm);
                userNameTokenElm.addChildElement(passwdElm);
                wsSecHeaderElm.addChildElement(userNameTokenElm);
            } catch (Throwable e) {
                e.printStackTrace();
            return true;
        public Set<QName> getHeaders() {
            return new HashSet<QName>();
        public boolean handleFault(SOAPMessageContext messageContext) {
            return true;
        public void close(MessageContext context) {
    I hope it is clear now...
    Regards,
    Mohamed

  • Selection of a mobile framework - for enterprise mobility app.

    There have been many plethora of mobility frameworks (e.g Kony, HTML5 based  frameworks) that have same features as Cordova - write your code once and run it on multiple platforms. Some are free,others are not. Having recently implemented enterprise mobility app (integrating with ECC, CRM) using one such framework, there are a certain I would like to consider before choosing a framework:
    a) How easy it to build security into the app (the login module)?
    b) How do I know that the requests for my data is an authenticated source?
    c) How good is the vendor support with plugins, upgrades to SDK?
    d) For frameworks that are free, do vendors really pay attention to issues that you are facing during (very specific to) your implementation.
    e) Scalability of the framework to support the app with newer mobile OSs, mobility sets (Motorola, Micromax, Blackberry), tabs.
    f) All mobile sets have limited memory at most to 2GB (or little more). How will the framework help in viewing huge amount of data that is there in SAP?
    From my experience, I would say it is big pain, implementing a enterprise mobility app with open framework adhering with the go live dates.
    SAP products are more easy to handle. A lot of featues comes inbuilt. Mobile apps comes as pre-packaged apps. One needs to customize it according to it needs. Product support from SAP is remarkable. Implementing and going live with such product becomes automatically easy adhering to the timelines. So is the maintenance. But of course comes the licensing price for SAP.

    Sukanta Rudra,
    I love to work with SAP products and so i m in SAP. Having worked on several other mobile applications before , i can clearly see the ease in development of Enterprise applications using SAP products portfolio.
    Often I have seem blogs in SCN, advocating for frameworks other than that of SAP. No harm
    Please mention the blogs as a reference for more understanding. I can always only see Cordova / appcelerator being the recommended platforms by SAP for cross platforms development.
    SAP Partners with Adobe-Cordova/phonegap , Appcelerator, Sencha (the three big players in cross platform development)
    Developer Announcement: Third Party Tools
    SAP Drives Openness and Choice for Millions of Mobile App Developers
    More over i have worked mostly on all the three for a while and have experienced the ease in development with cordova.
    Also the HWC (Hybrid Web Container ) - the former way for developing hybrid applications on SAP Mobile Platform till 2.x has Cordova/phonegap plugins inbuilt in it. Literally it followed the approch of Cordova and ui framework was of Jquery Mobile .
    But Now with the release of SMP 3.X things are completely under the control of developer. There are no restrictions to use a particular framework for development and developers are free to use their choice for development (SMP 3.x highlights BYOT - Bring Your Own Tools for Developers).
    Adding to above , just would like to mention there are few products mainly focused and developed on cordova technology (KAPSEL plugins, Appbuilder, Fiori Client , River RDE in future integrating Kapsel plugins)
    SMP 3.x is all open for developers , we are free to use any platform as per our requirements and convenience now.
    PLease have a look at these videos on how SMP 3.x strategy stands for
    My experience has been using Kony-SKY framework for developing the mobility apps (not mobile web). SKY plugins has been certified by SAP, to be used for developing mobility applications. (SAP does embrace other vendors). My questions pointed out above, was out of the struggles we had while implementing the project. Many at times, I felt I was reinventing the same tools while integrating into the SAP backends.
    I am not a Kony guy, but will surely look into this and would check if i can help you.But out of my experience with Cordova /HWC/ Kapsel , it was satisfactory.
    I presume you might have used/using SAP's Fiori apps, SAPUI5, mobile architecture and would like to gather some more information very specific to SAP's environment. I have no experience now on delivering apps using SAP's products. Maybe three months from now, I would get deep with 'SAP Fiori UX and SAP Screen Personas'. Maybe you could throw some light on few more queries.
    Yeah , thanks to SAP for Fiori being out of License now and UI5 an Opensource. I have had the opportunity to also work and implement Fiori transnational applications and also develop Custom UI5 applications .
    Note : Personas is really a good product , but on the down side is n't responsive in nature , so might not be a best fit for mobile devices
    How are builds generated for different platforms? (Android uses.apk, Blackberry uses .cod, iPhone uses .ipa)
    I can help you understand this with an Android Phone Gap project example
    Typically Native Android apps are developed using Core Java.
    Initially all the Core libraries of Android and java are loaded with import command
    import android.os.Bundle;
    Now Cordova libraries are added to existing libraries
    import android.os.Bundle;
    import org.apache.cordova.*;
    and Android uses the concept activities and layout for screen navigation and designing.
    and by default any android project should have an activity and layout for launching the application, for which the code looks something similar to this
    setContentView(R.layout.main);
    so , a Relative layout is initially launched as main view.
    As mentioned in the blog in  " How does it actually work section " cordova loads web views instead of the native layouts /activities
    How Does it actually work ?
    Technically the User Interface of a Cordova Application is effectively a WebView that occupies the complete screen and runs in the native Container. So , it is the same web view that is used by the Native  Operating systems. This purely means that only the Native Containers changes according to the OS and internally the web pages remain the same. (Since the browser rendering of webpages are different for each operating systems)
    For       IOS it is UIWebView class
                 Android it is in  android.webkit.webview
                 Windows it is WebViewClass and the similar goes to other OS .
    This line of code is responsible for that
    super.loadUrl("file:///android_asset/www/index.html");
    our developed web applications should reside in the above mentioned location to access as any native web view
    also few other hacks are to be done at
    public class [appname]Activity extends Activity {
    to
    public class [appname] Activity extends DroidGap {
    and to the android manifest file accordingly to get the permissions
    Now internally the android applications works just like any native applications but accessing the web applications files in the web view. and just generates the .apk accordingly to the application.
    Say a query is executed from a mobility app, say the result set is some 1000 rows, how does the data fetch mechanism work. Do you use some delta data fetch mechanism?
    if i were to handle this , would try to filter this out to sections. Lets imagine huge PO s are resulted upon a query, i would try to create some sections/categories for Unreleased/Open/Approved /... and again try to perform some dynamic filter operations on each category selection/ or make use of pagination property to move across the items/records
    Also user would not be interested to scroll and search for his item from a huge collection of items.
    More over for handling of huge records Native approach is preferred to Hybrid/mobile web.
    When a mobility connection snaps while the user is using the app, does the app stop immediately? Or rather how is user informed about non availability of the network connection?
    Lets assume two cases here
    1) Complete Online application
    2) Online Offline Application
    1) If user is trying to access the data from the application , since this being an online application , a proper network connectivity id to be checked properly before making any request .
    for phone gap/cordova , Network Object helps us to check if network connectivity is available to make any request. else throw an alert to check the connectivity/ turn on the connectivity.
    Similarly a Connectivity manager API exists for Android . Here is an example. Same would apply for other OS also.
    2) For online - offline application . user wouldn't be able to read records from back end , but can perform other necessary operations on the device, and once the device gets connected to network, can sync with the back end . An alert should be thrown to inform the user about the loss in network connectivity and the limitations in accessing the data .
    Build/release mechanism and subsequent tracking for mobility apps for periodic release of apps  - say there would regular fixes to bugs, upgrades to framework SDK, device OSs might get upgraded - Is there a tool for tracking all these, etc
    Yes. MDM tools are perfect fit for these. Afaria and Mocana are doing well now.
    And, anything that you would like to share, related to SAPs environment, that makes implementation easier.
    SAP Mobility is really booming and will grow , dominate in enterprise mobility in future.
    For our understanding:
    Let us know for more.
    Edit :
    IG is a part of SMP 3 but not a separate component as NWG
    Regards
    Virinchy
    Message was edited by: Virinchy P

  • OBI Mobile App Designer raises Internal Server Error

    Hi,
    we are running OBIEE 11.1.1.7.1 on a 64-bit environment including OBI Mobile App Designer. We have the problem that two components (mapviewer and bisearch) are not starting automatically, which might cause the problem that we get a 500 Internal Server Error when trying to open the Mobile App Designer.
    Before this problem occured we were running the OBIEE sample RPD that comes with the OBIEE installation. At this point in time there was only one component not starting up (bisearch component). Accessing the OBI Mobile App Designer was not a problem at all. After some time we decided to change the RPD in order to have more meaningful data available. Since we changed the RPD we face major issues with this environment.
    I tried to start the mapviewer and bisearch components manually in the Enterprise Manager. This worked only for the mapviewer. Before we changed the RPD all the components except bisearch were starting as expected. At this time accessing OBI Mobile App Designer was also not a problem.
    A few days ago we were even not able to login to analytics, which told us that user or password must be wrong. I then tried to refresh GUIDs because of the new RPD that has been deployed recently. This resulted in a failure of BI server start after trying to refresh GUIDs with the respective settings in instanceconfig.xml and NQSconfig.ini. After resetting the configuration to the initial state we were able to start the components including BI server. What still remains is the issue with bisearch component and the problem related to OBI Mobile App Designer as mentioned before.
    We observed that the log file of the managed server contains some error messages that do at least relate to the bisearch component. We did not find any helpful information to tackle this issue. Any ideas on how to resolve these issues in order to be able to access OBI Mobile Designer again? Due to the fact that OBI Mobile App Designer uses BI Publisher there might be a problem with that.
    I added the log file of the managed server.
    Appreciate your help! Thanks in advance.
    Tobias
    [Mon Nov 04 15:32:16 2013] [I] [initLog] initializing logger
    [Mon Nov 04 15:32:16 2013] [E] [initLog] No 'ROTATION_TYPE' header found. 'TIME' based rotation will be used by default.
    [Mon Nov 04 15:32:16 2013] [E] [initLog] No 'TIME_START_DATE' header found or value is invalid. Rotation will take place every 24 hours beginning today at 23:59:59
    [Mon Nov 04 15:32:16 2013] [E] [initLog] No 'TIME_INTERVAL_MINS' header found. Using the default value of 24 hours.
    [Mon Nov 04 15:32:16 2013] [I] [initLog] TIME based log rotation is ON
    [Mon Nov 04 15:32:16 2013] [I] [trigger] First rotation due in 30463 secs
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] console allocation successful. THREAD_DUMP redirection enabled
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] About to execute CreateThread()
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszCmdLine = -server -Xms1024m -Xmx1024m -XX:MaxPermSize=512m -XX:+UseSpinning  -Dweblogic.ProductionModeEnabled=true   -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server  -Dcommon.components.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\Oracle\MIDDLE~1\USER_P~1\domains\BIFOUN~1 -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\BIFOUN~1\config\FMWCON~1\servers\bi_server1 -Doracle.domain.config.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\BIFOUN~1\config\FMWCON~1  -Digf.arisidbeans.carmlloc=C:\Oracle\MIDDLE~1\USER_P~1\domains\BIFOUN~1\config\FMWCON~1\carml  -Digf.arisidstack.home=C:\Oracle\MIDDLE~1\USER_P~1\domains\BIFOUN~1\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=C:\Oracle\MIDDLE~1\USER_P~1\domains\BIFOUN~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\BIFOUN~1\servers\bi_server1\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jps_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol  -Dweblogic.jdbc.remoteEnabled=false -Dbi.oracle.home=C:\Oracle\middleware\Oracle_BI1 -DEPM_ORACLE_HOME=C:\Oracle\middleware\Oracle_BI1 -Dweblogic.MaxMessageSize=50000000 -DEPM_ORACLE_HOME=C:\Oracle\middleware\Oracle_BI1 -DHYPERION_HOME=C:\Oracle\middleware\Oracle_BI1 -DEPM_ORACLE_INSTANCE=novalue -Dhyperion.home=C:\Oracle\middleware\Oracle_BI1 -DEPM_REG_PROPERTIES_PATH=C:\Oracle\MIDDLE~1\USER_P~1\domains\BIFOUN~1\config\fmwconfig -Depm.useApplicationContextId=false -Doracle.biee.search.bisearchproperties=C:\Oracle\middleware\Oracle_BI1\bifoundation\jee\BISearchConfig.properties -Dweblogic.management.clearTextCredentialAccessEnabled=true -Doracle.notification.filewatching.interval=2000 -Dweblogic.security.SSL.ignoreHostnameVerification=true -Dweblogic.security.SSL.enableJSSE=true -Dfile.encoding=utf-8 -Doracle.ecsf.security.service=oracle.biee.search.security.BISearchSecurityService -Doracle.ecsf.configuration.class=oracle.biee.search.services.BISearchServiceConfiguration -Dxdo.server.config.dir=C:\Oracle\middleware\user_projects\domains\bifoundation_domain\config\bipublisher -DXDO_FONT_DIR=C:\Oracle\middleware\Oracle_BI1\common\fonts  -Drtd.instanceName=RTD_bi_server1 -Drtd.rpcReadyDeadlineSec=300 -Dem.oracle.home=C:\Oracle\middleware\oracle_common -Djava.awt.headless=true -Dweblogic.management.discover=false -Dweblogic.management.server=http://localhost:7001  -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sysext_manifest_classpath -classpath "C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\PROGRA~1\Java\JDK17~1.0_4\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C:\Oracle\middleware\Oracle_BI1\bifoundation\jdbc\jdk16\bijdbc.jar;;C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\PROGRA~1\Java\JDK17~1.0_4\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\middleware\wlserver_10.3\server\lib\weblogic.jar;C:\Oracle\middleware\oracle_common\modules\oracle.dms_11.1.1\dms.jar;C:\Oracle\middleware\oracle_common\modules\oracle.jmx_11.1.1\jmxframework.jar;C:\Oracle\middleware\oracle_common\modules\oracle.jmx_11.1.1\jmxspi.jar;C:\Oracle\middleware\oracle_common\modules\oracle.odl_11.1.1\ojdl.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\commons-cli-1.1.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar" -Dweblogic.Name=bi_server1 -Dweblogic.management.username= -Dweblogic.management.server="http://localhost:7001" -Dweblogic.ProductionModeEnabled=true -Djava.security.policy="C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy" weblogic.Server
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszJavaHome = C:\PROGRA~1\Java\JDK17~1.0_4
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszExecDir = C:\Oracle\middleware\user_projects\domains\bifoundation_domain
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszOldPath = C:\Oracle\product\12.1.0\dbhome_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Java\jdk1.7.0_40\bin;C:\Oracle\middleware\Oracle_BI1\bin;C:\Oracle\middleware\Oracle_BI1\opmn\bin;C:\Oracle\middleware\Oracle_BI1\opmn\lib;C:\Oracle\middleware\Oracle_BI1\perl\bin;
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszNewPath = C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\PROGRA~1\Java\JDK17~1.0_4\jre\bin;C:\PROGRA~1\Java\JDK17~1.0_4\bin;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\oci920_8;C:\Oracle\product\12.1.0\dbhome_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Java\jdk1.7.0_40\bin;C:\Oracle\middleware\Oracle_BI1\bin;C:\Oracle\middleware\Oracle_BI1\opmn\bin;C:\Oracle\middleware\Oracle_BI1\opmn\lib;C:\Oracle\middleware\Oracle_BI1\perl\bin;
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszDelay = 0
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszStopClass = []
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszLog = [C:\Oracle\middleware\user_projects\domains\bifoundation_domain\bi_server1-stdout.txt]
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] Thread created successfully
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] Reporting SCM of SERVICE_START_PENDING with delay=0
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszHost = []
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] lpszPort = []
    [Mon Nov 04 15:32:16 2013] [I] [StartJVM] Parsing JVM Arguments
    [Mon Nov 04 15:32:16 2013] [I] [StartJVM] Initializing JVM
    Java HotSpot(TM) 64-Bit Server VM warning: ignoring option UseSpinning; support was removed in 7.0_40
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] Reporting SCM of SERVICE_RUNNING
    [Mon Nov 04 15:32:16 2013] [I] [ServiceStart] waiting for multiple events
    [Mon Nov 04 15:32:16 2013] [I] [RunJavaApp] Loading class - weblogic.Server
    [Mon Nov 04 15:32:16 2013] [I] [RunJavaApp] Locating method "public static void main([]String)" in main class
    [Mon Nov 04 15:32:16 2013] [I] [RunJavaApp] Building arguments for main class
    [Mon Nov 04 15:32:16 2013] [I] [RunJavaApp] Invoking main class
    <04.11.2013 15:32 Uhr MEZ> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <04.11.2013 15:32 Uhr MEZ> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <04.11.2013 15:32 Uhr MEZ> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 24.0-b56 from Oracle Corporation>
    <04.11.2013 15:32 Uhr MEZ> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0  Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <04.11.2013 15:32 Uhr MEZ> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <04.11.2013 15:32 Uhr MEZ> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <04.11.2013 15:32 Uhr MEZ> <Notice> <Log Management> <BEA-170019> <The server log file C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\logs\bi_server1.log is opened. All server side log events will be written to this file.>
    <04.11.2013 15:33 Uhr MEZ> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <04.11.2013 15:33 Uhr MEZ> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <04.11.2013 15:33 Uhr MEZ> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <JMS> <BEA-040456> <An entity of type "UniformDistributedQueues" with name "BIP.Burst.Job.Q" in JMS module "BipJmsResource" is not targeted. There is no sub-deployment with name "BipJmsSubDeployment" in the configuration repository (config.xml), and so this entity will not exist anywhere in the domain.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\middleware\oracle_common\atgpf\modules\oracle.applcore.model_11.1.1\oracle.applcore.model.stub.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <Security> <BEA-090668> <Ignored deployment of role "Admin" for resource "type=<url>, application=DMS Application#11.1.1.1.0, contextPath=/dms, uri=/">
    <04.11.2013 15:33 Uhr MEZ> <Warning> <Connector> <BEA-190155> <Compliance checking/validation of the resource adapter C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\ESSAPP\h1izqz\stub-ess-ra.rar resulted in the following warnings:
    The ra.xml <resourceadapter-class> class 'oracle.as.scheduler.adapter.ra.RAImpl' should implement java.io.Serializable but does not.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <J2EE> <BEA-160140> <Unresolved optional package references (in META-INF/MANIFEST.MF): [Extension-Name: com/oracle/adfm, Specification-Version: 1, referenced from: C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\bicomposer_11.1.1\m9h5uz]. Make sure the referenced optional package has been deployed as a library.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <oracle.jps.credstore> <JPS-01033> <Zugangsdaten können nicht festgelegt werden. Grund: oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: Die Zugangsdaten mit Zuordnung jdevadf-4786 und Schlüssel anonymous#bi-default sind bereits vorhanden..>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <oracle.jps.upgrade> <JPS-06003> <Zugangsdatenordner/Schlüssel jdevadf-4786/anonymous#bi-default kann nicht migriert werden. Grund: oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: Die Zugangsdaten mit Zuordnung jdevadf-4786 und Schlüssel anonymous#bi-default sind bereits vorhanden..>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <oracle.jps.credstore> <JPS-01033> <Zugangsdaten können nicht festgelegt werden. Grund: oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: Die Zugangsdaten mit Zuordnung bireportwizard-4786 und Schlüssel anonymous#bi-default sind bereits vorhanden..>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <oracle.jps.upgrade> <JPS-06003> <Zugangsdatenordner/Schlüssel bireportwizard-4786/anonymous#bi-default kann nicht migriert werden. Grund: oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: Die Zugangsdaten mit Zuordnung bireportwizard-4786 und Schlüssel anonymous#bi-default sind bereits vorhanden..>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <oracle.jps.credstore> <JPS-01033> <Zugangsdaten können nicht festgelegt werden. Grund: oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: Die Zugangsdaten mit Zuordnung bicomposer und Schlüssel anonymous#bi-default sind bereits vorhanden..>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <oracle.jps.upgrade> <JPS-06003> <Zugangsdatenordner/Schlüssel bicomposer/anonymous#bi-default kann nicht migriert werden. Grund: oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: Die Zugangsdaten mit Zuordnung bicomposer und Schlüssel anonymous#bi-default sind bereits vorhanden..>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\oracle.applcore.model\vy4gk6/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\oracle.applcore.model\vy4gk6/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element web-app in the deployment descriptor in C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\bilocaladmin_11.1.1\iv2ub5\biconfigmbeans.war/WEB-INF/web.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <EJB> <BEA-010001> <While deploying EJB 'AsyncAdminService_AsyncRequestProcessorMDB', class oracle.j2ee.ws.server.jaxws.AsyncRequestProcessorMDB was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <EJB> <BEA-010001> <While deploying EJB 'AsyncAdminService_AsyncResponseProcessorMDB', class oracle.j2ee.ws.server.jaxws.AsyncResponseProcessorMDB was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\oracle.applcore.model\vy4gk6/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <04.11.2013 15:33 Uhr MEZ> <Warning> <J2EE> <BEA-160140> <Unresolved optional package references (in META-INF/MANIFEST.MF): [Extension-Name: oracle.apps.fod.virusScan.biAdapter, referenced from: C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\bipublisher_11.1.1\fiu5yf], [Extension-Name: oracle.apps.fod.virusScan.core, referenced from: C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\bipublisher_11.1.1\fiu5yf], [Extension-Name: oracle.apps.fod.virusScan.commandLineAdapter, referenced from: C:\Oracle\middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\bipublisher_11.1.1\fiu5yf]. Make sure the referenced optional package has been deployed as a library.>
    <04.11.2013 15:35 Uhr MEZ> <Warning> <oracle.as.jmx.framework.MessageLocalizationHelper> <J2EE JMX-46041> <Die Ressource für das Bundle "oracle.adf.mbean.share.connection.bi.soap.resources.BISoapMBeanBundle" mit Schlüssel "ATTR_ADF_COOKIES_TO_SKIP" kann nicht gefunden werden.>
    <04.11.2013 15:35 Uhr MEZ> <Warning> <oracle.as.jmx.framework.MessageLocalizationHelper> <J2EE JMX-46041> <Die Ressource für das Bundle "oracle.adf.mbean.share.connection.bi.soap.resources.BISoapMBeanBundle" mit Schlüssel "ATTR_BI_COOKIES_TO_MAINTAIN" kann nicht gefunden werden.>
    <04.11.2013 15:35 Uhr MEZ> <Warning> <oracle.as.jmx.framework.MessageLocalizationHelper> <J2EE JMX-46041> <Die Ressource für das Bundle "oracle.adf.mbean.share.connection.bi.soap.resources.BISoapMBeanBundle" mit Schlüssel "ATTR_BI_COOKIES_TO_SKIP" kann nicht gefunden werden.>
    <04.11.2013 15:35 Uhr MEZ> <Warning> <oracle.as.jmx.framework.MessageLocalizationHelper> <J2EE JMX-46041> <Die Ressource für das Bundle "oracle.adf.mbean.share.connection.bi.soap.resources.BISoapMBeanBundle" mit Schlüssel "ATR_STATIC_RESOURCES_LOCATION_AUTOMATIC" kann nicht gefunden werden.>
    <04.11.2013 15:35 Uhr MEZ> <Warning> <oracle.adfinternal.view.faces.partition.FeatureUtils> <ADF_FACES-30130> <Feature-Abhängigkeit wird für Feature "AdfDvtCommon" ignoriert.  Das Feature ist nicht vorhanden.>
    REGISTERED oracle.biee.local:type=DomainConfigProxy,group=Config
    <04.11.2013 15:35 Uhr MEZ> <Error> <HTTP> <BEA-101216> <Servlet: "BISearchMDEXService" failed to preload on startup in Web application: "bisearch".
    javax.xml.ws.WebServiceException: Unable to create JAXBContext
      at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:164)
      at com.sun.xml.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:94)
      at com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:281)
      at com.sun.xml.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:363)
      at com.sun.xml.ws.server.EndpointFactory.createEndpoint(EndpointFactory.java:202)
      Truncated. see log file for complete stacktrace
    Caused By: java.security.PrivilegedActionException: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    java.lang.StackTraceElement does not have a no-arg default constructor.
      this problem is related to the following location:
      at java.lang.StackTraceElement
      at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
      at java.lang.Throwable
      at public java.lang.Throwable[] oracle.biee.search.services.crawl.jaxws.ExceptionBean.suppressed
      at oracle.biee.search.services.crawl.jaxws.ExceptionBean
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:151)
      at com.sun.xml.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:94)
      at com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:281)
      at com.sun.xml.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:363)
      Truncated. see log file for complete stacktrace
    Caused By: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    java.lang.StackTraceElement does not have a no-arg default constructor.
      this problem is related to the following location:
      at java.lang.StackTraceElement
      at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
      at java.lang.Throwable
      at public java.lang.Throwable[] oracle.biee.search.services.crawl.jaxws.ExceptionBean.suppressed
      at oracle.biee.search.services.crawl.jaxws.ExceptionBean
      at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:102)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:478)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:308)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl$JAXBContextBuilder.build(JAXBContextImpl.java:1149)
      at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:169)
      Truncated. see log file for complete stacktrace
    >
    <04.11.2013 15:35 Uhr MEZ> <Error> <Deployer> <BEA-149231> <Unable to set the activation state to true for the application 'bisearch [Version=11.1.1]'.
    weblogic.application.ModuleException: [HTTP:101216]Servlet: "BISearchMDEXService" failed to preload on startup in Web application: "bisearch".
    javax.xml.ws.WebServiceException: Unable to create JAXBContext
      at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:164)
      at com.sun.xml.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:94)
      at com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:281)
      at com.sun.xml.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:363)
      at com.sun.xml.ws.server.EndpointFactory.createEndpoint(EndpointFactory.java:202)
      at com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:496)
      at com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:539)
      at weblogic.wsee.jaxws.JAXWSDeployedServlet.getEndpoint(JAXWSDeployedServlet.java:183)
      at weblogic.wsee.jaxws.JAXWSServlet.registerEndpoint(JAXWSServlet.java:135)
      at weblogic.wsee.jaxws.JAXWSServlet.init(JAXWSServlet.java:64)
      at weblogic.wsee.jaxws.JAXWSDeployedServlet.init(JAXWSDeployedServlet.java:54)
      at javax.servlet.GenericServlet.init(GenericServlet.java:241)
      at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
      at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
      at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
      at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
      at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1985)
      at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1959)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1878)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.security.PrivilegedActionException: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    java.lang.StackTraceElement does not have a no-arg default constructor.
      this problem is related to the following location:
      at java.lang.StackTraceElement
      at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
      at java.lang.Throwable
      at public java.lang.Throwable[] oracle.biee.search.services.crawl.jaxws.ExceptionBean.suppressed
      at oracle.biee.search.services.crawl.jaxws.ExceptionBean
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:151)
      ... 53 more
    Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    java.lang.StackTraceElement does not have a no-arg default constructor.
      this problem is related to the following location:
      at java.lang.StackTraceElement
      at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
      at java.lang.Throwable
      at public java.lang.Throwable[] oracle.biee.search.services.crawl.jaxws.ExceptionBean.suppressed
      at oracle.biee.search.services.crawl.jaxws.ExceptionBean
      at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:102)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:478)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:308)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl$JAXBContextBuilder.build(JAXBContextImpl.java:1149)
      at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:169)
      at com.sun.xml.bind.api.JAXBRIContext.newInstance(JAXBRIContext.java:160)
      at com.sun.xml.ws.developer.JAXBContextFactory$1.createJAXBContext(JAXBContextFactory.java:74)
      at com.sun.xml.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelImpl.java:159)
      at com.sun.xml.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelImpl.java:151)
      ... 55 more
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1510)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      Truncated. see log file for complete stacktrace
    Caused By: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    java.lang.StackTraceElement does not have a no-arg default constructor.
      this problem is related to the following location:
      at java.lang.StackTraceElement
      at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
      at java.lang.Throwable
      at public java.lang.Throwable[] oracle.biee.search.services.crawl.jaxws.ExceptionBean.suppressed
      at oracle.biee.search.services.crawl.jaxws.ExceptionBean
      at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:102)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:478)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:308)
      at com.sun.xml.bind.v2.runtime.JAXBContextImpl$JAXBContextBuilder.build(JAXBContextImpl.java:1149)
      at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:169)
      Truncated. see log file for complete stacktrace
    >
    contextPath has been resolved from 'BI_ORACLE_HOME/products/epmstatic' to 'C:\Oracle\middleware\Oracle_BI1/products/epmstatic'
    contextPath has been resolved from 'BI_ORACLE_HOME/products/epmstatic/bpmui' to 'C:\Oracle\middleware\Oracle_BI1/products/epmstatic/bpmui'
    contextPath has been resolved from 'BI_ORACLE_HOME/products/epmstatic/calcmgr/docs' to 'C:\Oracle\middleware\Oracle_BI1/products/epmstatic/calcmgr/docs'
    contextPath has been resolved from 'BI_ORACLE_HOME/clients/bipublisher' to 'C:\Oracle\middleware\Oracle_BI1/clients/bipublisher'
    contextPath has been resolved from 'BI_ORACLE_HOME/products/epmstatic/wspace' to 'C:\Oracle\middleware\Oracle_BI1/products/epmstatic/wspace'
    The BI Content Server has been initialised.
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoIdentity.jks.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\PROGRA~1\Java\JDK17~1.0_4\jre\lib\security\cacerts.>
    <04.11.2013 15:35 Uhr MEZ> <Alert> <Security> <BEA-090152> <Demo trusted CA certificate is being used in production mode: [
      Version: V3
      Subject: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
      Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
      Key:  Sun RSA public key, 512 bits
      modulus: 9550192877869244258838480703390456015046425375252278279190673063544122510925482179963329236052146047356415957587628011282484772458983977898996276815440753
      public exponent: 65537
      Validity: [From: Thu Mar 21 21:12:27 CET 2002,
                   To: Tue Mar 22 21:12:27 CET 2022]
      Issuer: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
      SerialNumber: [    33f10648 fcde0deb 4199921f d64537f4]
    Certificate Extensions: 1
    [1]: ObjectId: 2.5.29.15 Criticality=true
    KeyUsage [
      Key_CertSign
      Algorithm: [MD5withRSA]
      Signature:
    0000: 9D 26 4C 29 C8 91 C3 A7   06 C3 24 6F AE B4 F8 82  .&L)......$o....
    0010: 80 4D AA CB 7C 79 46 84   81 C4 66 95 F4 1E D8 C4  .M...yF...f.....
    0020: E9 B7 D9 7C E2 23 33 A4   B7 21 E0 AA 54 2B 4A FF  .....#3..!..T+J.
    0030: CB 21 20 88 81 21 DB AC   90 54 D8 7D 79 63 23 3C  .! ..!...T..yc#<
    ] The system is vulnerable to security attacks, since it trusts certificates signed by the demo trusted CA.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G2,OU=(c) 2007 thawte\, Inc. - For authorized use only,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.10045.4.3.3.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Class 3 Public Primary Certification Authority - G4,OU=(c) 2007 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.10045.4.3.3.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G2,OU=(c) 2007 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.10045.4.3.3.>
    <04.11.2013 15:35 Uhr MEZ> <Warning> <WorkManager> <BEA-002919> <Unable to find a WorkManager with name ESSRAWM. Dispatch policy ESSRAWM will map to the default WorkManager for the application bipublisher#11.1.1>
    <04.11.2013 15:35 Uhr MEZ> <Warning> <EJB> <BEA-014014> <The message driven bean (MDB) named "ESSAppEndpoint" has a dispatch policy "ESSRAWM" that refers to an unknown work manager. The default work manager will be used instead.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>
    <04.11.2013 15:35 Uhr MEZ> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of bi_cluster.>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <Cluster> <BEA-000162> <Starting "async" replication service with remote cluster address "null">
    <04.11.2013 15:36 Uhr MEZ> <Warning> <Server> <BEA-002611> <Hostname "oraclebi11gSBX.ec4u.de", maps to multiple IP addresses: 192.168.103.203, fe80:0:0:0:b15b:dd97:a291:f5e5%12>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:0:100:7f:fffe:9704 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on fe80:0:0:0:b15b:dd97:a291:f5e5:9704 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on fe80:0:0:0:0:5efe:c0a8:67cb:9704 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <Server> <BEA-002613> <Channel "Default[5]" is now listening on 127.0.0.1:9704 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <Server> <BEA-002613> <Channel "Default[4]" is now listening on 0:0:0:0:0:0:0:1:9704 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 192.168.103.203:9704 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <WebLogicServer> <BEA-000330> <Started WebLogic Managed Server "bi_server1" for domain "bifoundation_domain" running in Production Mode>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <04.11.2013 15:36 Uhr MEZ> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser
    WLJMSServiceSecure.getInitialContext is secure: BISystemUser

    1- First of All Mobile App Desginer is Only Certified with OBIEE 11.1.1.7.131017 on wards Please have a look to the following Link
    http://www.oracle.com/technetwork/middleware/bi-foundation/bi-foundation/installation-guide-1989222.pdf
    2- Need to check nqserver.log and sawlog files

  • Flash builder 4.5 + mobile apps + mx components : error#1014

    Hi everyone,
    I found about the capabilities of Flex/Air a few weeks ago and I started experimenting. I'm interested in the mobile apps in particular.
    I downloaded the final release of Flash Builder and started to "code" a few things (I am fairly new to ActionScript too).
    The thing is I have errors when launching the mobile apps on an emulator or on my Desire HD.
    Typical example is this app from Ryan Stewart : http://blog.digitalbackcountry.com/2011/03/slides-and-assets-from-adobe-refresh/
    I tried to run his CollaborationMobile App (as I want to work with LCCS) onto a device emulator thanks to Flash Builder but I get the following errors :
    VerifyError: Error #1014: Class mx.containers::Canvas could not be found.
         at flash.display::MovieClip/nextFrame()
         at mx.managers::SystemManager/deferredNextFrame()[E:\dev\hero_private\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:284]
         at mx.managers::SystemManager/preloader_preloaderDocFrameReadyHandler()[E:\dev\hero_private\ frameworks\projects\framework\src\mx\managers\SystemManager.as:2633]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.preloaders::Preloader/timerHandler()[E:\dev\hero_private\frameworks\projects\framework \src\mx\preloaders\Preloader.as:515]
         at flash.utils::Timer/_timerDispatch()
         at flash.utils::Timer/tick()
    VerifyError: Error #1014: Class com.adobe.coreUI.controls::RichTextArea could not be found.
         at flash.display::MovieClip/nextFrame()
         at mx.managers::SystemManager/deferredNextFrame()[E:\dev\hero_private\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:284]
         at mx.managers::SystemManager/preloader_preloaderDocFrameReadyHandler()[E:\dev\hero_private\ frameworks\projects\framework\src\mx\managers\SystemManager.as:2633]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.preloaders::Preloader/timerHandler()[E:\dev\hero_private\frameworks\projects\framework \src\mx\preloaders\Preloader.as:515]
         at flash.utils::Timer/_timerDispatch()
         at flash.utils::Timer/tick()
    and a few others...
    I have no clue of the reason of these errors...
    Thanks for the help

    Try to avoid using MX components in mobile apps.

  • Mobile app based on web service data control and VO with VC runtime error

    Hi,
    Jdev 11.1.2.3.0 + mobile extension.
    Windows 7, 64 bit.
    Reproduceable with Android emulator but not on iOS and iOS emulator.
    I can not test on real Android device because we do not have it in our office.
    So I don't know wether this issue is related to android emulator only or to android in general.
    Also not reproduceable by Oracle support.
    I have a VO "Employees" with a VC "department_id = :departmentIdVariable" and exposed the find method for this VO via service interface in AM.
    (see demo video from https://blogs.oracle.com/shay/entry/developing_with_oracle_adf_mobile?utm_source=dlvr.it&utm_medium=facebook).
    In a ADF mobile app I create a parameter form and amx:listView like demoed in the mentioned video.
    Whenever I test this app on android emulator I get the error below.
    Exact the same page used in a second feature works fine.
    I found out that the problem only occures on the first attept (this means when I open the page on the second feature first then this will fail and the subsequent call of the first page will be successfull).
    The problem does not occure when the web service data control does not contain a method based on VC with bind variable.
    [SEVERE - oracle.adfmf.framework - AmxBindingContext - loadDataControlById] Unable to load Data Control testDataControl due to following error: ERROR [oracle.adfmf.framework.exception.AdfException] - Unable to load definition for testDataControl.Types.findEmployeesView1DepartmentIdCriteria.findCriteria.childFindCriteria.findAttribute.
    ERROR [oracle.adfmf.framework.exception.AdfException] - Unable to load definition for testDataControl.Types.findEmployeesView1DepartmentIdCriteria.findCriteria.childFindCriteria.findAttribute
    at oracle.adfmf.metadata.bean.transform.TransformCacheProvider.fetch(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
    at oracle.adfmf.cache.SimpleCache.get(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;(Compiled Method)(Unknown Source)
    at oracle.adfmf.metadata.cache.MetaDataCache.getByLocation(Ljava/lang/String;)Loracle/adfmf/util/XmlAnyDefinition;(Unknown Source)
    at oracle.adfmf.metadata.cache.MetaDataFrameworkManager.getJavaBeanDefinitionByName(Ljava/lang/String;)Loracle/adfmf/metadata/bean/JavaBeanDefinition;(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.ws.WebServiceObject.registerBean(Loracle/adfmf/metadata/dcx/AdapterDataControlDefinition;Loracle/adfmf/metadata/dcx/soap/SoapDefinitionDefinition;)V(Unknown Source)
    at oracle.adfinternal.model.adapter.webservice.WSDefinition.loadDataControlDefinition(Loracle/adfmf/metadata/dcx/AdapterDataControlDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.GenericJavaBeanDataControlAdapter.loadDataControl(Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.ws.WebServiceDataControlAdapter.setDataProvider(Ljava/lang/Object;)V(Unknown Source)
    at oracle.adf.model.adapter.DataControlFactoryImpl.createDataControl(Loracle/adfmf/bindings/dbf/AmxBindingContext;Loracle/adfmf/util/XmlAnyDefinition;Ljava/util/Map;)Loracle/adfmf/bindings/DataControl;(Unknown Source)
    Does anyone has seen the above error ?
    I have recreated the model and mobile app more than 20 times, re-installed Jdev, re-created Jdev settings (integrated WLS & Co), ran the web services on a different machine.
    On my site this problem is 100% reproduceable with android emulator.
    regards
    Peter

    Hi, Peter, this could be an issue with proxy server setting. Are you behind a firewall when you test this?
    iOS simulator would use Mac's proxy setting. Android Emulator has its own proxy setup - it's a bit complicated to get to and varies based on the Android emulator you are using. For 4.1 emulator (you should always use 4.x or above emulators), you would need to go into the emulator itself, and go to settings - Wireless & Networks - click More... - Mobile Networks - Access Point Names. You should see an Access point used by the emulator to simulate network connection. Mine says "T-Mobile US". You click on it, and then you can select the proxy attribute and set it according to your office's settings.
    Hope that resolves the issue.
    Thanks,
    Joe Huang

  • Using spry to do a mobile app

    Hi you all. I am thinking about doing a web mobile app. I have been looking around on many free mobile frameworks. The thing is i dont have time to teach myself new frameworks. I already have a good working knowledge and experience of the spry framework and know that spry is great for working with dynamic data and my app will be a data centric app.
    In all honesty do you think spry is a good framework to do a mobile app or shoould i use one of these other.

    1. Try to doGoods receipt/issue in dialog mode for the failed DN and enter the data that woukd have been entered in BDC, you may find what is missing.
    2. Look for any applicable OSS messages for ME 021 error.
    or
    3. If possible create SM35 sessions ( by modifying the program ) for the failed DNs and process those sessions in foreground, you will find the reason.
    Muralidhar

  • Burrito Mobile Apps Extremely Slow

    I just deployed a simple little app, built with Adobe Burrito. it has a list view for locations and a map view for Google maps. You touch a location in the list and it displays your location (obtained via GPS) and the selected location. Simple. Yet, it deploys as a 650K app and runs like tortoise in quicksand. And, I'm on a HTC Evo, which has a snapdragon processor.
    First, seems like the deployed apk is way to big, and second, it's an embarrasment in terms of performance when compared with other apps. The painting of the map is like watching a 300 baud modem display an old telnet session.
    I hope Adobe plans to make big improvements or this is going nowhere in the arena of mobile app development.
    Ron Grimes

    Certainly. I would be glad to share the specifics. I have the following classes:
         StationLocator (MXML class):         1,627 bytes
         Views
         StationLocatorHome (MXML class):     2,597 bytes
         MapView (MXML class):                4,789 bytes
         Supporting Classes
         Location (AS3 class):                4,132 bytes   
         GeographyEvent (AS3 class):            349 bytes
         GeographyWSAO (AS3 class):           5,641 bytes
         3rd Party Components
              map_flex_1_20.swc                   90,278 bytes
    Of course, when you generate a new Mobile App project, it creates the StationLocator and StationLocatorHome MXML classes, based on your project name. So, I have those two MXML classes, plus a MapView class for Google maps. The rest are AS3 classes, along with the Google mapping component.
    I've tried deploying it both with the Framework linkage set to "Merged into code" and "Runtime shared library(RSL)". Both perform basically the same. Lousy!
    I'm going to re-do this project in Eclipse Java environment with the Android plug-in and SDK, and see how that performs.
    Ron

  • Using Flash to develop to games and mobile apps

    This semester I registered for an online course called Motion Graphics with my college.
    The course was supposed to be an introduction to Adobe Flash and Adobe After Effects.
    I signed up for the class specifically because I wanted to learn Adobe Flash to create games and mobile apps.
    Unfortunately, it turns out that as of this semester my college is phasing out Adobe Flash from all of its courses,
    and the course I signed up for is now only teaching After Effects and won't be teaching Flash at all.
    I asked the course instructor about this, and she said it was because "flash can no longer work with creating many "apps" and other applications do not except flash." [sic]
    Is this even a factual statement?
    My college still offers several Java-related courses, but I really would have preferred to learn Flash and ActionScript instead.
    I suppose my primary question here is:
    Would it be better to learn Flash or to learn Java to create apps and games that can run on all of the most common platforms (e.g. Android, iOS, Windows)?

    To be on topic, the course is about "motion graphics", and After Effects is an excellent, highly used tool in that trade. When creating video, Flash is used much less because it's very inferior. Again, in "motion graphics". With a robust expression scripting language in After Effects, Flash lost its footing in this department. Flash was probably only previously part of that course to deploy your video to the web, but it's not necessary or desirable due to (as kglad mentioned) Adobe discontinued Flash Player for mobile. Your target just changed to outputting MP4.
    What you want to do, make apps, is a completely different world. Adobe AIR SDK is a great, frequently updated runtime that I've made dozens of apps with. Java is used with the Android SDK to make native Android apps. Objective-C with Xcode and the iOS SDK is used to make native iOS apps. Visual Studio and Azure (or HTML5/JS/CSS) are used to make Windows apps. The big difference here is the AIR SDK can get a good return on investment from re-using most of the code base of your app (depending on its type) by its scripting language porting to Android, iOS (and I think still Blackberry tabs), not Windows however.
    If you want to make apps, you took the wrong class.
    There are numerous frameworks out there similar to AIR that can deploy to multiple targets that are worth consideration on their own. From specific frameworks (like game-oriented) such as Unity to extremely abstract (used for anything) like Phonegap and standard HTML5 web development.
    I haven't used Flash to make anything like a website in almost a decade. It's strictly been device apps, desktop apps, kiosks and product demonstrations. It's an extremely capable IDE for just about everything, except modern motion graphics.

  • Mobile App - CS4

    Hi, I am trying to make a mobile phone application with CS4. I have a couple questions:
    1. Do I need to install a new framework to get touch events and accelerometer properties working?
    2. Do I need to include some sort of flash player 10.1 plug in with my files to make it work properly on mobile phones?
    3. Can I simply make a normal as3 project, with a .fla made in Flash CS4, and have mouse events work as finger presses for a touch screen phone?
    Thanks

    I'm not quite sure it can be done so "simply" as all that-- Adobe had to engineer a special 'app packager' utility for the iPhone in Flash CS5, and I believe (thanks largely to Steve Jobs and his infamous iOS 4 terms of service clause 3.3.1) that they are working on an analogous utility for packaging Android apps now.  Since I don't know exactly how these utilities work I can't comment on whether they are absolutely necessary for mobile app creation or merely a convenience, but it seems likely that given the complex and highly disparate architecture of mobile devices these special utilities probably are necessary for creating apps out of AS3 projects (and therefore you'll probably need Flash CS5).  It would be quite interesting if my conjecture is wrong and there is a way to package apps for mobile devices without any special utility; I'll definitely be keeping an eye on this thread for Adobe official replies!   
    <edit>
    I just saw this thread: http://forums.adobe.com/thread/696642?tstart=0
    It seems from the tutorial vid linked in the last post that you can create apps for Android via Adobe AIR, so perhaps (for Android devices at least) CS4 would suffice... I can't listen to the sound now so for all I know the first words could be 'you need CS5 for this to work' but from the visuals it looks promising.  Take a look!

  • Native mobile apps, particularly iOS

    Just got an email about how Flex Builder 4.5 lets you easily deploy native cross-platform mobile apps. On a scale from Trivial to Impossible, how would you rate converting an LCCS app with bi-directional video streaming to a fully-functional mobile app?
    Josh

    Hi, Josh,
    There are two answers to that question:
    1.  There is a beta version of the LCCS framework that is mobile compatible. http://forums.adobe.com/message/3833841#3833841#3833841
    2.  you can create a mobile app using the Flash-only SWC included in the  release LCCS SDK.
    Thanks
    sasha

  • SAP Mobile app Stock photo not work for network location

    Hi Experts
    I found if we use network location path (e.g.
    servername\pic folder\) in SAP Business One General Settings -> Path, Picture Folder, then if we logon SAP B1 Mobile app from iPad/iPhone, and try to open stock photo, we will get error:
    Processing Failed
    Internal server error: contact your system administrator
    It looks like it only work for local path, e.g C:\pic
    Even we put path as :
    local pc name\pic folder, it is also not work.
    Any idea about this?
    Thanks
    Tim

    The first link is a temporary fix for a machine that only one or two people will use. This will not fix the Library Machines that some 3000 users can use at anytime. I can not pre-add all these users every time we image a machine. We also loan out laptops and I need these machine to wirelessly login dynamically to the domain. But I also need these machine to allow access if these machine are removed from our campus and the wireless access is not available.
    Thank again for the help and I hope someone at Apple can fix this soon. I going to have a hard time telling the client that thay can not use the OS that came with they're machine.

  • Integrating a PHP Web App with an Existing Azure Mobile Services and Mobile App

    I've got an existing mobile app that is integrated with Azure's mobile services. The mobile services are currently connected to Azure Active Directory with MFA enabled. I'd like to build a separate PHP-based web application (Azure VM) that uses this existing
    mobile service and authentication.
    I reviewed the Azure PHP SDK, but didn't see any tie-ins to the Mobile Service. Additionally, Azure has some great tutorials, but for mobile services they all seem to focus on iOS, Android, and Windows phone. Any insight into how to tie a PHP-app into this
    backend would be much appreciated!

    Although there isn't any client library for PHP, you can still access Mobile Service using the
    Azure Mobile Service REST API.
    Abdulwahab Suleiman

  • FIOS Mobile App - Wireless Does Not Work

    Hello all,
    I am trying to use the new FIOS Mobile app on my Android tablet. This should allow me to watch some live TV, however when I try to connect to a channel it tells me I need to be connected to my broadband router.
    In my setup at home my FiOS broadband router does not handle wireless connections, only wired. I have a separate wireless AP that does this. Why should it matter where I get my wireless connection from, as long as I am connected?
    Help.
    Thanks,
    Steve

    billosaur wrote:
    Someone may have thought this was a great idea, but it's very frustrating to download an app, know that you meet all the criteria for using it, then be unable to use it because the app is unable to differentiate successfully that you are, in fact, on you home network. There's one router in my home, it's a Verizon router, and the app should be smart enough to know this. It's obvious that this app was rushed out without a throrough enough suite of tests, because something this simple should not happen. Is there a ticket in place for this? Is the application support group actively trying to rectify this problem? I'll give Verizon a while to sort it out, but this doesn't please me.
    Send the developers an email at [email protected]  I'm fairly confident they don't monitor this site.  If they don't hear from enough people like you with this issue, they won't fix it.  So please notify them of your issue.  Many are complaining on the Google Play app user reviews about the same problem you have.  You can see then on the Google Play site by accessing the site via a PC.

Maybe you are looking for

  • Numeric character problems when creating spatial index

    Hi, We have run into a problem when trying to create spatial indexes. The problem seems to be that an mdsys-procedure tries to use a number with a comma as decimal symbol in an update statement Error message: ERROR at line 1: ORA-29855: error occurre

  • N81 8gb browser not working

    Whenever i try to access the internet either through WAP or WiFi the browser will not open, the menu im on flickers and then returns to what it was with no browser open! Please help!

  • Web Conference Connectivity Recipe

    New install of OCS V2, Infra & Store on one box, Mid on 2nd box. RHAS2.1. What is the recipe for making Web Conferencing work for a user external to the firewall. Here is my current setup: Mid tier: 1st IP 192.168.100.212, 2nd IP 192.168.100.210 Web

  • Usage of / is 97%

    Hi, In my solaris 10 developement box / usage is showing as 97%...below the details..pls suggets what can be deleted to free up space under / # df -h Filesystem size used avail capacity Mounted on /dev/md/dsk/d10 15G 14G 521M 97% / /devices 0K 0K 0K

  • Airport Express WDS main weirdness

    I have some Qwest provided dsl modem/wireless router hooked up via ethernet to an airport express 802.11n configured to be WDS main. There is another airport express 802.11n as a WDS remote upstairs. If I connect directly to the qwest router I get go