Introduction to PhoneGap Build - Building your first app | Building Mobile Apps with PhoneGap Build | Adobe TV

In this video you will learn how easy it is to build and update your first mobile app using web technologies with the Adobe PhoneGap Build cloud service and learn about two new great improvements to speed developer workflow!
http://adobe.ly/18qDiVR

I just installed the latest Edge Code but there's no PhoneGap build icon as seen in the video.  I don't see any way to turn this feature on.

Similar Messages

  • Include Air ( desktop app ) inside Mobile app permited by Apple / Android?

    Include Air ( desktop app ) inside Mobile app permited by apple / android?
    This is my question....:
    I need a "viewer" app run in a desktop machine... via p2p... ( done and working )
    I will like to include it in my iOS / Android Release, an then by example move it to the documents folder.
    Run iTunes and then copy the file from the shared document folder.
    Is this permited by apple / android / adobe ?
    Thanks....

    just tracing some kind of tests I'm doing.
    A couple of hours ago I left working 2 instances of my Application, leaving alone this computer: one instance is the Mac desktop version and the other one is the Web version. In this case both versions were running on the same computer (an iMac with OS X Mavericks):
    1) the AIR/Mac version have been recompiled yesterday with the new AIR4(.0.0.1619 - AIR 3.8 is used to fall in a equivalent way - no changes)
    2) the Web version have been compiled targeting FP 11.8 and it is running on Chrome browser with PepperFlash NOT disabled (which reports version MAC 13.0.0.80, the latest)
    I left working both the Mac and the Web versions of the Application opened on the pc screen (= not minimized) but kept totally behind some Terminal/ssh windows (= not on OS focus and the system is not asked to update any screen area of the app for sure).
    I came back after about 2 hours and I got the browser version connected&running (but it is not a rule) and I also found the AIR-based Mac version disconnected (uau, usually I found the app disconnected but with the screen freezed at last user look ->) which rapidly reconnects upon my click on the Apple dock icon (bring to front).
    Why these different behaviours? I ask to myself.
    The two versions of the software are TOTALLY the SAME application: except for the first Flash file (a 24kb swf file for the Web version and a 170kb dmg file for the Mac version), basically a platform-dependent loader, both versions loads the same remote swf modules. Of course t is AIR (or my first Flash file?).
    I attach the source code of the Mac version of the [first file] AIR-based application at the following url:
    http://92.63.230.100/others/others/wtstarter_mac.as.txt
    _Adobe_, is it a bug? isn't it?
    mc

  • Authentication after migrating to App Services Mobile App: uid vs sid

    I've migrated form Azure Mobile Services to the new App Services Mobile App, and I'm using the new AMS 2.0.0-beta on the client-side.
    I have two providers (currently) implemented for OAuth 2.0: Google and Twitter.
    Previously, I was able to get the provider token via a claim in the principal on the server, and there would be a uid (unique id) claim that would be either "Google:123456789" or "Twitter:123456789010" (or however many alphanumerics). I
    believe the MobileServiceClient.UserId also exposed this as well.
    Now, after I've migrated to the new App Services Mobile App (and I'm using the Preview Portal now, which for the most part is pretty awesome), there is no longer a uid claim, but rather a single sid (session id) claim, something like: "sid:ABCDEFGHIJKLMNOPQRSTUVWXYZ",
    no matter which provider I log in with. When I looked on the client-side at the
    MobileServiceClient.UserId value, it also gives this "sid" value.
    The point is that previously the uid token could uniquely identify a user. Now it is the same for all users across all providers!
    How can I get the provider token with the App Services Mobile App that I was previously able to get with Azure Mobile Services?
    Also, could anyone point me to the source code for the Azure Mobile Services 2.0.0-beta? I can't seem to find it on GitHub.
    ibGib

    I ended up
    posting this question on StackOverflow and I have answered it there as well (I'm having difficulties attaching the picture here).
    ibGib

  • Flash Builder 4.5.1 Creating iOS Mobile App creates components not Spark views

    Hi
    I have Flash Builder 4.5.1 on Windows 7 using SDK 4.5.1.
    Following many of the Hello World video tutorials (including what's on Adobe TV's website) I create a new Mobile based Application in Flash Builder. I set it up to be a View Based Application targeting iOS and iPhone (although the problem is for any iOS device).
    I follow all the instructions and yet the MXML that's created at the end is component based and not targeting Spark Views. This floors running or viewing the app! Code for both Application class and View is as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <components:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                         xmlns:s="library://ns.adobe.com/flex/spark" xmlns:components="spark.components.*" firstView="views.MyMobileProjectHomeView" applicationDPI="240">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
    </components:ViewNavigatorApplication>
    <?xml version="1.0" encoding="utf-8"?>
    <components:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                     xmlns:s="library://ns.adobe.com/flex/spark" xmlns:components="spark.components.*" title="HomeView">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
    </components:View>
    I have no idea why Flash Builder is creating code that's namespaced to components and not the spark framework.
    The code that's created in the course is below and yet if I import their project and try and view in Design view Flash Builder tells me 'An unknown item is declared as the root of your MXML document. Switch to source mode to correct it.':
    <?xml version="1.0" encoding="utf-8"?>
    <s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark" firstView="views.HelloWorldHomeView" applicationDPI="240">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
    </s:ViewNavigatorApplication>
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:Label text="Hello World"/>
    </s:View>
    Please help
    Many thanks in advance
    David

    Here's the solution:
    The problem did not exist on an installation of Flash Builder on a spare MacBookPro.
    On my main computer (the one with the Flash Builder issue) I uninstalled and reinstalled Flash Builder 4.5 (then updated to 4.5.1). Creating an iOS Mobile Application now creates the correct code.
    I have no idea why it was creating dodgy code.
    The only difference with the new Flash Builder install is that SourceMate 3.0 is not installed yet. Perhaps something had gone wrong in the Adobe Updater when going from 4.5 to 4.5.1, who know...all speculation...anyhow it works now!

  • Dreamweaver Help | Packaging web applications as native mobile applications with PhoneGap Build

    This question was posted in response to the following article: http://helpx.adobe.com/dreamweaver/using/packaging-web-apps.html

    Hi, I have a question.
    (Quick explanation) I have dreamweaver cs6, I created an android app, a run the emulator and everything seems to be ok with the app, I download the .apk and everything ok so far, but when i wanted to upload it to Google Play i need to sign it, but I search all the web somehow to sign it and i did not find anything to sign an app made with dreamweaver and Phonegap, just those made with Eclipse.
    My question:
    Is there anyway to export driectly from Dreamweaver to Eclipse as a project? so i can export it and sign it...
    if Not, How can i convert those html files made with dreamweaver to Eclipse files, so I can use Eclipse to sign and generate the keystore file
    or, How can I generate a keystore file to sign an app made with Dreamweaver?
    Thakns.

  • How to build a DLL that has Pascal calling conventions with application builder?

    Hi,
    I'm researching for possible solution to one of our problems.
    In one case, solution would be to build a DLL from LabView
    code. This should be simple task, but the application that
    is going to load the DLL requires that the functions in the
    library are exported using Pascal calling conventions,
    similar to the C/C++ example code below.
    DWORD APPEXPORT far APPPASCAL function(char hexr[])
    Could this be possible with LabView somehow? Or is it best just
    to write the DLL with C/C++?
    Thanks.

    Thanks Wiebe.
    I don't know whether I need pass string pointers or not. The example
    I posted was from the manual of the program that will be using the DLL
    I build with LabView. I only wanted to show with it the exported calling
    convention needed. It seems that it actually confused my question rather
    than clearing it.
    Anyway, now I know that it's possible to declare the calling convention
    when building the DLL. And it's always good to know that I might encounter
    different pointer types on the way, this may actually save me from a lot of
    debugging some day.

  • Creating your first AIR application for Android with the Flex SDK

    This question was posted in response to the following article: http://help.adobe.com/en_US/air/build/WS901d38e593cd1bac25d3d8c712b2d86751e-8000.html

    The name of the self-signed cert that is generated in the "Create the APK package file" step is sampleCert.pfx, but the name of the file in the next step is sampleCert.p12. This should be fixed.

  • Splash screen for a desktop app (non mobile app)

    I'm using fb4linux, 4.5.1A SDK, I'm developing a non-mobile (i.e. desktop application) and I would like to add a splash screen to it.
    I've added mobilecomponents.swc to the library path, and the application starts like this:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx"
       width="400" height="400" xmlns:local="*"
       preloader="spark.preloaders.SplashScreen"
       splashScreenImage="@Embed('assets/splashscreen.png')"
       splashScreenMinimumDisplayTime="1500">
    When I debug it, no splash scren is shown and I get the following error:
    ReferenceError: Error #1065: Variable flash.display::StageAspectRatio is not defined.
        at spark.preloaders::SplashScreen/prepareSplashScreen()[E:\dev\4.5.1\frameworks\projects\mobilecomponents\src\spark\preloaders\SplashScreen.as:340]
        at spark.preloaders::SplashScreen/Stage_resizeHandler()[E:\dev\4.5.1\frameworks\projects\mobilecomponents\src\spark\preloaders\SplashScreen.as:407]
    The problem seems to be triggered by the line that sets the preloader, because if I remove it, the error is gone (although no splash screen is shown either).
    Any ideas how to make it work?
    Thanks!

    import [install folder]\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\frameworks\libs\mobile to your build path
    Note: You must add the frameworks\libs\mobile\mobilecomponents.swc to the library path of the application to support the splash screen in a desktop application.

  • Converting desktop app to mobile app

    hi i have developed a simple java desktop app for making currency conversions, now i want this to work on my mobile, what are the steps to take to convert it, or do I have to start from scratch? thanks

    I think it'll be easier to start from scratch. Java ME classes, even those with the same package and class names, are not the same as their Java SE big brothers.
    Here's a link to a [J2ME Tutorial|http://today.java.net/pub/a/today/2005/02/09/j2me1.html].
    If you have any Java ME related questions, please post them to the [CLDC and MIDP forum|http://forum.java.sun.com/forum.jspa?forumID=76].
    luck, db

  • Trying to create first iPhone app, use Interface Builder or Xcode first?

    I'm trying to create my first iPhone App, do I start with Interface Builder or Xcode first? And how do I link the two together?

    It's not really that simple -- you'll be working with both. Interface Builder is used to design the GUI (graphical user interface, which consists of the windows and buttons and text fields and so forth, the parts of the application that your user interacts with). Xcode, on the other hand, is used to write the code that tells that GUI what it's supposed to do, and how to do it. So, to answer your question as best I can -- generally, I would imagine you would want to start by creating the basic form of your GUI in Interface Builder and then start coding where appropriate in Xcode, then you'll move back and forth between the two (Xcode and Interface Builder) as needed.
    If you're new to programming and want to start with iPhone apps, I recommend picking up a book on the topic (Apress publishing has a book called "Beginning iPhone 3 Development: Exploring the iPhone SDK" that is a good one, and don't forget to take advantage of Apple's iOS Dev Center, which has lots of good documentation on most any topic that will be helpful in supplementing the information in the book you buy -- click [here|http://developer.apple.com/iphone/index.action] to go there).
    Keep in mind, however, that trying to learn to program iPhone apps will be difficult (to say the least) if you don't already know Objective-C, and the Apress book I recommended above will not be easy to follow without understanding Objective-C first. Objective-C an object-oriented extension of C, and it is the programming language that is used to develop iOS apps (apps for the iPhone, iPod touch, or iPad). I would definitely recommend learning Objective-C on the Mac before jumping in to iPhone development in specific. Apress has another book called "Learn Objective-C on the Mac" that I would recommend for this.
    Furthermore, since Objective-C is an extension of C, you won't have an easy time learning it without a prior understanding of the C programming language. Again, Apress has a book for this, called "Learn C on the Mac."
    Put simply, learning to program for the iPhone is not something that comes overnight -- it's a step-by-step process that takes patience, and you have to be willing to go through these steps if you want to learn to program properly for the iPhone.
    Step 1 -- learn the C programming language
    Step 2 -- learn the Objective-C programming language
    Step 3 -- apply your knowledge to developing for iOS (iPhone's operating system) with the Cocoa Touch framework
    Anyways, that's just my advice -- I definitely recommend taking the time to do it right and not jumping straight into the deep end, but in the end only you know what works best for you. Also, like I said, I definitely think investing in a book on the subject is worth the time and money, so let me know if you want any other recommendations for books beyond the ones listed above.
    Hope this was helpful to you, and best of luck with your journey toward programming for iOS.

  • 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

  • Possible to pack Air runtime with mobile app?

    Many friends told me if my mobile app need something else to be installed to run, they will quit. I think unless most mobiles installed Air runtime in the future. We must make the installation more user-friendly.
    Can I pack the runtime together with app? Or is ther another work around?

    Flex 4.6 / Air 3.0 introduced Captive Runtime, which is exactly what you are requesting.  You choose the version of Flex/Air to be included in your app and it is bundled into the build.  This has been the only option for iOS, but is now available for Android as well.  When exporting a release build of your project in the newest version of Flash Builder, there is an option in the Deployment tab to "Export application with captive runtime".
    Check out this link for more information:
    http://www.adobe.com/devnet/air/articles/air3-install-and-deployment-options.html#articlec ontentAdobe_numberedheader

  • How to update mobile app on Tablet with Android OS?

    Hi everyone!)
    I use Flash Builder, i'm want to create mobile app working on Tablet with Android OS with possibility to update it to new version, for example from ver.1 to ver.2,
    when i work in Flex Builder it seems like this:
      import air.update.ApplicationUpdaterUI;
      import air.update.events.UpdateEvent;
      private var updater:ApplicationUpdaterUI = new ApplicationUpdaterUI();
      private function doUpdate():void
          updater.configurationFile = new File("app:/config/updaterConfig.xml");
          updater.initialize();
      but when i crete new mobile project in Flash Builder I can't import air.update
    Smb, please show me basic example how i can do this...mb some links to this discussion or example on my email: [email protected]
    PS: thanks to everyone!)))

    If you had looked at data dashboard and some of the other links on Android, you would see that you cannot run a LabVIEW app on Android. Nor can you use a serial port. With Data Dashboard, you have a pc running LabVIEW and it publishes to network shared variables. Data Dashboard on the Android allows you to view those variables.

  • Question About what Azure Services I should be using for mobile app with website.

    Hello,
    I am wondering what Azure service would be best for my new application. I need to have an SQL database that I can connect to and modify from both a website and a mobile app preferably WP8 and Android. I was not really understanding whether I would need a
    mobile service or normal SQL database. Which should I use or am I completely off track?
    Thanks,
    Matthias

    Mobile Services uses SQL Database, nothing special on that SQL Database, its just like any other  "normal" SQL Database.
    Mobile Services provides "back-end services" that simplifies accessing SQL Database, Notification services, authentication, etc...
    Let's assume you don't use Mobile Services, to use SQL Database, you would need your app (both mobile and web) to connect to the database. In practice, you will not want to expose your SQL database directly, so you'd end-up writing some kind of a "facade"
    that your app will access instead of directly connecting to the database.
    Instead of writing that "facade", Mobile services provides that for you (you still have to write code though, but less than what you need to write if you're rolling your own).
    Both your web app and mobile apps can share the same SQL database (pay attention to the mobile service schema).
    To help you decide, ask yourself what other features will your mobile app require? Authentication? Notification? etc... are you prepared to write those on your own or use various libraries instead of one?

  • Need HTTPService and play video in flex 4.6 Air Mobile App

    We are porting a flex 3.2 app to mobile app. The 3.2 app uses mx.rpc.http.HTTPService to send XML requests for data and launch video web pages. Will a flex 4.6 Air Mobile app be able to do the same? If so, what replaces mx.rpc.http.HTTPService? I read that mx components will not work in Flex mobile apps.

    HI,
    Its working fine.And the mxml components which are displayobject should not be used in the mobile application except the chart.
    So nothing wrong with using "mx.rpc.http.HTTPService",you can also use  <s:HTTPService/>
    Also there is a nice way to see which components should be used or which not for the mobile application.
    Simply mouse over on the component when you have used it.You can see a message on that if that is not optimized for the mobile application like for the combobox you can see this message:-
    "Adobe discourages using ComboBox when targeting profiles: mobileDevice."
    While this is not the case with <s:HTTPService/>.
    with Regards,
    Shardul

Maybe you are looking for