Can't create AMStoreConnection object

The usual story trying to manage the AM froma client application
User Authentication is okay and so is the SSOToken
as I can see that the user is loged in in the active sessions tab.
Once I try to create the AMStoreConnection I get the following error
java.lang.NoClassDefFoundError
     com.iplanet.am.sdk.AMStoreConnection.(AMStoreConnection.java:146)
     org.apache.jsp.Inspect_005fHeaders_jsp._jspService(Inspect_005fHeaders_jsp.java:201)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:336)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:297)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:247)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
     sun.reflect.GeneratedMethodAccessor184.invoke(Unknown Source)
     sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     java.lang.reflect.Method.invoke(Method.java:585)
     org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
     java.security.AccessController.doPrivileged(Native Method)
     javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
     org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
     org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
Any ideas, clues, directions will be appreciated

I am experiencing this as well. environment is solaris 10, classpath:
servlet.jar;amclientsdk.jar
Somewhere the originial NoClassDefFoundError is being caught, so we cannot tell the class that we need. I belive that what may be needed is the am server sdk, not the amclient sdk, but I cannot remember where to get it.
11/09/2006 09:57:14:081 AM EST: Thread[main,5,main]
AMCommonUtils:Initial: Caught exception in static block
java.lang.NoClassDefFoundError
     at com.iplanet.am.util.AdminUtils.getAdminDN(AdminUtils.java:106)
     at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:164)
     at com.sun.identity.sm.ServiceManager.<clinit>(ServiceManager.java:74)
     at com.sun.identity.sm.ServiceConfigManager.<init>(ServiceConfigManager.java:94)
     at com.iplanet.am.sdk.AMCommonUtils.populateManagedObjects(AMCommonUtils.java:504)
     at com.iplanet.am.sdk.AMCommonUtils.<clinit>(AMCommonUtils.java:114)
     at com.iplanet.am.sdk.AMStoreConnection.<clinit>(AMStoreConnection.java:141)
// my test program
     at com.mypackage.AMDataSource.main(AMDataSource.java:13)

Similar Messages

  • How can I create a object for a note?

    Hi experts,
        I need to apply the note 501905 but when I try in the SNOTE transacction I receive this error:
    Object REPS Z_MRM_DELETE_PP does not exist; create it
    Diagnosis
    The SAP Note that you want to implement contains changes to an object that does not yet exist in your system.
    SAP Notes contain only changes to objects that already exist. This means that the the system cannot automatically create new objects during the implementation of this SAP Note.
    Procedure
    1. Cancel the SAP Note implementationl.
    2. Create an empty object REPS Z_MRM_DELETE_PP with the corresponding object editor.
    3. Restart the SAP Note implementation.
    How can I create that Object??
    Thanks for the help!

    Hi Carlos,
    It says that you have to create a new program with a name Z_MRM_DELETE_PP.
    Once you create and activate the program you can execute the SAP Note.
    All this processure will be written in the SAP Note.
    Please Go through the Note using below:
    Step1: Use T.code SNOTE.
    Step2: Use menu GOTO --> NOTE BROWSER. Provide the Note no and EXECUTE.
    Step3: Double click on the displayed line.
    Here you will get the information to do before implementing the note.
    Go through all the documentation, and once you did all the development given in the note then you can implement the note.
    Regards,
    Sreekanth.

  • Run-time error '429':Active X component can not create an object

    Hi Folks,
    I am using some VBA code to run logic in BPC for Excel. When i try to click on VBA button, It's giving the below error.However when i am trying to execute same from server it is working fine. Accessing from BPC client only we are facing this problem.
    Code have no issues. Is there any specific thing need to mentioned in client when we use VBA programming? Basically we used the VBA program to create the id's in BPC for Excel. So that it will automatically created on fly. Testing was fine interms of working in Server.
    " Run-time error '429':Active X component can not create an object ."

    Hi,
    Are you trying to add a member into the dimension from excel? As you said that this has been already tested in the server and is working fine, I believe, you have taken care of everything.
    Now, coming to the point, when you are adding a member in the membersheet, you need to process the dimension. This requires the admin rights. So, please check the task profile of the user ID, with which you are trying from your system. This user ID should be the primary admin.
    Hope this helps.
    Additionally, can you please elaborate on the steps on what you followed for adding a member from the excel directly?

  • ActiveX can´t create the object xl reporter

    hola tengo SAP BO 2005
    con el xl reporter ahora que lo quiero correr me aparece el error de que el ActiveX can´t create the object
    probe reinstalando todo y nada, asi como cambiando el dll de los lenguajes
    alguna otra sugerencia
    gracias

    Estimado Salvador,
    Gracias por remitir su inquietud al soporte de SAP B1 en español.
    Inicialmente le pedimos verifique que esta utilizando una versión soportada de Microsoft Office. Tal y como se documenta en el Service Market Place:
    https://service.sap.com/smb/sbo/platforms                   
    Si cuenta con alguna de las versiones soportadas, verifique lo siguiente :                                                                               
    El mensaje de error podria estar relacionado a el DI API. Favor aplicar los siguientes pasos:
    1.  Ubicar el archivo '"temp" por medio de  Start -> Run , tipear  %temp%.    
    2.  Ubicar la carpeta  SM_OBS_DLL folder y borrarla.                  
    3.  Desde añadir/remover programas, desinstalar el DI API.                      
    4.  Reiniciar el PC.                                                      
    5.  Instalar el  DI API desde la carpeta del parche en uso (en la carpeta "packages")   
    Esperando lo anterior les permita solventar lo reportado.
    Queda a sus gratas ordenes,
    Juan Manuel Marrero
    SAP Business One Forums  Team

  • Can I create the object of an protected inner class of a Base class in to t

    Dear All,
    Can I create the object of an protected inner class of a Base class in to the subclass ?
    e.g.
    public class Base{
         protected class Inner {};
    Public class Sub extends Base{
         Public Inner amethod (){
              Return new Inner(); //here I get an exception as
                                //Inner has protected access
    }Regards,
    Ishan

    @Op. The code that you posted isn't close to compiling. Java is case sensitive. It should be public and not Public, and return instead of Return.
    Kaj

  • Error run-time 429 ActiveX can't create the object Financial Reporting

    Hi everybody,
    I'm trying to run Financial Reporting 9.3.1 on my pc with Winodws Vista but as I launch the exe it shows me an error message:
    Error run-time 429 ActiveX can't create the object
    I know it works out with XP. Is there a problem with Vista? How can I fix it?
    Thanks in advance
    Giacomo

    I cannot say this IS your problem, but some oddities I ran into installing the report client on my laptop in my current environment ....
    #1 - Even though you type in your username and password in the Reports login box, it apparently uses the credentials of the logged on user.
    #2 - The machine MUST be on the domain that is used for authentication or it flat out won't work (see item #1)
    #3 - I ran into the ActiveX error once and apparently something did not register properly during the install. To fix it :
    Run the batch file : %HYPERION_HOME%\BIPlus\install\bin\HRRunAnt.cmd
    Where %HYPERION_HOME% is the main hyperion folder. (i.e. c:\hyperion )
    After the script executes, reboot your machine. You MUST reboot.
    Hope that helps.

  • Can we create a object for servlet

    and can we use constructor inside a servlet .If yes at what situations we can use

    Servlet is an object. Not sure what you need. You can create objects inside a Servlet, or any Java class...
    and can we use constructor inside a servlet.Sure, but most people don't because Servlets are container managed (i.e. you don't instantiate it)
    If yes
    at what situations we can useNot sure what you are asking here, but you can instantiate the servlet anywhere.

  • Can we create custom objects in WebI 4.0 BICS connectivity in BI 4.0 ?

    Hi All,
    I am using BI 4.0 and would like to know if we can create custom objects(measures or dimensions) in WebI 4.0 using the BICS connectivity with SAP BW BEx Queries?
    Rohit

    Hi,
    No, I'm afraid that's not possible with the BICS 'transient universe' (because you cannot edit the BW OLAP business layer  in IDT)
    Sure - in XI3.1, SAP Integration Kit,   OLAP .unv universes,  it was possible to do custom objects  with  MDX and XML tags.
    Infact, the UDT is still available in BI 4.0
    Regards,
    Henry

  • Why can't created an object in the "public static void main(String args[])"

    Example:
    public Class Exp {
    public static void main(String args[])
    new Exp2();-------------> To Occur Error
    Class Exp2 {
    public Exp2()

    You can't create an inner class within main, because
    it is a static method. Inner classes can only be
    created by true class methods.This is not correct. You can create an inner class object in a static method. You just have to specify an outer class object that the inner class object should be created within:
    Exp2 exp2 = new Exp().new Exp2();

  • Can we create entity object based on a text file on the OS?

    I understand you can interface with files using webDAV. Can we just create a entity object with source to a text/xml file on the OS instead of a table?

    Have a look at the URL data source (under new->business tier->web services) - it allows you to create a data control based on an XML or csv file.
    http://technology.amis.nl/blog/?p=1592
    You can also create a data control based on a Java class that interact with a file.

  • Can't create Zen objects with Zen 4.01B

    I removed my Zen 4.01B install from my server, deleted all the objects and
    directories on my Netware 5.1 sp7 server running Edir 8.7.3.7.
    I have reinstalled Zen from my 4.01B patch download, as a new install.
    I can create all my objects except for 3, at least so far.
    can't create the following, ZenInvService ZendmwolService
    ZenimagingService.
    It gives me "There is not a snap-in to create this type of object." error.
    I have downloaded the IR7 C1 snapin download and applied it to my local
    copy of Console1 running 1.3.6.e.
    Do I have to install from my original CD of 4.0.1 then apply the B patch,
    or is it something else?

    > You are not running E-Dir 8.8 on this box are you?
    > This does not support ZEN before ZFD7SP1.
    >
    > While I dont think they are supported on NW6.x, I believe folks have
    > gotten them working.
    >
    > Sorry nobody has a good answer yet.
    >
    > [email protected] wrote:
    > >> I removed my Zen 4.01B install from my server, deleted all the
    objects
    > > and
    > >> directories on my Netware 5.1 sp7 server running Edir 8.7.3.7.
    > >> I have reinstalled Zen from my 4.01B patch download, as a new install.
    > >> I can create all my objects except for 3, at least so far.
    > >> can't create the following, ZenInvService ZendmwolService
    > >> ZenimagingService.
    > >> It gives me "There is not a snap-in to create this type of object."
    > > error.
    > >> I have downloaded the IR7 C1 snapin download and applied it to my
    local
    > >> copy of Console1 running 1.3.6.e.
    > >>
    > >> Do I have to install from my original CD of 4.0.1 then apply the B
    > > patch,
    > >> or is it something else?
    > >>
    > > May have answered my own question. I am actually installing Zen 4.01B
    on a
    > > different server this time, it is running Netware 6.5 Sp5. As I recall
    > > Inventory and the Import service do not work on Zen 4.01B when you
    install
    > > it on Netware 6.5.
    > > Would you agree?
    > >
    > >
    >
    >
    > --
    > Craig Wilson
    > Novell Product Support Forum Sysop
    > Master CNE, MCSE 2003, CCN
    Well, for whatever reason we reinstalled our Novell licensed download and
    reinstalled Zen and our licenses and everything works.

  • Can not create an object for my c# form dll which has an ActiveX control

    I want to create an object in teststand for my C# form dll which has an ActiveX Control . but the error says ActiveX control can not be instantiated because the current thread is not in a single-threaded apartment. can someone help to solve the problem?
    Thanks.

    Two options:
    1) put the step in a subsequence and use the sequence call "New thread" option with the advanced setting "Use single-threaded Apartment". Put a wait step immediately after the sequence call to wait for the new thread.
    2) Inside of your dll, using .NET APIs create a new thread initialized as STA and call your code from that. Have the original thread wait for the new thread to finish running your dialog code.
    Hope this helps,
    -Doug

  • Can you create an object from a string

    I have been working on creating a dynamic form, creating the
    form items from an xml file. I am getting very close to conquering
    this task. I will share it when it's complete.
    However, I am stuck at the moment trying to create an object
    from a string. For example, if the xml item is an HBox I want to
    create an HBox. Like this: parentObject = new arrayOfFormItems[
    index ]..type ()
    This isn't working. First, is this possible using some syntax
    I am unaware of in Flex? I don't want to use a large if or case
    statement if possible.
    Thanks in advance for your help!

    Thank you very much. Indeed that did solve the one problem. I
    missed the casting as a Display Object. That is awesome!
    I do still however, have to instantiate one of every item I
    want to dynamically create or I get the following error when I try
    to create a dynamic object that I have not instantiated before.
    ReferenceError: Error #1065: Variable HBox is not defined.
    at global/flash.utils::getDefinitionByName()
    at MyForm/buildForm()
    at DynamicForm/::onComplete()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    I read that you have no choice but to instantiate one of each
    type to force the linker to link the code for that class into the
    .swf. Unless you know another way to force it.
    This is what I have in my Application mxml to get it to work:
    <mx:HBox>
    <mx:Text visible="false"/>
    <mx:TextArea visible="false"/>
    <mx:TextInput visible="false"/>
    <mx:DateField visible="false"/>
    </mx:HBox>
    And those are the types I'm using to test with. . . I will
    have to add all the others I want to use as well . . .

  • Can you create 3D object using Repousse w/ front and back Inflation w/o seam?

    Greetings. I have created a 3d object using repousse in Photoshop (CS5 extended). The original 2d image is circular. I used the Magic Wand Tool to select the 2d image, then 3D/Repousse/Current Selection to create, selecting the inflate (rounded) Repousse Shape Preset with the Depth of 0. It creates the object as expected, except the front-and-back seam has minor irregularities leaving the object with an uneven seam (see image below). The original 2d image was created in Illustrator using the eliptical tool, so it is as regular as possible. I want it to be seamless. The image below shows the rotated object and the very distinct seam.
    Any ideas on how to get rid of, or avoid, that seam?  Thanks much.

    What you could try is downloading the report to the client pc using WEBUTIL_FILETRANSFER.URL_TO_CLIENT, then open the locally save file using something like:
    CLIENT_HOST('cmd /c rundll32.exe url.dll,FileProtocolHandler "localfilename"');

  • Can't create DB objects

    I am trying to install Oracle 8.0.5.1EE on RedHat 5.2 from the
    tar file I downloaded from Oracle. The install software seemed to
    work using orainst. When I restarted orainst to create DB objects
    I never get to the create DB prompts I just get the software
    asset manager screen again.
    I gave these answers to the orainst prompts:
    custom install
    create/upgrade database objects
    create database objects
    answered yes to the path questions
    Then it puts me in the software asset manager without anyway to
    get to the create DB prompts.
    Anybody know what is I'm doing wrong here?
    Harvey
    null

    Harvey Berenberg (guest) wrote:
    : Harvey Berenberg (guest) wrote:
    : : I am trying to install Oracle 8.0.5.1EE on RedHat 5.2 from
    the
    : : tar file I downloaded from Oracle. The install software
    seemed
    : to
    : : work using orainst. When I restarted orainst to create DB
    : objects
    : : I never get to the create DB prompts I just get the software
    : : asset manager screen again.
    : : I gave these answers to the orainst prompts:
    : : custom install
    : : create/upgrade database objects
    : : create database objects
    : : answered yes to the path questions
    : : Then it puts me in the software asset manager without anyway
    to
    : : get to the create DB prompts.
    : : Anybody know what is I'm doing wrong here?
    : : Harvey
    I installed 8.0.5 standard and I was able to create DB objects
    without any problems.
    The previous attempted 8.0.5.1 install caused a core dump in the
    orainst directory with the following details. Maybe this was the
    source of the create DB problem.
    [oracle@fhm-lv orainst]$ file core
    core: ELF 32-bit LSB core file of 'orainst.cm' (signal 11), Intel
    80386, version 1
    [oracle@fhm-lv orainst]$ gdb orainst.cm core
    GNU gdb 4.17.0.4 with Linux/x86 hardware watchpoint and FPU
    support Copyright 1998 Free Software Foundation, Inc.
    GDB is free software, covered by the GNU General Public License,
    and you are welcome to change it and/or distribute copies of
    it under certain conditions. Type "show copying" to see the
    conditions. There is absolutely no warranty for GDB. Type "show
    warranty" for details.
    This GDB was configured as "i386-redhat-linux"... Core was
    generated by `./orainst.cm'. Program terminated with signal 11,
    Segmentation fault.
    Reading symbols from /lib/libdl.so.2...done.
    Reading symbols from /lib/libm.so.6...done.
    Reading symbols from /lib/libc.so.6...done.
    Reading symbols from /lib/ld-linux.so.2...done.
    Reading symbols from /lib/libnss_files.so.1...done.
    #0 __libc_free (mem=0x4ed) at malloc.c:2854
    malloc.c:2854: No such file or directory.
    (gdb)
    null

Maybe you are looking for

  • How do I find out what my PW is on my Mac or at least how to reset it?

    I reset my password for internet site but i must have a different pw on my Mac, it will not let me do updates without it*  The PW hint in the sign in screen is not working.  How do I find out what my PW is on my Mac or at least how to reset it? thank

  • Address lookup in mail To: field ignores suggestions

    Hello, when a mail is composed and the receiver is looked up in the To: field the normal behaviour of Groupwise is to make a suggestion. The user can confirm the suggestion with the tab or the enter key. For example one types the letters "Fo" and Gro

  • Simple PS task causing me PAIN!!!

    I am trying to complete a simple of task of looking at a source folder for certain file extensions and if each file doesn't exist in the Destination, copy the file. The code i am using is below and this works however the "test-path" section doesn't w

  • Erase iPod w/o computer

    Can I completely erase and restore my iPod without connecting it to my computer?

  • Using e51 in Japan

    Hello I wonder if it is possible to use in roaming my Nokia e51 in Japan (mostly with sms), and what setting should I use for best results. E51 is using umts/gsm or data transfer for sms - which setting should I use. As I know Japan is using WCDMA sy