JAVA Cryptographic Toolkit sap java library archive

Hi Experts
I am trying to install SAP Net Weaver 04 support release 1 > oracle JAVA System. I am performing installation on Windows 2003 server.
While installing the JAVA Cryptographic Toolkit > sap java library archive I have getting problem please give any idea about this.
Where I get this path how to download the SAP JAVA library archive file.
Error finds out shown bellow
Regards,
Rahul

Rahul wrote:>
> Hi Experts
>
> I am trying to install SAP Net Weaver 04 support release 1 > oracle JAVA System. I am performing installation on Windows 2003 server.
> While installing the JAVA Cryptographic Toolkit > sap java library archive I have getting problem please give any idea about this.
if you would give us the error message we could give you an advise.
> Where I get this path how to download the SAP JAVA library archive file.
on the screen where you need to enter the path to the JCT, the links are given on where to download those libararies.
Markus

Similar Messages

  • Error : JAVA Cryptographic Toolkit sap java library archive

    Hi Experts
    I am trying to install SAP Net Weaver 04 support release 1 > oracle JAVA System. I am performing installation on Windows 2003 server.
    While installing the JAVA Cryptographic Toolkit > sap java library archive I have getting problem please give any idea about this.
    Where I get this path how to download the SAP JAVA library archive file.
    Error finds out shown bellow
    Regards,
    Rahul

    hi Rahul
    You'll find the file on the following link: 
    Web page: http://java.sun.com/javase/downloads/index.jsp             
    (see section "Other downloads", "Java Cryptography Extension (JCE)   
    Unlimited Strength Jurisdiction Policy Files 5.0").                  
    Regards
    Ariyanto
    (hi moderator, sorry for double posting, just notice that i have 2 IDs)
    Edited by: Ariyanto Hong on Apr 2, 2008 3:23 PM

  • SAP Java Cryptographic Toolkit

    Hi All,
    I am useing EP 6.0, SP11. Could anyone please explain me how to determine if the SAP Java Cryptographic Toolkit is on the SAP J2EE engine. Is there anyway to find from the Portal?
    Thnks for you help
    Regards
    Henry

    Hi Henry,
    You can find out that easily by logging into Visual Admin.
    Navigate to this and you can find:
    Goto Dispatachexx>Libraries>tc/sec/ssl
    and also
    Goto Dispatachexx>Libraries>IAIKSecurity
    You can see entries here.
    Regards,
    Piyush
    ps: please mark for all useful answers.

  • Need to install Java Cryptographic Toolkit

    I need to install the Java Cryptographic toolkit. In order to do that, I need to have J2SE. How can I tell if J2SE is installed? and if it is installed what version is it?
    I have checked http://server:port and then system information. I don't see J2SE there. Under components, I have SAP-JEE and SAP-JEECOR.

    Hi
    SAP Java Cryptographic
    You can get it from the SAP Service Marketplace at service.sap.com/download under Download -> SAP Cryptographic Software.
    also There is a guide out there on SDN. Enabling SSL for the SAPJ2EE Engine
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/ghi/installation%20guide%20-%20enabling%20ssl%20for%20the%20sap%20j2ee%20engine
    http://help.sap.com/saphelp_nw04/helpdata/en/55/79cf4f7692064d969527a90e8e86c5/frameset.htm
    Thanks

  • No sdas for Java Cryptographic Toolkit

    Hello all,
    I want to install Java Cryptographic Toolkit on my WAS 6.40. I see the related doc
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/2de3be0382df45a398d3f9fb86a36a/frameset.htm
    Unfortunately, it is said:
    "Using the SDM Remote GUI, connect to the SAP J2EE Engine and deploy the SAP Java Cryptographic Toolkit SDA that applies to your J2SE version (1.3.x or 1.4.x). "
    But I do not have sda for the Toolkit.
    What I have is 3 jar files (iaik_jsse.jar, iaik_jce.jar and iaik_ssl.jar), and some txt file.
    I've allready installed the crypto lib (sapcrypto.dll).
    Can anyone tell me where to find the sda or how to install crytpo toolkit without it ?
    Thanks
    Sylvain

    Hi Sylvain,
    you can download the SDA file for cryptographic toolkit from the service.sap.com
    Here, goto the Downloads option. There you can find SAP Cryptographic Software link. Here download <i>"SAP JAVA CryptoToolkit (J2EE Engine as of Release 6.30)"</i>.
    Regards,
    Bhavik

  • Algorithms for Signing & Encryption for SAP Java cryptographic Tool kit

    Hi,
    We want to use SAP Java Cryptographic Toolkit for S/MIME for signing & encryption. Kindly let me know what are all the algorithms it supports for Signing & algorithms it supports for Encryption
    With Regards
    K.Varadharajan

    DES (Data Encryption Standard) algorithm is used to perform the encryption
    Policy jurisdiction files regulate which algorithms are available. These jurisdiction files are provided by the same vendor as for your J2SE package.
    Regards,
    Prateek

  • Is this possible: SAP Java Connector - XI - R3 with XI RFC Adapter?

    Hi,
    I try to call a RFC on a remote R/3 System over the XI Server in a Java Application with SAP Java Connector.
    I have configured a RFC Sender Adapter in XI. I get the
    following Exception:
    "lookup of alternativeServiceIdentifier via CPA-cache failed for channel 'SenderChannel_RFC"!
    Is this scenario possible? Or do the connection from
    a SAP Java Connector App to the XI RFC Adapter not work?
    You can't set the Client and System ID of a Third-Party or
    Standalone Java system in the SLD.
    Thanks for any help!
    Regards
    Wolfgang

    Hi,
    We use a JCO for directly connecting to sap systems.
    In that case we need not use any XI also.
    But if you want to use RFC adapter and java application the best way is to use java proxies as sender and reciever as RFC adapter.
    I donot think there is any  architectural significance in using rfc adapter of XI while using JCO.
    Let me know if I mis-understood the context.

  • Java.awt.Dialog in Java 1.6 has a memory leak

    When a modal Dialog opens a modal sub-dialog, the Dialog stays in memory after both the sub-dialog and the Dialog itself is disposed.
    The field that contains the leaked object is Dialog.modalDialogs (static). The methods which causes the leak are Dialog.modalHide and Dialog.modalShow.
    Whenever a modal Dialog is opened, Dialog.modalShow is called, and adds itself to Dialog.modalDialogs.
    When it closes, Dialog.modalHide is called and removes one copy of itself from Dialog.modalDialogs. Then Dialog.modalShow is called on all previously blocked modal dialogs. When the sub-dialog is opened and closed, Dialog.modalDialogs contains two references to the main Dialog, and only one of them is removed when Dialog.modalHide for that Dialog is called.
    To detect the leak, just put a break point in Dialog.modalHide, after modalDialogs.remove(this);. When opening a Dialog and closing it without opening a sub-dialog, the Dialog.modalDialogs field should be empty. When a sub-dialog was opened and closed before the main Dialog is closed, the Dialog.modalDialogs field contains a reference to the disposed main Dialog.
    This leak does not exist in 1.5.0_10 (no Dialog.modalDialogs field). I have searched the bug database, but I have not found this bug there. Could anyone confirm this?
    A simple code to reproduce the leak:
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    public class Test {
       public static void main(String[] args) {
          final JFrame frame = new JFrame() {
             protected void processWindowEvent(WindowEvent e) {
                super.processWindowEvent(e);
                if (e.getID() == WindowEvent.WINDOW_CLOSING) {
                   System.exit(0);
          JButton button = new JButton("Dialog");
          button.addActionListener(new ActionListener() {
             public void actionPerformed(ActionEvent aE) {
                JButton subButton = new JButton("SubDialog");
                subButton.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent aE) {
                      JOptionPane.showMessageDialog(frame, "SubDialog");
                JOptionPane.showMessageDialog(frame, subButton);
          frame.getContentPane().add(button);
          frame.pack();
          // Center the window
          Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
          Dimension frameSize = frame.getSize();
          if (frameSize.height > screenSize.height) {
             frameSize.height = screenSize.height;
          if (frameSize.width > screenSize.width) {
             frameSize.width = screenSize.width;
          frame.setLocation((screenSize.width - frameSize.width) / 2,
                (screenSize.height - frameSize.height) / 2);
          frame.setVisible(true);
    }

    Sorry, I just found the bug in the bugdatabase (with google of course,):
    [http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6497929]

  • SAP Cryptographic Library Vs JAVA Cryptographic Library

    Hello All,
    Whats the functional difference between SAP Cryptographic Library and JAVA Cryptographic Library. How they differ in fuctionality and When do we use one over the other. Naming convention says both are different but I am not sure of the functional difference. Any help in making me understand this is appriciable.
    Thanks in advance.
    Farooq.

    Well, it's pretty easy:
    "SAP Cryptographic Library" (aka "SAPcryptolib") is a native library (DLL) - and therefore platform-specific. It's typically used with components such as WebAS ABAP, JCO, WebDispatcher, etc.
    "Java Cryptographic Library" (aka "IAIK Toolkit") is implemented in Java. It's typically used for the WebAS Java.

  • Link to SAP Java Library Archive

    Hi
    Can some one please provide me with the link or search criterea for SAP JAVA Library Archive.
    I need it for JAVA 1.4.2_11.
    I am install XI.
    Thanks
    Imran
    Points will be rewarded

    Hi,
    You can get this from java.sun.com
    also this blog may help u-
    /people/sameer.shadab/blog/2005/11/27/java-web-start
    http://java.sun.com/j2se/1.4.2/download.html
    Are you looking for any specific java library ? If for some mapping library means  go thru this under mapping section
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    Also you can get from service.sap.com
    Regards,
    Moorthy

  • Java is not coming up after deploying Cryptographic toolkit 1.4

    Hi,
    when i open the keystore service in visualadministrator, i got following issue.
    Java.lang.NoClassDefFoundError.iaik/security/provider/IAIK
    IAIK security library not found
    after searching in SDN i got the following link :
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/cb71b8046e6e469bf3dd283104e65b/frameset.htm
    After deploying  Cryptographic toolkit 1.4 through SDM, i have restarted the system. java is not coming up. the system is ABAP+JAVA system.
    Could you please tell how to undeploy the tc_sec_java_crypto_signed_fs_lib.sda component. i have tried  through standalone mode also but i could not find that component. i could not able to login to the visual admin, configtool.
    Regards,
    Jagadish

    I have pasted both server0 log and default trace.
    please find the log which is pasted.
    SERVER0 LOG
    [Thr 6276] *************** SAP_STINIT3 ***************
    [Thr 6276] SAP_STINIT3: my TP_name: >jlaunch<
    [Thr 6276] SAP_STINIT3: new buffer state = BUFFER_EMPTY
    [Thr 6276] SAP_STINIT3: GWHOST=localhost
    [Thr 6276] SAP_STINIT3: GWSERV=sapgw22
    [Thr 6276] SAP_STINIT3: PROTOCOL=I
    [Thr 6276] GwIConnect: connect to gateway localhost / sapgw22 (timeout=60000)
    [Thr 6276] NiHsLGetNodeAddr: found hostname 'localhost' in cache
    [Thr 6276] NiIGetNodeAddr: hostname 'localhost' = addr
    [Thr 6276] NiHsLGetServNo: found service name 'sapgw22' in cache
    [Thr 6276] NiIGetServNo: servicename 'sapgw22' = port 0C.FA/3322
    [Thr 6276] NiICreateHandle: hdl 11 state NI_INITIAL
    [Thr 6276] NiIInitSocket: set default settings for new hdl 11 / sock 4656 (I4; ST)
    [Thr 6276] NiIBlockMode: set blockmode for hdl 11 FALSE
    [Thr 6272] *************** SAP_STINIT3 ***************
    [Thr 6272] SAP_STINIT3: my TP_name: >jlaunch<
    [Thr 6272] SAP_STINIT3: new buffer state = BUFFER_EMPTY
    [Thr 6272] SAP_STINIT3: GWHOST=localhost
    [Thr 6272] SAP_STINIT3: GWSERV=sapgw22
    [Thr 6272] SAP_STINIT3: PROTOCOL=I
    [Thr 6272] GwIConnect: connect to gateway localhost / sapgw22 (timeout=60000)
    [Thr 6272] NiHsLGetNodeAddr: found hostname 'localhost' in cache
    [Thr 6272] NiIGetNodeAddr: hostname 'localhost' = addr
    [Thr 6272] NiHsLGetServNo: found service name 'sapgw22' in cache
    [Thr 6272] NiIGetServNo: servicename 'sapgw22' = port 0C.FA/3322
    [Thr 6272] NiICreateHandle: hdl 13 state NI_INITIAL
    [Thr 6272] NiIInitSocket: set default settings for new hdl 13 / sock 4516 (I4; ST)
    [Thr 6272] NiIBlockMode: set blockmode for hdl 13 FALSE
    [Thr 2836] NiSelISelectInt: 0 handles selected (0 buffered)
    [Thr 2836] SAP_CMLISTEN: timeout after 2000 msecs
    [Thr 2836] *************** SAP_CMLISTEN ***************
    [Thr 2836] SAP_CMLISTEN: timeout = 2000
    [Thr 5584] Fri Feb 27 19:45:38 2009
    [Thr 5584] JLaunchIShutdownCheck: check shutdown, 16 sec left to shutdown
    [Thr 6276] NiHsLGetServName: found port number 0C.FA/3322 in cache
    [Thr 6276] NiIGetServName: port 0C.FA/3322 = servicename 'sapgw22'
    [Thr 6276] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2764]
    [Thr 6276] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 11 / sock 4656
         (SI_ECONN_REFUSE; I4; ST; 127.0.0.1:3322) [nixxi.cpp    2764]
    [Thr 6276] NiICloseHandle: closing initial hdl 11
    [Thr 6276] *** ERROR => GwIConnect: GwConnect to localhost / sapgw22 failed (rc=NIECONN_REFUSED) [gwxx.c       294]
    [Thr 6276] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       295]
    [Thr 6276] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       297]
    [Thr 6276] ***LOG S0S=> GwIConnect, GwConnect (sapgw22) [gwxx.c       299]
    [Thr 6276] ***LOG S90=> SAP_STINIT3, GwIConnect ( 236) [r3cpic.c     2006]
    [Thr 6276]
    [Thr 6276] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 6276] *  ERROR       partner '127.0.0.1:sapgw22' not reached
    [Thr 6276] *
    TIME        Fri Feb 27 19:45:38 2009
    [Thr 6276] *  RELEASE     700
    [Thr 6276] *  COMPONENT   NI (network interface)
    [Thr 6276] *  VERSION     38
    [Thr 6276] *  RC          -10
    [Thr 6276] *  MODULE      nixxi.cpp
    [Thr 6276] *  LINE        2764
    [Thr 6276] *  DETAIL      NiPConnect2
    [Thr 6276] *  SYSTEM CALL connect
    [Thr 6276] *  ERRNO       10061
    [Thr 6276] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6276] *  COUNTER     3
    [Thr 6276] *
    [Thr 6276] *****************************************************************************
    [Thr 6272] NiHsLGetServName: found port number 0C.FA/3322 in cache
    [Thr 6272] NiIGetServName: port 0C.FA/3322 = servicename 'sapgw22'
    [Thr 6272] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2764]
    [Thr 6272] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 13 / sock 4516
         (SI_ECONN_REFUSE; I4; ST; 127.0.0.1:3322) [nixxi.cpp    2764]
    [Thr 6272] NiICloseHandle: closing initial hdl 13
    [Thr 6272] *** ERROR => GwIConnect: GwConnect to localhost / sapgw22 failed (rc=NIECONN_REFUSED) [gwxx.c       294]
    [Thr 6272] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       295]
    [Thr 6272] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       297]
    [Thr 6272] ***LOG S0S=> GwIConnect, GwConnect (sapgw22) [gwxx.c       299]
    [Thr 6272] ***LOG S90=> SAP_STINIT3, GwIConnect ( 236) [r3cpic.c     2006]
    [Thr 6272]
    [Thr 6272] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 6272] *  ERROR       partner '127.0.0.1:sapgw22' not reached
    [Thr 6272] *
    TIME        Fri Feb 27 19:45:38 2009
    [Thr 6272] *  RELEASE     700
    [Thr 6272] *  COMPONENT   NI (network interface)
    [Thr 6272] *  VERSION     38
    [Thr 6272] *  RC          -10
    [Thr 6272] *  MODULE      nixxi.cpp
    [Thr 6272] *  LINE        2764
    [Thr 6272] *  DETAIL      NiPConnect2
    [Thr 6272] *  SYSTEM CALL connect
    [Thr 6272] *  ERRNO       10061
    [Thr 6272] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6272] *  COUNTER     2
    [Thr 6272] *
    [Thr 6272] *****************************************************************************
    [Thr 2836] Fri Feb 27 19:45:39 2009
    [Thr 2836] NiSelISelectInt: 0 handles selected (0 buffered)
    [Thr 2836] SAP_CMLISTEN: timeout after 2000 msecs
    [Thr 2836] *************** SAP_CMLISTEN ***************
    [Thr 2836] SAP_CMLISTEN: timeout = 2000
    [Thr 3508] ShmCache_nativeDelete (3)
    [Thr 3508] ShmCache_nativeDelete (2)
    [Thr 3508] ShmCache_nativeDelete (0)
    [Thr 3508] ShmCache_nativeDelete (1)
    [Thr 3508] Fri Feb 27 19:45:40 2009
    [Thr 3508] JHVM_NativeSetState: set process state to 6
    [Thr 3508] JLaunchISetState: change state from [Stopping (5)] to [Stopped (6)]
    [Thr 5584] JLaunchIShutdownCheck: check shutdown, 14 sec left to shutdown
    [Thr 2836] Fri Feb 27 19:45:41 2009
    [Thr 2836] NiSelISelectInt: 0 handles selected (0 buffered)
    [Thr 2836] SAP_CMLISTEN: timeout after 2000 msecs
    [Thr 2836] *************** SAP_CMLISTEN ***************
    [Thr 2836] SAP_CMLISTEN: timeout = 2000
    [Thr 5584] Fri Feb 27 19:45:42 2009
    [Thr 5584] JLaunchIShutdownCheck: check shutdown, 12 sec left to shutdown
    [Thr 2836] Fri Feb 27 19:45:43 2009
    [Thr 2836] NiSelISelectInt: 0 handles selected (0 buffered)
    [Thr 2836] SAP_CMLISTEN: timeout after 2000 msecs
    [Thr 2836] *************** SAP_CMLISTEN ***************
    [Thr 2836] SAP_CMLISTEN: timeout = 2000
    [Thr 5584] Fri Feb 27 19:45:44 2009
    [Thr 5584] JLaunchIShutdownCheck: check shutdown, 10 sec left to shutdown
    [Thr 5840] Fri Feb 27 19:45:45 2009
    [Thr 5840] JLaunchIExitJava: exit hook is called (rc = 0)
    [Thr 5840] JsfCloseShm: JsfCloseShm() -> 0
    [Thr 5840] JLaunchCloseProgram: good bye (exitcode = 0)
    DEFAULT TRACE
    #1.5#001143318A03002C00000186000015CC000463E71A6EB1E0#1235744138921#com.sap.engine.services.connector##com.sap.engine.services.connector#######SAPEngine_System_Thread[impl:5]_18##0#0#Error#1#/System/Server#Java#connector_0500##"ResourceObjectFactory" is closed. Possible reasons: the Connector Service is stopped or not started.#1#ResourceObjectFactory#
    #1.5#001143318A03002C00000187000015CC000463E71A6EB538#1235744138921#com.sap.engine.services.connector##com.sap.engine.services.connector#######SAPEngine_System_Thread[impl:5]_18##0#0#Error#1#/System/Audit#Java###Exception #1#com.sap.engine.services.connector.exceptions.BaseResourceException: "ResourceObjectFactory" is closed. Possible reasons: the Connector Service is stopped or not started.
         at com.sap.engine.services.connector.ResourceObjectFactory.removeConnectionFactory(ResourceObjectFactory.java:401)
         at com.sap.engine.services.jmsconnector.deploy.ContainerImpl.clearAllResources(ContainerImpl.java:1677)
         at com.sap.engine.services.jmsconnector.deploy.ContainerImpl.commitStop(ContainerImpl.java:768)
         at com.sap.engine.services.deploy.server.application.StopTransaction.commonCommitFinished(StopTransaction.java:244)
         at com.sap.engine.services.deploy.server.application.StopTransaction.commitCommon(StopTransaction.java:290)
         at com.sap.engine.services.deploy.server.application.StopTransaction.commitLocal(StopTransaction.java:278)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesLocal(ApplicationTransaction.java:374)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:132)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesLocalAndWait(ParallelAdapter.java:250)
         at com.sap.engine.services.deploy.server.FinishListener.run(FinishListener.java:77)
         at com.sap.engine.services.deploy.server.FinishListener.makeOperation(FinishListener.java:57)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startTransactionsLocal(DeployServiceImpl.java:4244)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.stopMyApplications(DeployCommunicatorImpl.java:214)
         at com.sap.engine.services.servlets_jsp.server.ServletsAndJspServerFrame.stop(ServletsAndJspServerFrame.java:243)
         at com.sap.engine.core.service630.container.ServiceStopper.run(ServiceStopper.java:31)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5#001143318A03003E0000000D000015CC000463E71A7BC7F1#1235744139781#com.sap.engine.services.deploy##com.sap.engine.services.deploy#######SAPEngine_System_Thread[impl:5]_73##0#0#Error##Plain###CACHE MAY BE NOT CLEARED, while stopping sap.com/crmmigrxcm application.#
    #1.5#001143318A0300740000004B000015CC000463E71A8A8DA4#1235744140750#com.sap.engine.core.thread.impl5.ThreadManagerImpl##com.sap.engine.core.thread.impl5.ThreadManagerImpl#J2EE_GUEST#0#####Thread[Thread-715,5,main]##0#0#Error##Plain###Unexpected thread activity after interrupt() is executed in shutdown of SAPEngine_System_Thread[impl:5]_ThreadManager:
    Thread[SAPEngine_System_Thread[impl:5]_50]
    Task: com.sap.engine.core.thread.impl5.ActionObject - Processing Task [classname: com.sap.engine.services.log_configurator.archive.ArchivingThread | toString: [email protected]106a69b] with classloader [[email protected]be66@service:log_configurator]#
    #1.5#001143318A0300740000004C000015CC000463E71A8B2DF0#1235744140781#com.sap.engine.core.thread.impl5.ThreadManagerImpl##com.sap.engine.core.thread.impl5.ThreadManagerImpl#J2EE_GUEST#0#####Thread[Thread-715,5,main]##0#0#Error##Plain###Unexpected thread activity after interrupt() is executed in shutdown of SAPEngine_System_Thread[impl:5]_ThreadManager:
    Thread[SAPEngine_System_Thread[impl:5]_69]
    Task: com.sap.engine.core.thread.impl5.ActionObject - Processing Task [classname: com.sap.jms.client.connection.AsyncCloser | toString: com.sap.jms.client.connection.AsyncCloser@1a41c14] with classloader [[email protected]f854@common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore]

  • SAP Java Crypto Toolkit was not found

    Hi,
    I m trying to install Netweaver 7.0 BI and portal with SR3 package. Installation is Cluster installation on windows 2008 and sql 2008 platform. When I came to Centarl instance installtion. On Start Java Phase I had the error. I put the error below. I check the notes Note 1071472 - FileSystem SecureStore connection issues, Note 914818 - JSPM: Could not detect database, Note 1154133 - JSPM: SAP Java Crypto Toolkit was not found.
    Thank you For your Help.
    Bootstrap MODE:
    <INSTANCE GLOBALS>
    determined by parameter [ID0276347].
    Exception occurred:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:476)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:146)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:971)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:115)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.<init>(PersistenceHandler.java:38)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.<init>(ConfigurationCache.java:149)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:236)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.bootstrap.Synchronizer.<init>(Synchronizer.java:74)
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:473)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:146)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:971)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: com.sap.sql.log.OpenSQLException: Error while accessing secure store: Encryption or decryption is not possible because the full version of the SAP Java Crypto Toolkit was not found (iaik_jce.jar is required, iaik_jce_export.jar is not sufficient) or the JCE Jurisdiction Policy Files don't allow the use of the "PbeWithSHAAnd3_KeyTripleDES_CBC" algorithm..
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:106)
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:145)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:226)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:197)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:112)
         ... 13 more
    Caused by: com.sap.security.core.server.secstorefs.NoEncryptionException: Encryption or decryption is not possible because the full version of the SAP Java Crypto Toolkit was not found (iaik_jce.jar is required, iaik_jce_export.jar is not sufficient) or the JCE Jurisdiction Policy Files don't allow the use of the "PbeWithSHAAnd3_KeyTripleDES_CBC" algorithm.
         at com.sap.security.core.server.secstorefs.SecStoreFS.openExistingStore(SecStoreFS.java:1975)
         at com.sap.sql.connect.OpenSQLConnectInfo.getStore(OpenSQLConnectInfo.java:802)
         at com.sap.sql.connect.OpenSQLConnectInfo.lookup(OpenSQLConnectInfo.java:783)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:209)
         ... 15 more
    Caused by: javax.crypto.NoSuchPaddingException: Padding 'PKCS5Padding' not implemented.
         at iaik.security.cipher.w.engineSetPadding(Unknown Source)
         at iaik.security.cipher.PbeWithSHAAnd3_KeyTripleDES_CBC.<init>(Unknown Source)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at java.lang.Class.newInstance0(Class.java:308)
         at java.lang.Class.newInstance(Class.java:261)
         at javax.crypto.SunJCE_b.a(DashoA12275)
         at javax.crypto.SunJCE_b.a(DashoA12275)
         at javax.crypto.Cipher.a(DashoA12275)
         at javax.crypto.Cipher.getInstance(DashoA12275)
         at com.sap.security.core.server.secstorefs.Crypt.<init>(Crypt.java:220)
         at com.sap.security.core.server.secstorefs.SecStoreFS.<init>(SecStoreFS.java:1346)
         at com.sap.sql.connect.OpenSQLConnectInfo.getStore(OpenSQLConnectInfo.java:798)
         ... 17 more
    [Bootstrap module]> Problem occurred while performing synchronization.

    Hi
    > > Caused by: com.sap.sql.log.OpenSQLException: Error while accessing secure store: Encryption or decryption is not possible because the full version of the SAP Java Crypto Toolkit was not found (iaik_jce.jar is required, iaik_jce_export.jar is not sufficient) or the JCE Jurisdiction Policy Files don't allow the use of the "PbeWithSHAAnd3_KeyTripleDES_CBC" algorithm..
    >      at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:106)
    >      at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:145)
    >      at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:226)
    >      at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:197)
    >      at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:112)
    It looks like the JCE file which you have downloaded is not the correct one. As you can see some jar files are missing. Check JCE files.
    Check SAP Note 1240081 - "Java Cryptography Extension Jurisdiction Policy" files
    Thanks
    Sunny

  • Error in "Run Java migration toolkit", doing a SAP system copy.

    Hi all,
    Migration to new hardware with system copy, get an error in CI installation on "Run Java Migration Toolkit".
    From the sapinst.log:
    ERROR 2009-05-13 12:46:47.188
    FJS-00003  TypeError: ci.getInstanceDir() has no properties (in script NW_Doublestack_CI|ind|ind|ind|ind, line 120276: ???)
    ERROR 2009-05-13 12:46:48.318
    FCO-00011  The step InitPrivateContext with step key |NW_Doublestack_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|12|0|NW_CI_Instance_Configure_Java|ind|ind|ind|ind|4|0|NW_RUN_MIGRATION_CONTROLLER|ind|ind|ind|ind|2|0|InitPrivateContext was executed with status ERROR .
    From the sapinst_dev.log:
    ERROR      2009-05-13 12:46:47.188 [iaxxejsbas.cpp:204]
    FJS-00003  TypeError: ci.getInstanceDir() has no properties (in script NW_Doublestack_CI|ind|ind|ind|ind, line 120276: ???)
    TRACE      2009-05-13 12:46:48.038 [syuxctask.cpp:1382]
               CSyTaskImpl::start(bool)
    A child process has been started. Pid = 23620
    ERROR      2009-05-13 12:46:48.318 [sixxcstepexecute.cpp:951]
    FCO-00011  The step InitPrivateContext with step key |NW_Doublestack_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|12|0|NW_CI_Instance_Configure_Java|ind|ind|ind|ind|4|0|NW_RUN_MIGRATION_CONTROLLER|ind|ind|ind|ind|2|0|InitPrivateContext was executed with status ERROR .
    TRACE      2009-05-13 12:46:48.368 [iaxxgenimp.cpp:752]
                CGuiEngineImp::showMessageBox
    <html> <head> </head> <body> <p> An error occurred while processing service SAP NetWeaver 7.0 Support Release 3 > Software Life-Cycle Options > System Copy > Oracle > Target System Installation > High-Availability System > Based on AS ABAP and AS Java > Central Instance . You may now </p> <ul> <li> choose <i>Retry</i> to repeat the current step. </li> <li> choose <i>View Log</i> to get more information about the error. </li> <li> stop the task and continue with it later. </li> </ul> <p> Log files are written to /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/SYSTEM/HA/AS/CI. </p> </body></html>
    TRACE      2009-05-13 12:46:48.368 [iaxxgenimp.cpp:1255]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    I had checked the INSTANCE_NAME parameter, in every profile, and is ok.
    I tried a new instalation, after importing the profiles, and checking the INSTANCE_NAME, but got the same error.
    Please, advice.
    Thanks in advance.
    Best Regards.
    Jorge

    Thanks Manoj for your advice.
    We had already checked the procedures, we are working based on the System Copy Guide: "System Copy for SAP Systems Based on SAP NetWeaver 7.0 SR3 ABAP+Java".
    I had to mention that source and target systems are HP-UX, 11.23, Itanium and the DataBase is Oracle 10.2.02.
    The copy was made from a Central System (ABAP + Java) to a High-Availability System (ABAP + Java), and the problem appeared when copying the Central Instance.
    Thanks in adavance.
    Regards.
    Jorge

  • Archiving of Java component and SAP MDM

    Hi,
    For ABAP components it's quite easy to archive data or manage documents through BC-AL and BC-HS interface.
    Does there is the same type of interface for java components (PI or EP for example) and for SAP MDM.
    What I wantt to do is data archivng with probant value by using Opentext LEA or Documentum for example
    Thanks in advance,
    Thomas

    Hi Sri,
    There are many possibilities in XI for your scenario.
    1. You can post an http request from your java application to SAP XI. In that case you need an HTTP Adapter and an RFC Adapter in XI.
    2. You can generate a file from your java application which will be picked up by SAP XI using FILE Adapter and using RFC or IDoc adapter you can post the data into R/3.
    3. Optionally you can try with webservice from your java application so that using XI SOAP adapter you can get the data from Java application.
    and the options are still more....
    Thanks,
    Sasi

  • How can I use Seeburger java functions on SAP XI's user defined functions?

    Hi All,
    As my title implies; how can I use Seeburger java functions on SAP XI's user defined functions?  I've tried searching over the net in tutorials regarding this topic but I failed to find one; can someone provide me information regarding my question? thanks very much.
    best regards,
    Mike

    Hi Mike !
    You should check your documentation about which java classes you need to reference in the "import" section of your UDF. And also deploy the java classes into the java stack or include them as a imported archive in integration repository...it should be stated in the seeburger documentation.
    What kind of functions are you trying to use?
    Regards,
    Matias.

Maybe you are looking for

  • Local and Export sale same excise invoice number range

    Dear gurus, How to have Number range for Following same. Object- J_1IEXCLOC- Factory sale invoice Object - J_1IEXCEXP- Export Sales Invoice ie. 00000001-Factory sale invoice     00000002-Export sale invoice ie. Sales area is different for both Reg, A

  • Short dump while on double click event in ALV

    Hi , I have created a ALV screen to display the customer number and NAme ,my requirement is that when i click on the Key field i.e. Customer number it should call the transaction xd03 for that  I have written the following code gs_layout-box_fieldnam

  • 750 to 1200 line items per order

    Hi Does any body have the experience of creating order with 750-1200 line items per order, in such scenario how the performance of the e-commerce was handled, was any custom development made to achieve. please let us know thanks vignesh

  • IPhone 4S viewfinder in video mode

    I really like that you can send live video using the HDMI adapter from the iPhone 4S to a TV connected by HDMI, but I want to be able to do this without the UI elements showing up on the external screen. In other words, I want to be able to send live

  • Add a dimension to Phased Submission!?

    Hi, we have only accounts in the phased submission in process control. Now we need to expand to C4. So I activated the option "SupportSubmissionPhaseForCustom4" and load the metadata to the application. And what happened!? In process control the clos