ADF Mobile: Error when accessing the app from the Android emulator

I am trying to build a mobile app ADF with JDeveloper (11.1.2.4.0) and its extension ADF Mobile Framework (11.1.2.4.39.64.69). The version of the Android API is 23 and the SDK build tools and platform version 20.

I built the app and the deployment of the android emulator has been a success, but when I try to access the application on the emulator, it throws an error indicating that the application has stopped working.

When I check logcat he showed the exception stack trace below that throws an UnsupportedOperationException

Any help would be really appreciated.

I/ActivityManager( 1240): Start proc com.company.OracleMobile for activity com.company.OracleMobile/oracle.adfmf.Container: pid=1782 uid=10019 gids={50019, 1028, 1015, 3003}
D/WearableConn( 1443): Connecting via TCP to /10.0.2.2:5601
W/System.err( 1782): No properties file. Taking properties from ClassLoader resources
D/dalvikvm( 1782): GC_CONCURRENT freed 152K, 12% free 2199K/2476K, paused 9ms+9ms, total 50ms
D/dalvikvm( 1782): GC_CONCURRENT freed 119K, 10% free 2491K/2740K, paused 13ms+10ms, total 44ms
W/System.err( 1782): Opening "logging.properties" also failed
W/System.err( 1782): java.io.IOException: BufferedInputStream is closed
D/dalvikvm( 1782): GC_FOR_ALLOC freed 168K, 12% free 2542K/2884K, paused 14ms, total 15ms
I/dalvikvm-heap( 1782): Grow heap (frag case) to 4.062MB for 1536012-byte allocation
D/dalvikvm( 1782): GC_CONCURRENT freed <1K, 8% free 4041K/4388K, paused 9ms+1ms, total 32ms
E/WebViewFactory( 1782): Chromium WebView does not exist
E/WebViewFactory( 1782): Chromium WebView does not exist
D/gralloc_goldfish( 1782): Emulator without GPU emulation detected.
I/ActivityManager( 1240): Displayed com.company.OracleMobile/oracle.adfmf.Container: +1s55ms
I/Choreographer( 1240): Skipped 33 frames!  The application may be doing too much work on its main thread.
D/dalvikvm( 1782): GC_CONCURRENT freed 189K, 7% free 4453K/4768K, paused 17ms+17ms, total 90ms
I/Choreographer( 1240): Skipped 96 frames!  The application may be doing too much work on its main thread.
I/Choreographer( 1240): Skipped 122 frames!  The application may be doing too much work on its main thread.
I/Choreographer( 1240): Skipped 202 frames!  The application may be doing too much work on its main thread.
D/dalvikvm( 1782): GC_FOR_ALLOC freed 376K, 10% free 4746K/5268K, paused 15ms, total 16ms
D/dalvikvm( 1782): GC_FOR_ALLOC freed 495K, 14% free 4944K/5724K, paused 14ms, total 15ms
D/dalvikvm( 1782): GC_CONCURRENT freed 507K, 11% free 5335K/5964K, paused 16ms+16ms, total 58ms
D/dalvikvm( 1782): GC_CONCURRENT freed 287K, 7% free 6075K/6484K, paused 18ms+11ms, total 61ms
D/dalvikvm( 1782): GC_CONCURRENT freed 596K, 10% free 6755K/7472K, paused 17ms+9ms, total 61ms
W/dalvikvm( 1782): Exception Ljava/lang/UnsatisfiedLinkError; thrown while initializing Lcom/oracle/cvm/channel/VM;
W/System.err( 1782): java.lang.reflect.InvocationTargetException
W/System.err( 1782):  at java.lang.reflect.Constructor.constructNative(Native Method)
W/System.err( 1782):  at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
W/System.err( 1782):  at oracle.adfmf.framework.FeatureContextManagerFactory.createFeatureContextManager(FeatureContextManagerFactory.java:37)
W/System.err( 1782):  at oracle.adfmf.framework.FeatureContextManagerFactory.getInstance(FeatureContextManagerFactory.java:72)
W/System.err( 1782):  at oracle.adfmf.Application.initializeFeatureContextManager(Application.java:328)
W/System.err( 1782):  at oracle.adfmf.Application.initApplication(Application.java:298)
W/System.err( 1782):  at oracle.adfmf.Container$LayoutLoader.resumeApplicationLoad(Container.java:865)
W/System.err( 1782):  at oracle.adfmf.Container$LayoutLoader.run(Container.java:786)
W/System.err( 1782):  at android.os.Handler.handleCallback(Handler.java:733)
W/System.err( 1782):  at android.os.Handler.dispatchMessage(Handler.java:95)
W/System.err( 1782):  at android.os.Looper.loop(Looper.java:136)
W/System.err( 1782):  at android.app.ActivityThread.main(ActivityThread.java:5026)
W/System.err( 1782):  at java.lang.reflect.Method.invokeNative(Native Method)
W/System.err( 1782):  at java.lang.reflect.Method.invoke(Method.java:515)
W/System.err( 1782):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:777)
W/System.err( 1782):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602)
W/System.err( 1782):  at dalvik.system.NativeStart.main(Native Method)
W/System.err( 1782): Caused by: java.lang.UnsatisfiedLinkError: Couldn't load cvm from loader dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.company.OracleMobile-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.company.OracleMobile-1, /system/lib]]]: findLibrary returned null
W/System.err( 1782):  at java.lang.Runtime.loadLibrary(Runtime.java:358)
W/System.err( 1782):  at java.lang.System.loadLibrary(System.java:588)
W/System.err( 1782):  at com.oracle.cvm.channel.VM.<clinit>(Unknown Source)
W/System.err( 1782):  at oracle.adfmf.JavaStarter.startJVMWithFeatureClasspaths(JavaStarter.java:351)
W/System.err( 1782):  at oracle.adfmf.JavaStarter.startJava(JavaStarter.java:65)
W/System.err( 1782):  at oracle.adfmf.framework.NativeFeatureContextManager.<init>(NativeFeatureContextManager.java:113)
W/System.err( 1782):  ... 17 more
D/dalvikvm( 1782): GC_CONCURRENT freed 1574K, 21% free 6714K/8416K, paused 15ms+18ms, total 81ms
W/ActivityManager( 1240): Bad activity token: android.os.BinderProxy@b22d6f30
W/ActivityManager( 1240): java.lang.ClassCastException: android.os.BinderProxy cannot be cast to com.android.server.am.ActivityRecord$Token
W/ActivityManager( 1240):  at com.android.server.am.ActivityRecord.forToken(ActivityRecord.java:338)
W/ActivityManager( 1240):  at com.android.server.am.ActivityRecord.isInStackLocked(ActivityRecord.java:1031)
W/ActivityManager( 1240):  at com.android.server.am.ActivityRecord.getStackLocked(ActivityRecord.java:1039)
W/ActivityManager( 1240):  at com.android.server.am.ActivityManagerService.getEnclosingActivityContainer(ActivityManagerService.java:7101)
W/ActivityManager( 1240):  at android.app.ActivityManagerNative.onTransact(ActivityManagerNative.java:2026)
W/ActivityManager( 1240):  at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:2023)
W/ActivityManager( 1240):  at android.os.Binder.execTransact(Binder.java:404)
W/ActivityManager( 1240):  at dalvik.system.NativeStart.run(Native Method)
W/ActivityManager( 1240): Bad activity token: android.os.BinderProxy@b22f2490
W/ActivityManager( 1240): java.lang.ClassCastException: android.os.BinderProxy cannot be cast to com.android.server.am.ActivityRecord$Token
W/ActivityManager( 1240):  at com.android.server.am.ActivityRecord.forToken(ActivityRecord.java:338)
W/ActivityManager( 1240):  at com.android.server.am.ActivityRecord.isInStackLocked(ActivityRecord.java:1031)
W/ActivityManager( 1240):  at com.android.server.am.ActivityRecord.getStackLocked(ActivityRecord.java:1039)
W/ActivityManager( 1240):  at com.android.server.am.ActivityManagerService.getEnclosingActivityContainer(ActivityManagerService.java:7101)
W/ActivityManager( 1240):  at android.app.ActivityManagerNative.onTransact(ActivityManagerNative.java:2026)
W/ActivityManager( 1240):  at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:2023)
W/ActivityManager( 1240):  at android.os.Binder.execTransact(Binder.java:404)
W/ActivityManager( 1240):  at dalvik.system.NativeStart.run(Native Method)
D/AndroidRuntime( 1782): Shutting down VM
W/dalvikvm( 1782): threadid=1: thread exiting with uncaught exception (group=0xb1d31ce8)
E/AndroidRuntime( 1782): FATAL EXCEPTION: main
E/AndroidRuntime( 1782): Process: com.company.OracleMobile, PID: 1782
E/AndroidRuntime( 1782): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.company.OracleMobile/oracle.adfmf.LocalHTMLActivity}: java.lang.UnsupportedOperationException
E/AndroidRuntime( 1782):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2197)
E/AndroidRuntime( 1782):  at android.app.ActivityThread.startActivityNow(ActivityThread.java:2037)
E/AndroidRuntime( 1782):  at android.app.LocalActivityManager.moveToState(LocalActivityManager.java:135)
E/AndroidRuntime( 1782):  at android.app.LocalActivityManager.startActivity(LocalActivityManager.java:347)
E/AndroidRuntime( 1782):  at oracle.adfmf.Container.activateHiddenBackgroundFeature(Container.java:2128)
E/AndroidRuntime( 1782):  at oracle.adfmf.Container.activateAdfApplication(Container.java:1277)
E/AndroidRuntime( 1782):  at oracle.adfmf.Container.activateAdfApplication(Container.java:1263)
E/AndroidRuntime( 1782):  at oracle.adfmf.Container$LayoutLoader.resumeApplicationLoad(Container.java:867)
E/AndroidRuntime( 1782):  at oracle.adfmf.Container$LayoutLoader.run(Container.java:786)
E/AndroidRuntime( 1782):  at android.os.Handler.handleCallback(Handler.java:733)
E/AndroidRuntime( 1782):  at android.os.Handler.dispatchMessage(Handler.java:95)
E/AndroidRuntime( 1782):  at android.os.Looper.loop(Looper.java:136)
E/AndroidRuntime( 1782):  at android.app.ActivityThread.main(ActivityThread.java:5026)
E/AndroidRuntime( 1782):  at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 1782):  at java.lang.reflect.Method.invoke(Method.java:515)
E/AndroidRuntime( 1782):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:777)
E/AndroidRuntime( 1782):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602)
E/AndroidRuntime( 1782):  at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 1782): Caused by: java.lang.UnsupportedOperationException
E/AndroidRuntime( 1782):  at com.android.webview.nullwebview.NullWebViewFactoryProvider.createWebView(NullWebViewFactoryProvider.java:41)
E/AndroidRuntime( 1782):  at android.webkit.WebView.ensureProviderCreated(WebView.java:2058)
E/AndroidRuntime( 1782):  at android.webkit.WebView.setOverScrollMode(WebView.java:2116)
E/AndroidRuntime( 1782):  at android.view.View.<init>(View.java:3461)
E/AndroidRuntime( 1782):  at android.view.View.<init>(View.java:3517)
E/AndroidRuntime( 1782):  at android.view.ViewGroup.<init>(ViewGroup.java:470)
E/AndroidRuntime( 1782):  at android.widget.AbsoluteLayout.<init>(AbsoluteLayout.java:52)
E/AndroidRuntime( 1782):  at android.webkit.WebView.<init>(WebView.java:498)
E/AndroidRuntime( 1782):  at android.webkit.WebView.<init>(WebView.java:475)
E/AndroidRuntime( 1782):  at android.webkit.WebView.<init>(WebView.java:455)
E/AndroidRuntime( 1782):  at android.webkit.WebView.<init>(WebView.java:444)
E/AndroidRuntime( 1782):  at android.webkit.WebView.<init>(WebView.java:434)
E/AndroidRuntime( 1782):  at org.apache.cordova.CordovaWebView.<init>(CordovaWebView.java:118)
E/AndroidRuntime( 1782):  at oracle.adfmf.phonegap.PhoneGapAdapterWebView.<init>(PhoneGapAdapterWebView.java:30)
E/AndroidRuntime( 1782):  at oracle.adfmf.phonegap.AdfPhoneGapActivity.createWebView(AdfPhoneGapActivity.java:523)
E/AndroidRuntime( 1782):  at oracle.adfmf.phonegap.AdfPhoneGapActivity.init(AdfPhoneGapActivity.java:506)
E/AndroidRuntime( 1782):  at oracle.adfmf.phonegap.AdfPhoneGapActivity.onCreate(AdfPhoneGapActivity.java:442)
E/AndroidRuntime( 1782):  at android.app.Activity.performCreate(Activity.java:5242)
E/AndroidRuntime( 1782):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
E/AndroidRuntime( 1782):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2161)
E/AndroidRuntime( 1782):  ... 17 more
W/ActivityManager( 1240):   Force finishing activity com.company.OracleMobile/oracle.adfmf.Container
D/gralloc (  926): Registering a buffer in the process that created it. This may cause memory ordering problems.
E/libEGL  (  926): called unimplemented OpenGL ES API
E/libEGL  (  926): called unimplemented OpenGL ES API
E/libEGL  (  926): called unimplemented OpenGL ES API
E/libEGL  (  926): called unimplemented OpenGL ES API
E/SurfaceFlinger(  926): glCheckFramebufferStatusOES error -286649159
E/SurfaceFlinger(  926): got GL_FRAMEBUFFER_COMPLETE_OES error while taking screenshot
E/libEGL  (  926): called unimplemented OpenGL ES API
E/libEGL  (  926): called unimplemented OpenGL ES API
W/WindowManager( 1240): Screenshot failure taking screenshot for (164x246) to layer 21005
I/Choreographer( 1240): Skipped 30 frames!  The application may be doing too much work on its main thread.
W/ActivityManager( 1240): Activity pause timeout for ActivityRecord{b25294d8 u0 com.company.OracleMobile/oracle.adfmf.Container t7 f}
I/Choreographer( 1240): Skipped 386 frames!  The application may be doing too much work on its main thread.
I/Choreographer( 1240): Skipped 418 frames!  The application may be doing too much work on its main thread.
I/Choreographer( 1240): Skipped 442 frames!  The application may be doing too much work on its main thread.
D/rpctransport( 1443): sendRpc: failed: 46

Hi SayantanSinha,

If you look under API supported levels, the maximum is 19 API.  I can't speak for the ADF 11.1.2 but the lines of code in the (more recent) MAF, who have a similar support matrix, we have noted problems with the API 20.

You can download older versions of the API of the Manager of Android SDK tool.  Remember to update your EPCO or JDev SDK configuration with the version that you want to use once it is installed.

Oracle JDeveloper 11g Release 2 (11.1.2) Certification

Tags: Oracle Mobile

Similar Questions

  • root properties in the connected data store: error when accessing the date/time storage

    When you browse the properties my connected data store I get an error message when you try to read the value of the property of 'storage date/time': object doesn't support this property or method.

    Here is a minimal example:

    Dim oMyDataStore, MyProperty, oMyProperties
    Set oMyDataStore = Navigator.ConnectDataStoreByParameter ("TOC", "" & "C:\Program Files (x 86) \National 2012\Examples\Data\Example_data.tdm" & "" ')
    Set oMyProperties = oMyDataStore.RootElements (1). Properties
    For each MyProperty in oMyProperties
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value "")
    Next

    Why can I not access this particular property by default?

    Hi Phex,

    for the date/time properties, an object called UsiTimeDisp is returned. This object allows to that extend features of service as access to each part separately (day, year, hour, seconds,...) of your date/time value. If you want to print the value of time with MessageBoxDisp, you can use the VariantDate this object property.

    Your code might look like this then:

    Dim oMyDataStore, MyProperty, oMyProperties
    Set oMyDataStore = Navigator.ConnectDataStoreByParameter ("TOC", "" & "C:\Program Files (x 86) \National 2012\Examples\Data\Example_data.tdm" & "" ')
    Set oMyProperties = oMyDataStore.RootElements (1). Properties
    For each MyProperty in oMyProperties
    MyProperty.DataType = eTime Then
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value. ' ") VariantDate)
    On the other
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value "")
    End If
    Next

    I hope this helps.

    Good day

    Eva

  • 'Error when accessing the preference files' - no preference files not created

    This is similar to another recent problem.  I get two error messages when you attempt to start the AE:

    Screen Shot 2016-06-23 at 12.19.10 PM.pngScreen Shot 2016-06-23 at 12.19.12 PM.png

    When I go to users > library > preferences > adobe > consequences, that's what I see:

    Screen Shot 2016-06-23 at 12.19.33 PM.png

    It seems that AE did not create folders for the last update?  The my computer for missing files search turns up no results.  AE uninstalling and reinstalling does not solve the problem.

    Please visit this link.

    How to display the folder ~/Library Mavericks and Yosemite. Macworld

    After completing the information on the link, the problem persists. And after all sorts of solutions, I just deleted the folder 13.8 and the AE iniciates perfectly.

  • FRM:92101:error while accessing the employee assignment page

    Hi all

    I get the following error when accessing the people > enter and manage > assignment Page.


    FRM:92101: There was a failure in the Forms Server when starting upwards. This could happen because of the configuration of invallid. Look in the log file of the web server for details.

    Menu: GLB HRMS Navigator
    Application group: Global HRMS reports and process

    Kindly help.

    Concerning
    Patrice

    I remember having this problem once when there was a problem with the installation of people group KFF. In this case the form server crash occurs when opening the form assignment. No other screen don't show this behavior in this case. What we did open people group FF implemented, create a dummy segment (you must have at least a dummy segment for people group flex field for the assignment screen to work correctly), compile, and save. Once this is done, transfer opens correctly.
    You can also try the same thing and let us know if it works with you.

  • When downloading an app from the trial of creative cloud app error ocured with the message "Download appers corrupted.please try to download again(-60), please provide a guide step by step to solve this problem."

    When downloading an app from the trial of creative cloud app error ocured with the message "Download appers corrupted.please try to download again(-60), please provide a guide step by step to solve this problem."

    Contact adobe support using a Web browser that accepts cookies and allows pop up windows, click here and as soon as it is available, click "still need help," https://helpx.adobe.com/contact.html

  • Getting error while deploying ADF Mobile App in the android emulator

    Hi all
    I'm getting following error when the mobile deployment app in the android... emulator I went through google search and I did all the steps as follows...


    1 keytool - genkey - v - keystore debug.keystore - alias androiddebugkey - keyalg RSA - keysize 2048 - validity 10000

    I gave the password, last name, organization, State and country
    2 jarsigner - sigalg MD5withRSA - digestalg SHA1-verbose - keystore /Users/Admin/.android/debug.keystore C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1/generalmobileapp.apk
    3 / e - platform-tools/adb install - r C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1/generalmobileapp.apk

    After the above step... I got the SUCCESS message (while performing the steps above in the command prompt).

    Even after this... I get the same error while deploying my application using jdeveloper in the android emulator...


    ERROR:

    [09: 40:02] failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
    [09: 40:02]
    [09: 40:02] command-line execution failed (return code: 0)
    [09: 40:02] run command line: 'E:\android\adt-bundle-windows-x86_64\sdk\platform-tools\adb' EI setup - r "C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1\generalmobileapp.apk".
    [09: 40:02] undeployment.
    [09: 40:02] - incomplete deployment.
    [09: 40:02] deployment failed due to one or more errors returned by "E:\android\adt-bundle-windows-x86_64\sdk\platform-tools\adb". What follows is a summary of the returned error:
    Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]


    Kind regards
    Nani

    Published by: 962874 on January 12, 2013 06:46

    The emulator can run out of space for applications - so if you have other applications that are deployed to the emulator remove them and then try again.
    Other options here:
    http://StackOverflow.com/questions/2239330/how-to-increase-storage-for-Android-emulator-install-failed-insufficient-Stora

  • After that the effects cannot continue: error when access to the files instead of inside "/ users/dsvp/Library/Preferences/Adobe/After Effects / 13.8.

    After Effects after several months, I now can't launch After Effects without this error: After Effects can't continue: error when access to the files instead of inside "/ users/dsvp/Library/Preferences/Adobe/After Effects / 13.8.  There is no subfolder this Library which is the first obvious sign of something not going.  I've uninstalled and reinstalled twice with the same error and lack of file structure.  I do not understand why a re - install does not create the files and folders needed.

    reset your preferences - http://helpx.adobe.com/after-effects/using/preferences.html

    [moved from the installation, update, & members of Acrobat After Effects]

  • After that the effects cannot continue: error when access to the files instead of inside "/ users/me/Library/Preferences/Adobe/After Effects / 13.8", if it please check the file permissions and try again.

    After that the effects cannot continue: error when access to the files instead of inside "/ users/me/Library/Preferences/Adobe/After Effects / 13.8", if it please check the file permissions and try again.

    [Fixed spelling - Mod]

    Go to the folder listed in the path and change the permissions to read/write. Do you know how? It is in the info file.

  • "Error when access to the files of preference... Please check the file permissions and try again.

    I tried installing After Effects test and received the error message:

    "After that the effects cannot continue: error when access to the files instead of inside" / users/Kelly/Library/Preferences/Adobe/After Effects / 13.5 ", please check the file permissions and try again. '"

    I'm unable to check file permissions because the file path does not exist.

    I'm on a 2013 15 "retina Macbook Pro running OSX 10.9.5

    Premiere Pro downloaded successfully. After effects will be not open and wont let me start a trial (he thinks I've already started?)

    Screen Shot 2015-08-19 at 13.48.27.png

    Thanks for any help that is going can offer!

    kbombcarpenter To access this file reference the steps mentioned on help below link, user library folder is hidden by default.

    Access the hidden user library files. Mac OS 10.7 and later versions

  • Apple to connect error when finished downloading App

    I'm at the end of my witt and about two days of losing my job.

    We create the magazine App, in which our boys are qualified to do. InDesign creates the application, (magazine), but when download us it via Apple Uploader it says I have an error of kiosk, even when I turn off the kiosk option I get an invalid binary error (which is not the Manager).

    Ive tried to add the UINewsstand and BundleIcons manually via XCode, but when I rebundle (zip) of this it returns an invalid binary error. Apple said there is an Indesign error, lack of stuff but Ive added all icons different all the meta, it's just crazy. The Manager is towards the end of his patience, and none of my teammates know what is happening.

    Does anyone know how to solve this problem? As it seems at the present time, the company is not getting a return on our work or the creative cloud service, nerves are frayed to say the least.

    OK, let's take a step back and watch your initial problem of basic: an error when downloading the app about newsstand. The solution is simple: do not check kiosk in iTunes when you set up your app list.

    I suggest that you remove any other .zip file downloaded from App Builder and download then charges before the transfer to Apple. Since you mentioned that you went and mucked with the application that we created using xcode who knows what could be wrong with it. Delete it, download a new App Builder, make sure that you have not selected in iTunes newsstand, and you should be fine.

    If this still does not work please post a screenshot of the exact error you get from Apple.

    Neil

  • I get this error when submitting the question to DPS

    Hi uses Woodwing Enterprise to publish fact sheets on the DPS from Adobe and it was okay, I ended up creating a new show and I get this error when submitting the question to DPS: Adobe Distibution Server returned the error when calling "createIssue. Code HTTP: 401. HTTP message. "Unknown error.". Results Adobe message: "unauthorized access. Check the logs for more details". Adobe results status: "Not ALLOWED." The DPS account has been recently renewed

    Please contact the support gold on this problem.

  • Error when starting the weblogic Server

    Hi all

    I get the following error when starting the weblogic server (10.3.5.0). I couldn't access the EM.

    < 9 July 2012 19:00:23 IST > < error > < org.apache.beehive.netui.pageflow.internal.AdapterManager > < BEA-000000 > < ServletContainerAdapter manager not initialized successfully. >

    java.lang.NoClassDefFoundError: HTTPClient/ProtocolNotSuppException

    at oracle.sysman.eml.app.EMDClientInitializer.setHttpConnectionTimeout(EMDClientInitializer.java:97)

    at oracle.sysman.eml.app.EMDClientInitializer.init(EMDClientInitializer.java:85)

    at oracle.sysman.emSDK.svc.ServiceUtil.initService(ServiceUtil.java:94)

    at oracle.sysman.eml.app.ContextInitializer.contextInitialized(ContextInitializer.java:432)

    to weblogic.servlet.internal.EventsManager$ FireContextListenerAction.run (EventsManager.java:481)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    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)

    to 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)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    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)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    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.lang.ClassNotFoundException: HTTPClient.ProtocolNotSuppException

    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)

    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)

    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)

    at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:43)

    ... more than 40

    PostInstallConfigIntegration:oracle_ias_farm target auth check is performed.

    < 9 July 2012 19:00:49 IST > < WARNING > < HTTP > < BEA-101162 > < oracle.sysman.eml.app.ContextInitializer listener has not defined by user: java.lang.NoClassDefFoundError: HTTPClient/ProtocolNotSuppException.

    java.lang.NoClassDefFoundError: HTTPClient/ProtocolNotSuppException

    at oracle.sysman.eml.app.ContextInitializer.contextInitialized(ContextInitializer.java:1035)

    to weblogic.servlet.internal.EventsManager$ FireContextListenerAction.run (EventsManager.java:481)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)

    Truncated. check the log file full stacktrace

    Caused by: java.lang.ClassNotFoundException: HTTPClient.ProtocolNotSuppException

    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)

    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)

    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)

    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

    Truncated. check the log file full stacktrace

    >

    < 9 July 2012 19:00:49 IST > < WARNING > < HTTP > < BEA-101162 > < oracle.sysman.eml.app.ContextInitializer listener has not defined by user: java.lang.NoClassDefFoundError: HTTPClient/ProtocolNotSuppException.

    java.lang.NoClassDefFoundError: HTTPClient/ProtocolNotSuppException

    at oracle.sysman.eml.app.ContextInitializer.contextDestroyed(ContextInitializer.java:1242)

    to weblogic.servlet.internal.EventsManager$ FireContextListenerAction.run (EventsManager.java:482)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.EventsManager.notifyContextDestroyedEvent(EventsManager.java:200)

    Truncated. check the log file full stacktrace

    Caused by: java.lang.ClassNotFoundException: HTTPClient.ProtocolNotSuppException

    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)

    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)

    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

    Truncated. check the log file full stacktrace

    >

    < 9 July 2012 19:00:49 IST > < error > < hats > < BEA-149231 > < cannot create the activation to true for the em application state '.

    weblogic.application.ModuleException:

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1510)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)

    to 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. check the log file full stacktrace

    Caused by: java.lang.ClassNotFoundException: HTTPClient.ProtocolNotSuppException

    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)

    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)

    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)






    How to solve this problem. Pls suggest me.


    Kind regards
    Deena.

    Copy the file http_client.jar in $ORACLE_HOME/Yes/jlib to $DOMAIN_HOME/lib. Also check if the classpath has been defined for this under $DOMAIN_HOME/bin/setDomainEnv.sh jar file

    https://forums.Oracle.com/forums/thread.jspa?MessageID=10200685

  • Firefox has suddenly start delay when accessing the secure site

    We have an application Java Tomcat 7 on Amazon Web Services EC2 server. The server is configured so that our application is the root application and is accessible from port 80. The application and the Tomcat are configured with SSL, so that whenever someone types in the url of the site (e.g. www.something.net) Tomcat will switch to HTTPS and use port 8443.
    This all works fine, but it seems that if for some reason any Firefox expires when accessing the site, it will never reconnect on the site and any attempt to connect using www.something.net indicates that the connection has expired. Yet if you put in the port number (for example, www.something.net:8443) happens immediately.
    I tried setting compensation in web cache content, defining the limit of cache to zero and by disabling web content offline. None of this has worked. Re-installing Firefox worked.
    We if the question was limited to Firefox, but we did eventually run run in on Chrome too. On Chrome, I was able to get the browser to connect to the site by going to settings > advanced > clear data of the browser and delete the browser history, download, history, cookies and cache of images and files. Once I did the site come immediately with www.something.net and switch to HTTPS as it is supposed to do.
    It took me several months to encounter this problem. But other users have encountered immediately (for example, when configuring a new machine).
    Anyone can shed some light on this? I saw some issues, but none of them had what contributed to my situation. Can anyone suggest a way to remove all that is prevent Firefox to connect?

    Pass port SSL 8443 to 443 has solved the problem. It seems that when the www.something.net url is entered, Firefox remembers that it's an SSL site and automatically add the 's' to get the https. In fact after the timeout, the url in the browser line https:www.something.net. Of course, this is by default the SSL port (443) standard, which does not work if 8443 is used. Join port 443 has solved the problem.

    If you read about Tomcat configuration, the default SSL port is 8443. Maybe this is done for the test, but there never seems to be explained that there could be problems with 8443.

  • I was doing a winpeshl.exe.error when starting "the application was not properly initialze (0xc0000006). "Click to complete the application.

    I was doing a winpeshl.exe.error when starting "the application was not properly initialze (0xc0000006). "Click to complete the application" when I click ok it reboots. I can even recover the system, tried F8 startup, alt/F10, F2, launch repair system, Safe Mode and all the rest and still get the same error. System specs are Acer Aspire 5920, Intel T5450 processor, 2 GB ram, 160 GB of HDD, windows vista edition Home premium.  I am currently under the memory diagnostic tool windows, but it is said that the test results will be displayed again once you log in, but I can't log in to view them.  The test seems to be hanging around 21% so I don't know how well it will do

    Hi A1W1LL,

    A clean boot helps eliminate software conflicts.  Let us check if software is causing the problem by following the clean boot procedure that may help you resolve the issue.

    To perform the clean boot procedure, follow the instructions in the link below.

    Step 1: Perform a clean boot
    Step 2: Enable half the services
    Step 3: Determine whether the problem returns
    Step 4: Enable half of the startup items
    Step 5: Determine whether the problem returns
    Step 6: Resolve the problem
    Step 7: Reset the computer to start as usual

    How to troubleshoot a problem by performing a clean boot in Windows Vista
    http://support.Microsoft.com/kb/929135

    After reviewing the issue, put the computer into Normal mode.
    Uninstall or update the program that is causing the problem.

    If you are not able to boot to the desktop, you can try to restore your computer from WinRE.

    1. Insert the Windows Vista installation disc in the disc drive, and then start the computer.
    2. Press any key when the message "Press any key to boot from CD or DVD".
    3. Select a language, a time and currency, and a keyboard or input method, and then click Next.
    4. click on repair your computer.
    5. in the System Recovery Options dialog box, select the drive of your Windows installation and click Next
    6. in the System Recovery Options dialog box, click System Restore.
    7. follow the instructions in the wizard to restore system as usual and choose the appropriate restore point.
    8. click Finish to restore the system.

    Please post back and let us know if it helped to solve your problem.

    Kind regards
    KarthiK TP

  • Error when access workspace 11.1.2.2

    Hi all

    After installation and set the parameters of the Foundation, I get the error when access workspace.


    URI: http://server-dsv1:28080/raframework/conf/ToolsConfig.xml

    Status: 404 - Not Found

    Content: text/html; Charset = UTF-8
    <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 project / / BY" > ".
    < HTML >
    < HEAD >
    < TITLE > error 404 - not found < /title >
    < / HEAD >
    < BODY bgcolor = "white" >
    < FONT FACE = Helvetica > < BR CLEAR = all >
    < TABLE border = 0 cellspacing = 5 > < TR > < TD > < BR CLEAR = all >
    < FONT FACE = "Helvetica" COLOR = "black" SIZE = "3" > < H2 > error 404 - not found < / H2 >
    < / POLICE > < table > < /TR >
    < /table >
    < TABLE border = 0 width = 100% cellpadding = 10 > < TR > < TD VALIGN = top WIDTH = 100% BGCOLOR = white > < FONT FACE = "Courier New" > < FONT FACE = "Helvetica" SIZE = "3" > < H3 > of RFC 2068 < i > Hypertext Transfer Protocol - HTTP/1.1 < /i >: < / H3 >
    < / POLICE > < FONT FACE = "Helvetica" SIZE = "3" > < H4 > 10.4.5 404 not found < / H4 >
    < / POLICE > < P > < FONT FACE = "Courier New" > server has not found anything matching the request URI. No indication is given of whether the condition is temporary or permanent. < /p > < p > if the server does not wish to make this information available to the client, the status code 403 (refused) may be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through a configurable mechanism, that an old resource is permanently unavailable and has no forwarding address. < / POLICE > < / p >
    < / POLICE > < table > < /TR >
    < /table >

    < / BODY >
    < / HTML >


    It seems that the RAFRamework service is not started, but I already checked and all the services are running. I already tried to redeploy the foundation components in order to operate, but the error message persists.

    Could someone help me on this?

    Thank you is advanced,

    Alvaro

    You should not need to transfer anything, if you are using iis as a web server then you access the workspace by using http://server-dsv1/workspace/

    See you soon

    John
    http://John-Goodwin.blogspot.com/

Maybe you are looking for

  • evil does not arise on SMS

    MY friend bought a new iPhone 5 whenever I get a TEXT from him, it displays a different phone number and not its name when the texts she has me, can someone explain how this can be corrected? Eleanor

  • Re: Weird sound coming from USB using the Panel mixing Audio on Satellite C870-1EX

    Hello! So, my sister has Satellite C870-1EX and she uses new Audio Mixer with integrated sound card sends its via USB cable to the computer (computer recognises as external audio device and map). It's the device: http://alesis.com/multimix8usbfx. A f

  • WINDOWS does not recognize my cd/dvd drive

    Windows stopped to recognize my cd/dvd drive. I can not read or write discs. I tried the Microsoft Mr.FixIt and it keeps saying "an unexpected error has occurred please try again later." I don't know what else to do. I've tried everything. The player

  • BlackBerry Smartphones SMS Signature?

    Can my storm cause a signature SMS and MMS? So whenever I send a text message it will be on the message? If so, can I get a procedure step by step on how to make one? Thank you.

  • Change the URL redirection in Cisco ISE 2.1.0 comments Portal CWA

    Hello I've set up a guest Portal CWA with WLC 5508 8.0.133.0 and ISE 2.1.0. I did all the rules both Authenticatin and authorization, and I also see customers hit the rules of law. The rule of being redirects the client to a captive portal in ISE lik