ALC-TTN-011-031: priming doesn't have a component of the platform [DocumentServiceContainer].

Hello

I get the following database initialization error.

[2009-04-07 17:14:40, 375] SEVERE, Thread-11, com.adobe.livecycle.bootstrap.client.BootstrapRequestClient, com.adobe.livecycle.bootstrap.BootstrapException:
ALC-TTN-011-031: priming doesn't have a component of the platform [DocumentServiceContainer].  Wrapped exception message reads:

at com.adobe.livecycle.bootstrap.bootstrappers.DSCBootstrapper.bootstrap (DSCBootstrapper.jav one: 73)
at com.adobe.livecycle.bootstrap.framework.ManualBootstrapInvoker.invoke (ManualBootstrapInvo ker.java:78)
at com.adobe.livecycle.bootstrap.framework.BootstrapServlet.doGet(BootstrapServlet.java:156)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1095)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:569)
at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest (CacheServletWrapper.jav one: 90)
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:748)
at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1461)
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:118)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination (HttpInboundLink .java:458)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation (HttpInboundLink .java:387)
at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete (HttpICLReadCallback.jav one: 102)
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted (AioReadCompletionLi stener.java:165)
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
to com.ibm.io.async.AsyncChannelFuture$ 1.run(AsyncChannelFuture.java:205)
to com.ibm.ws.util.ThreadPool$ Worker.run (ThreadPool.java:1473)
Caused by: com.ibm.ejs.container.UnknownLocalException:
at com.adobe.pof.schema.POFDefaultDomain.getObjectType(POFDefaultDomain.java:95)
at com.adobe.idp.dsc.initializer.DSCInitializerBean.applicationNameAttributeExists (DSCInitia lizerBean.java:239)
at com.adobe.idp.dsc.initializer.DSCInitializerBean.installSchema (DSCInitializerBean.java:18 4)
at com.adobe.idp.dsc.initializer.DSCInitializerBean.bootstrap(DSCInitializerBean.java:92)
at com.adobe.idp.dsc.initializer.EJSLocalStatelessDSCInitializerBeanLocalEJB_7bb34e85.bootst (unknown Source) rap
at com.adobe.livecycle.bootstrap.bootstrappers.DSCBootstrapper.bootstrap (DSCBootstrapper.jav has: 68)
... 18 more
Caused by: com.adobe.pof.schema.ObjectTypeNotFoundException: Type of the object: dsc.sc_resource_mapping not found.
... 24 more

Let me know if you have any solution.

Hello

What version of WebSphere?  We ran in issue at the stage of initialization of data on WebSphere (any platform) if it's been patched up to 6.1.0.19 or later.

1. connect to the websphere administration console (http://localhost:9080 / admin)
2. click on resources > data sources
3. click on IDP_DS,.
4. for the auxiliary class of data store, select this option to use a custom, and type the following command in: com.ibm.websphere.rsadapter.GenericDataStoreHelper
5. Repeat for EDC_DS
6. test the data connections
7 be run to initialize the livecycle configuration manager database (/ opt/aodbe/LiveCycle8.2/ConfigurationManager/bin/configurationManager.sh)

See you soon,.

David

http://www.ensemble.com

Tags: Adobe LiveCycle

Similar Questions

  • Problem creating ANE, ArgumentError: Error #3500: the context of the extension doesn't have a method with the name

    I'm bit confused about ANE generation, I'm already all direction, but the error always #3500 when I try to call the DONKEY.

    I create NSAS using java android.

    The tools I use: Flash Builder running on Win-64 win.7. I think I have to, right to the point, here, what I did first step by step;

    1. I create the JAVA application first, with the senigo.extension.android package then I create 3 files, Sample.java, SampleContext.java, PassTextFunction.java

    2.pngsdf.png

    Code Source Sample.Java

    package senigo.extension.android;
    
    
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    
    
    public class Sample implements FREExtension {
      @Override
      public FREContext createContext(String arg0) {
      // TODO Auto-generated method stub
      Log.i("Sample", "createContext");
    
    
      return new SampleContext();
      }
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Dispose");
      }
      @Override
      public void initialize() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Initialize");
      }
    
    
    }
    

    Source code for SampleContext.Java

    package senigo.extension.android;
    
    
    import java.util.HashMap;
    import java.util.Map;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREFunction;
    
    
    public class SampleContext extends FREContext {
      public SampleContext()
      {
      Log.i("SampleContext", "constructor");
    
    
      }
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "dispose");
      }
      @Override
      public Map<String, FREFunction> getFunctions() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "getFunctions");
      Map<String, FREFunction> functionMap = new HashMap<String, FREFunction>();
      functionMap.put("passText", new PassTextFunction());
    
      return functionMap;
      }
    
    
    }
    

    Source code for PassTextFunction.Java

    package senigo.extension.android;
    
    
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    import com.adobe.fre.FREFunction;
    import com.adobe.fre.FREObject;
    
    
    public class PassTextFunction implements FREFunction {
    
    
      @Override
      public FREObject call(FREContext arg0, FREObject[] arg1) {
      // TODO Auto-generated method stub
    
      FREObject result = null;
      try{
      result =  FREObject.newObject("Hello World");
    
      }catch(Exception e)
      {
    
      }
      return result;
      }
    
    
    }
    

    After all the files, I create the jar file using the right click on the tree > > export > > Jar file > > Sample.Jar (I already create jar file that contains just the src folder and after I got frustrated, I create the .jar file contains all the project folder as a whole but still did not work).

    Okay, after that, I create project Flex Library Project, which is to contain the actionscript code to call the native and extension.xml, here the code.

    3.png

    Test Source code. As, FYI: I have already create the public function and the static function the error always the same #3500.

    package senigo.extension.android
    {
      import flash.external.ExtensionContext;
    
      public class test
      {
      private static var extContext:ExtensionContext = null;
    
      public function test()
      {
      trace ("Test Constructor");
    
      if (!extContext)
      {
      initExtension();
      }
      }
      public static function get passText():String
      {
      trace ("Test Pass Text");
      if (!extContext)
      {
      initExtension();
      }
      return extContext.call("passText") as String;
      }
    
    
      private static function initExtension():void
      {
      trace ("Vibration Constructor: Create an extension context");
      extContext = ExtensionContext.createExtensionContext("senigo.extension.android", null);
      }
    
    
      }
    }
    

    extension source code. XML

    FYI: Flex when I put the Native Extension, they said have Windows - x 86 so I already create 3 DONKEY, that contain Android-ARM, ARM Android contain by default, Android contain ARM, Default, and Windows - x 86, but still the same error. I don't have it where is the error.

    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
      <id>senigo.extension.android</id>
      <versionNumber>1.0.0</versionNumber>
      <platforms>
      <platform name="Android-ARM">
      <applicationDeployment>
      <nativeLibrary>Sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      <!-- <platform name="Windows-x86">
      <applicationDeployment>
      <nativeLibrary>sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      -->
       <platform name="default"> 
    <applicationDeployment/> 
    </platform> 
      </platforms>
    </extension>
    

    After that I created, I copy the sample file of file and extension with the file Sample.jar .swc.

    I have extracted the .swc file, copy the library.swf file Android-ARM, by default, Windows-86 and I create build.bat containing the command like this

    adt -package  -storetype PKCS12 -keystore senigo.p12 -storepass l10nk1ng -target ane senigo.extension.android.ane extension.xml -swc AndroidLib.swc -platform Android-ARM -C ./Android-ARM/ . -platform default -C ./default/ .
    

    the I put the donkey for bending mobile project I created:

    4.png5.png

    6.png

    7.png

    I run, but received the error #3500, I get really confused? What is wrong with my code? is there something that I have wrong or I just missed?

    Please someone help me... and what is already donkey file I can debug in Flex Mobile project? I want to log.i code I wrote, but I confuse air how to the Levant in flash builder.

    in the end, I want to said sorry if my English is not very goods and thank you, because want to see my problem and I appreciate it a lot if you can give me a solution

    So you're saying that test.as I created belongs to android?

    Exactly.

    Okay, so then why when I put just ANE build contain Android-ARM, the error still appear?

    Because that when you launch it engine running Windows AIR request use default implementation in this case. But looks like the default implementation, you use the same Android and default value.

    is that what I have to put Windows-86 to run it on windows?

    If you are creating applications / DONKEY for mobile platforms you don't need it.

    I have to use another actionscript that does not ExtensionContext content?

    Exactly!

    For example, look at this: mesmotronic/air-full screen-ane · GitHub

    record full screen-ane-android - Android app

    full screen-ane-default - default implementation (for all other platforms exclude Android)

    It is an excellent example. It's pretty simple, you understand how it works.

  • I have firefox 5 and yet it doesn't have him following not the checkbox under options, advanced, General

    Under navigation in the general tab, I check spelling as I type but not to not follow the option. How is it? I want this feature. And my point firefox said I have 5.0. What's up with that? Thanks for your help.

    This pref was moved to the Privacy tab in the Options.

  • EqualLogic PS4000 replacement doesn't have a disk with the largest disk

    I have a drive failing in PS4000. Now, I need to replace the disc, but is it possible to replace the current failed drive with disc compatible but bigger?

    See the attached picture. I use RAID 50 and all disks are now 300 GB except a spare drive which has been replaced in this same situation earlier this year. Now I have a 600 GB drive, is it ok to swap hot who? Or if she breaks up the raid?

    EQ_PS4000.PDF

    Hello

    Assuming that the drive is a Dell brand 600GO in a baby carrier PS4000, yes it will work.  Only 300 GB to 600GB drive will be used.

    Kind regards

  • need to view the source code in version 7 doesn't have a place in the view menu

    upgrade to version 7, teaches at a high school on HTML class and we use the source of the page all the time, he disappeared in version 7. Where is it?

    Use one of them:

    • Tools > Web Developer > Page Source (Cmd + U)
    • Right-click on a web page to open the shortcut menu and select the Source of the Page
  • When I run Visual Studio, an error msg comes that States V.S. doesn't have permissions to read the registry template information.

    Here is a copy of the message... Could someone give me some simple, numbered instructions on how to change these permissions, just for Visual Studio 2012?
    Thank you very much
    Susan Alley

    E-mail address is removed from the privacy *.

    Hello

    The question you posted would be better suited in the MSDN Forums. I would recommend posting your query in the MSDN Forums:

    http://social.msdn.Microsoft.com/forums/en-us/category/VisualStudio

  • Why the * doesn't have Adobe messes with the drive? I hate to have to spend time to learn a whole new operation when I was happy with it as it was. Anyway I can get the old version back?

    I'm the only p * d off with the total redesign of the Adobe reader software? He created a task force for me, and change seems driven by the desire to Adobe to pimp their "cloud" storage and other services.

    You can always uninstall the drive and then reinstall the version you want. I suggest that you download and use the full drive offline installation program from the version you want from http://get.adobe.com/reader/enterprise/

  • On my menu CC drop down why is that only Lightroom app that doesn't have a CC

    I historically used Lightroom as a single product purchased and recently I bought the creative cloud.

    As a new user, I am very familiar with things, but I've noticed on my cloud creative drop-down list containing a list of all my applications, I noticed that each of my apps conclude with CC in the end.

    with other words

    Photoshop CC

    Bridge CC

    Edge inspect CC

    Scout CC

    Lightroom NOTHING?

    On my drop CC why is that only Lightroom app that doesn't have a CC at the end of Lightroom.


    The system has recognized my old Lightroom and there no installed a CC version or is it the same for everybody out there and if so why?


    Why no CC on the drop-down list after the word Lightroom?

    Why no CC on the drop-down list after the word Lightroom?

    Nothing to worry about. It's the same for everybody and it's normal.

    Lightroom does not follow the version numbering (again) Cloud. She always had her own version numbering.

    When the cloud came out, there was no included Lightroom.

    Added Adobe Lightroom to the cloud later but never added CC to the numbering. So yet another layer of confusion has been added to the management software Cloud versions.

    There are now two separate versions of Lightroom:

    • 5.6 Lightroom (perpetual license, does not include Lightroom Mobile)
    • 5.6 Lightroom (a cloud which includes Lightroom Mobile)
  • Ip5 ios 9.3.5 line 4g doesn't have show just 3 g setting on hp 4g already tick

    Ip5 U.S. spec in Malaysia ios 9.3.5 line 4g doesn't have show just 3 g setting on hp 4g already tick

    This indicates that you purchased an incompatible version of your region. See below for the correct templates

    https://www.Apple.com/iPhone/LTE/#iPhone-5C-iPhone-5s

  • long keyboard doesn't have an eject button

    All I want to do is RESTART my browser - Web instructions say use the buttons: power/Eject and control command to restart.  My long keyboard has no power or eject button.  The single button / stop I know is on back at the bottom left of the screen.  Thank you.

    What is the keyboard that you are talking about? http://www.apple.com/shop/product/MB110LL/B/apple-keyboard-with-numeric-keypad-e French - usa? fnode = 56

    Who doesn't have a (between the third key sound and F13) eject button.

  • establishment of a new iPad for someone who doesn't have a computer

    establishment of a new iPad for someone who doesn't have a computer I can do this

    Yes.  iPads do not require a computer to set up.

    Start with the iPhone, iPad and iPod touch - Apple Support

    When you configure, make sure the person has all the codes and passwords used.

  • Bought used Macbook pro that does not have a recovery CD.  I get the? brand that doesn't go away, can I install another OS or do I have to re - install the original operating system? If yes where can I get one?

    When I turn there is a? that doesn't go away.  Can I install a new OS or do I have to re - install the original?  If yes where can I get one?

    Thank you

    If a flashing question mark appears when you start your Mac - Apple Support

  • new downloads cause a continuous scroll effect. currently have 12.0 and doesn't have this problem. have a brain injury and cannot have this fast scrollin

    new downloads cause a continuous scroll effect. currently have 12.0 and doesn't have this problem. have a brain injury and cannot have this fast scrolling
    each time new updates are coming they seem to cause scrolling the page.
    I need a mobile page where I'm in control of how it moves.
    I'm afraid that if I don't keep current updates that computer security will be compromised.
    Thank you
    P.

    Where do you find this scroll?

    Is it in a browser window or in the Download Manager window or another?

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do not click on the reset button on the start safe mode window or make changes.

    Please upgrade as soon as possible to the current version if you have downgraded because of this problem.

    If there is a problem with scrolling on web pages, then try to disable smooth scrolling.

    • Tools > Options > advanced > general: navigation: "Use smooth scrolling".
  • How to install my final studio cut in my iMac 4 k Vince? The 4K Vince iMac doesn't have an optical drive

    How to install my final studio cut in my iMac 4 k Vince? The 4K Vince iMac doesn't have an optical drive.

    You need to buy or borrow and external optical drive.

    Apple sells a:

    http://www.Apple.com/shop/product/MD564LL/A/Apple-USB-SuperDrive?FNODE=5F

    There are others also available-

    http://eShop.MacSales.com/item/OWC/MRSSDSDT8X/

    BUT do not forget that the FCS has been abandoned by Apple years ago, and the latest Apple operating systems are built without any concern as to the functionality of the FCS.

    Some of the apps in FCS are dead in the water, and others work with features limited or erratic.

    Anecdotal reports of problems running FCS on model are all over the map. Some do work, some don't.

    In addition, FCS2 has problems with the included Installer, requiring Rosetta to run (which is no longer included in the operating system), so it will not install without workaround.

    MtD

  • I want to import bookmarks from Safari on same Mac computer. Said Firefox Help Bar Menu/file/import. My Firefox doesn't have the file/import option. How to import bookmarks from Safari to Firefox?

    I want to import bookmarks from Safari on the same Mac computer. Firefox
    Aide said use bar Menu/file/import.
    My Firefox doesn't have the file/import option.
    How to import bookmarks from Safari to Firefox?

    10.2 Firefox on Lion does not import and backup under Show all bookmarks or the file import wizard and the option to import during the installation of Firefox did not work. Private browsing is not on. How to import bookmarks?

Maybe you are looking for