How to check if classpath of J2EE Engine refers to library(jar) ?

I have access to SDM Manager tools, how to check using this tools if library is in classpath.
Because during deployment of EAR file containing websevice I receive exception about absent of library com.sap.mdm.tech.mdm4j.

Dear rkandy,
Thank you for your comment.
Now our browser expiring info doesn't count
number. Maybe it remain enough days .
Do you know what number the counter starts with ??
Best Regards
MASAKI

Similar Messages

  • How do I stop and start J2EE engine manually on WEB AS

    I have installed WEB AS ABAP + JAVA. For some reason J2EE engine is not up after the Java stack installation. How to I start and stop J2EE engine. The visual Admin is not connecting either saying connection lost.
    I am running on Linux
    thanks

    Hi Dhandu,
    Please have a look in the <a href="http://help.sap.com/saphelp_nw04/helpdata/en/6e/dd0041aafdf123e10000000a155106/frameset.htm">documentation</a>.
    Hope that helps!
    Vladimir

  • How to check for the sub folder in the document library Is already Exist using CSOM?

    Hi,
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder
    IsFolder alredy Exist.
    private
    string IsFolderExist(string InputFolderName)
    string retStatus = false.ToString();
    try
    ClientContext context =
    new ClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
                context.Credentials =
    CredentialCache.DefaultCredentials;
    List list = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
    FieldCollection fields = list.Fields;
    CamlQuery camlQueryForItem =
    new CamlQuery();
                camlQueryForItem.ViewXml =
    string.Format(@"<View  Scope='RecursiveAll'>
    <Query>
                                            <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                                                </Eq>
    </Where>
    </Query>
                                </View>",
    @"/sites/test/hcl/"
    + InputFolderName);
                Microsoft.SharePoint.Client.ListItemCollection listItems = list.GetItems(camlQueryForItem);
                context.Load(listItems);
                context.ExecuteQuery();
    if (listItems.Count > 0)
                    retStatus =
    true.ToString();
    else
                    retStatus =
    false.ToString();
    catch (Exception ex)
                retStatus =
    "X02";
    return retStatus;
    thanks
    Sundhar 

    Hi Sundhar,
    According to your description, you might want to check the existence of sub folder in a folder of a library using Client Object Model.
    Please take the code demo below for a try, it will check whether there is sub folder in a given folder:
    public static void createSubFolder(string siteUrl, string libName, string folderServerRelativeUrl)
    ClientContext clientContext = new ClientContext(siteUrl);
    List list = clientContext.Web.Lists.GetByTitle(libName);
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>1</Value>
    </Eq>
    </Where>
    </Query>
    </View>";
    //camlQuery.FolderServerRelativeUrl = "/Lib1/folder1";
    camlQuery.FolderServerRelativeUrl = folderServerRelativeUrl;
    ListItemCollection items = list.GetItems(camlQuery);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    Console.WriteLine(items.Count);
    if (0 == items.Count)
    //create sub folder here
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to Upgrade java version on J2EE Engine Server?

    Hi Experts,
    We are running the NetWeaver 2004s SP 7 with Java version 1.4.2_08 on the server, but we would like to upgrade the system and be able to upgrade to Java version 1.5. How do we start? We would greatly appreciate your responses.
    Thanks,
    -Don P.

    but we would like to upgrade the system and be able to upgrade to Java version 1.5
    Can you explain this more accurately? For example the OS version
    Are you say about SUN or IBM JDK? I'm think you say about SUN JDK ...when only 1.4.2.XXXX can be installed for
    NW 7.0, Do not use
    Java version 1.5
    In any case Try to check the
    Note 709140 - Recommended JDK and VM Settings for the WebAS630/640/7.0
    You will see all JDK/OS mixes and link's to recuired notes ....
    About how to change java version, for example to newest release ? -->
    Note 718901 - How to Change the JDK of the J2EE Engine
    Regards.

  • How do u restart and monitor J2EE engine from Visual Admin?

    Hi mates,
    How do you restart J2EE engine from VA?
    From VA, is there any way we can monitor if the J2EE engine is rebooting properly or got stuck somewhere?
    thx in adv
    praveen

    Hi Praveen,
    1) I don't think you can monitor from SAP GUI. SMICM will only allow you also to trigger a reboot via Administration / J2EE server but for the rest it's happing all in the background with no visibility.
    2) The dispatcher node is the 'SAP WEB dispatcher' component which is an independent component / product and ( can ) act as the load balancer
    You can also install it standalone to act e.g. as a reverse proxy.
    3) The J2EE node represents the J2EE server
    rgds
    Dirk

  • How to disable external requests to J2EE Engine

    Hi all,
    We have setup an EP6 SP9 SR1 portal environment.
    For security reasons, we have implemented SSL between the client and IIS, and between IIS and the J2EE engine.
    We want the users to access the portal via IIS, and disable direct access via WAS.
    In other words,
      <u>https://ourportal.com/irj/</u>
    is allowed, and
      <u>http(s)://ourportal.com:50x00/irj/</u>
    should be inaccessible.
    As a result, only requests coming from IIS are allowed.
    In addition, additional dialog instances <u>should</u> have access to the central instance, so this communication should not be obstructed.
    Is there a way we can prevent users from logging in directly to the portal via the application server?
    With best regards,
    Robin van het Hof

    Hi Robin,
    If you logon to the admin tool and go to cluster > server > kernal > IPVerificationManager there is a way to set which IP addresses are allowed to access the J2EE Engine.  That should solve your problem.  You just need to modify the file mentioned there which is cfg/kernel/hosts.txt 
    Take a look at http://help.sap.com/saphelp_erp2004/helpdata/en/53/e51e3e6217b40be10000000a114084/content.htm for the syntax.
    Cheers..
    Craig

  • How to hide system related info (J2EE Engine, JVM, OS) from View Source

    Hi Experts,
    We are developing an external facing webdynpro application for our customers. When i  right click on webdynpro application in browser and select View Source , it is showing all system specific information such as  DC names including model DC , JVM , System OS information (below is  exact details).
    I believe this  will give enough information for Hackers to know about system with out much efforts. Is there any we can avoid showing this information part of browser view source.
    Your comments are  highly appreciate.
    This page was created by SAP NetWeaver. All rights reserved.
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MDDR; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2), client type: msie6, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Accessibility mode: false
    Web Dynpro runtime:
    Vendor: SAP, build ID: 7.0013.20080513102531.0000 (release=NW04S_13_REL, buildtime=2008-05-15:05:17:09[UTC], changelist=41322, host=pwdfm114), build date: Wed May 28 15:51:08 EDT 2008
    Web Dynpro code generators of DC companyname.us/projUI:
    SapDictionaryGenerationCore: 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:49:06[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro: 7.0014.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:51:55[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore: 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:37:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-10:16:06:13[UTC], changelist=466194, host=pwdfm101)
    SapWebDynproGenerationCTemplates: 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-10:16:06:13[UTC], changelist=466194, host=pwdfm101)
    SapGenerationFrameworkCore: 7.0014.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:36:46[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:55:29[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary: 7.0014.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:46:17[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon: 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:37:28[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCore: 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:55:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates: (unknown)
    Web Dynpro code generators of DC sap.com/tcwddispwda: No information available!
    Web Dynpro code generators of DC companyname.us/projECCModel:
    SapDictionaryGenerationCore: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:42[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro: 7.0013.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:00:50[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapWebDynproGenerationCTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapGenerationFrameworkCore: 7.0013.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:44:42[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:26[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary: 7.0013.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:54:53[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:30[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCore: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:50[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    Web Dynpro code generators of DC sap.com/tcwdcorecomp: No information available!
    Web Dynpro code generators of DC companyname.us/projModel:
    SapDictionaryGenerationCore: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:42[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro: 7.0013.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:00:50[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapWebDynproGenerationCTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapGenerationFrameworkCore: 7.0013.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:44:42[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:26[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary: 7.0013.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:54:53[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:30[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCore: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:50[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    J2EE Engine:
    7.00   patchlevel 34391.450
    Java VM:
    Java HotSpot(TM) 64-Bit Server VM, version: 1.4.2_13-b06, vendor: Sun Microsystems Inc.
    Operating system:
    Windows 2003, version: 5.2, architecture: amd64
    Edited by: Aravinda Boyapati on Nov 23, 2009 11:54 PM

    Hi Armin,
    I have the same behavior here. Prod is showing all this info. I assume this is some variable that we need to setup in Prod J2EE. Could you please tell me what is it?
    Also, would that change the stack trace? - Currently, we have WDP dumps in Prod, something that I would get rid off (and have just a 500 error page defined).
    Thanks,
    Daniel

  • J2EE Engine Status in R3

    Hello,
    Can anyone tell me how to check the status of J2EE engine thorugh R3?. Is there any T-code which shows that?
    Thanks& Regards,
    Joby

    Dear John,
    I am not able to find AS Java in the tool bar in the T-code: smicm
    But I think we can find out the AS JAVA Status in SMICM
    Goto->HTTP Server->Display Data.
    Your answer was helpful.
    Thanks!
    Joby

  • How to deploy an EAR or WAR into our J2E(J2EE Engine of SAP)

    I got a solo WAR but I don't know how to deploy it into our J2EE Engine(J2E). If you have any same or similar experience,can you give me some help?
    Any advice is popular. Thanks!

    Hello,
    If you use 6.20 release of J2EE Engine then have a look at  <j2ee root directory>/docs/deploymanual.pdf.
    If you have J2EE Engine 6.40 and an already built war file then most probably the easiest way to assemble it and deploy it will be to use the deploy tool (http://help.sap.com/saphelp_nw04/helpdata/en/35/e3ee3da7138e5be10000000a114084/frameset.htm) Usually we use the NetWeaver Developer Studio to build and deploy J2EE Applications (http://help.sap.com/saphelp_nw04/helpdata/en/fe/a3996fa314f94f8a0c3475b08636d0/frameset.htm).
    Best Regards
    Vyara

  • J2EE engine will not start

    Hi experts.
    J2EE engine will not start.  Below is the lower section of the trace.  I'd appreciate help with interpretation as I am a NW newby.
    I just installed an J2EE key in tcode SLICENSE for our developer's subscription NW 7.0 instance.  Another thread implied installing the J2EE key in visual administrator, but how is that possible if the J2EE engine is not running?  I cannot establish a connection.
    Thanks,
    Aron
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1633]
    ***LOG Q0K=> DpMsAttach, mscon ( S-SAPDEV01) [dpxxdisp.c   11822]
    DpStartStopMsg: send start message (myname is >S-SAPDEV01_DS1_00                       <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Tue Jul 08 13:43:35 2008
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 146
    Release check o.K.
    DpJ2eeLogin: j2ee state = CONNECTED
    Tue Jul 08 13:43:37 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 236
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:4027) [nixxi.cpp    4424]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=5508)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    MBUF state ACTIVE
    Tue Jul 08 13:43:38 2008
    DpModState: change server state from STARTING to ACTIVE
    Tue Jul 08 13:44:14 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3412
      argv[0] = D:\usr\sap\DS1\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\DS1\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\DS1\SYS\profile\DS1_DVEBMGS00_S-SAPDEV01
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=64998
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=DS1
      argv[7] = -DSAPMYNAME=S-SAPDEV01_DS1_00
      argv[8] = -DSAPPROFILE=D:\usr\sap\DS1\SYS\profile\DS1_DVEBMGS00_S-SAPDEV01
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Tue Jul 08 13:44:17 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 668
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:4095) [nixxi.cpp    4424]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3412)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Tue Jul 08 13:44:34 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5156
      argv[0] = D:\usr\sap\DS1\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\DS1\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\DS1\SYS\profile\DS1_DVEBMGS00_S-SAPDEV01
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=64997
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=DS1
      argv[7] = -DSAPMYNAME=S-SAPDEV01_DS1_00
      argv[8] = -DSAPPROFILE=D:\usr\sap\DS1\SYS\profile\DS1_DVEBMGS00_S-SAPDEV01
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Tue Jul 08 13:44:37 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 208
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:4105) [nixxi.cpp    4424]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=5156)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Tue Jul 08 13:44:54 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6072
      argv[0] = D:\usr\sap\DS1\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\DS1\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\DS1\SYS\profile\DS1_DVEBMGS00_S-SAPDEV01
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=64996
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=DS1
      argv[7] = -DSAPMYNAME=S-SAPDEV01_DS1_00
      argv[8] = -DSAPPROFILE=D:\usr\sap\DS1\SYS\profile\DS1_DVEBMGS00_S-SAPDEV01
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Tue Jul 08 13:44:57 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 200
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:4117) [nixxi.cpp    4424]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=6072)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN

    Actually it was to remove compression, not to allow archiving.  Sorry!
    We're using Windows Server 2003.  Right-click on a folder or file, choose Properties.  Click on the Advanced button on the General tab.  Remove the check box for Compress to save disk space, click ok.  When you click on Apply there will be a prompt to apply just to that folder only or on subfolders and files as well.
    When compression is applied, the text for the folder turns blue.  When is not applied, the text is black.

  • To find the number of j2ee Engines accessing the middleware system

    How to find the number of j2EE Engines accessing the Middleware system.
    Regards,
    Haritha

    Hi Haritha,
    I 'm afraid that I don't have much idea to find it practically...somehow I managed.
    look at system variable
    sy-host.
    check FM AS4_GET_PTF_STATUS_ALL
    more details
    check
    Re: How can I find out my SAP instance number at runtime?

  • Cannot parse ejb-j2ee-engine.xml

    During installation of XI3.0 I get this error in the "Online deployment adapter framwork". Has anyone else seen this error? Here's the complete error:
    Error: Aborted: development component 'com.sap.xi.mdt'/'sap.com'/'SAP AG'/'3.0.20040129102613.0000':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/com.sap.xi.mdt..
    Reason: Cannot parse ejb-j2ee-engine.xml.; nested exception is:
            com.sap.engine.services.ejb.exceptions.deployment.EJBXMLParserException: Cannot parse ejb-j2ee-engine.xml.
    Any help will be apreciated!

    Hello Dankertsen
    This is a standard error in SAP XML Deployment file, you need to check the file ejb-j2ee-engine.xml if it starts with a space (first line) you must remove it and then update the file aii_mdt_bean.jar. and then retry again.
    Hope this will help.
    Regards,
    M. Zehana

  • Stopping only J2EE engine from MMC

    Dear Gurus,
      I have a ABAP+Java stack 2004s instance. Can you please advice me how I can stop only the J2EE engine from the MMC.
    Thanks!
    Surya.

    The instance '01' is not j2ee.  That is actually the SCS01 instance which is the standalone message and enqueue server for the j2ee components.  Do not stop the '01' instance while j2ee is running.
    In SAPMMC of a 700 dual stack you can only stop/restart the individual elements (SDM, server#, dispatcher) of J2EE.  There is no mechanism for a complete restart of j2ee (without stopping R/3).  Please keep in mind that if you restart the individual elements in SAPMMC the bootstrap synchronization will not occur (synchronization with with DB).  This means that if you make any changes to the J2EE core components the changes will not be realized in the system until a full restart is done. 
    Here are the ways to stop the j2ee stack independently of R/3:
    - JCMON: Use JCMON tool (jcmon pf=<instance profile>) and navigate through the menu to the shutdown option.
    - R/3 SMICM:  Go to transaction SMICM in the R/3 stack and navigate to Administration-> J2EE Instance (Local)->
    Send Soft Shutdown-> Without Restart
    - SAPMMC: In sapmmc navigate to '<hostname> 0'-> J2EE Process Table-> Select each of the J2EE nodes by right clicking-> Disable process 
    Note: The sapmmc option does not stop the jcontrol process (parent process of the j2ee components) and therefore the bootstrap synchronization will not occur when you select "Enable process" to restart.
    Regards,
    Nathan
    Edited by: Nathan Swenson  on Jan 24, 2008 3:07 PM

  • How can i install SSL on J2EE?

    i installed a J2EE patch 24 and J2EE is running with http but now i was demanded to install https on this J2EE .
    During the installation i was asked for a https port , but when i try to reach the J2EE via this port it does not work.
    Is there any documentation ,and if where can i find it ,about how to install SSL on J2EE ? (WAS basis 620)
    i am thankful for any hint.
    best regards
    britta

    Hi Britta,
    you can find documentation about how to install SSL on the J2EE Engine in the Administration Manual (should be part of the installation!) -> chapter Services Administration Reference -> SSL Service -> Critical Information and Troubleshooting Tips.
    You'll also need the SAP Java Cryptographic Toolkit package that corresponds to your SAP J2EE Engine release. You can get it from the SAP Service Marketplace at service.sap.com/download under Download -> SAP Cryptographic Software.
    Hope that helps!

  • SAP J2EE Engine 6.40 Web Services Documentation & Samples

    Where can we find the J2EE Engine 6.40 as well as ABAP Web services documentation as well as the sample applications?
    Thanks in advance

    Hi Vladimir
    Please check the following links
    J2ee engine webservices
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f76f9f90-0201-0010-bf84-d0409ea425f1
    ABAP webservices
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/244e7923-0a01-0010-5887-fe0b0c6dbb8d
    /people/thomas.jung3/blog/2004/11/15/bsp-150-a-developer146s-journal-part-xiii-developing-abap-webservices
    /people/durairaj.athavanraja/blog/2004/09/20/consuming-web-service-from-abap
    /people/thomas.jung3/blog/2005/05/09/abap-webservices-logon-language-processing
    Hope it helps
    Regards

Maybe you are looking for

  • How do I move contacts from my old non-iPhone?

    I have a Motorola Bravo and just got an iPhone 5 from ATT. How can I get my contacts from the Bravo to the iPhone?  I've already copied the contacts to the SIM. ATT support shows that's the first step. However, under the "Copy To" portion, all it men

  • EJB 3.1new instance of stateless session bean not created on new invocation

    I am using Netbeans 6.8 bundle that comes with JAVA EE 6. I have created a web application then created restful web services and then created few stateless session beans (with local interfaces) that are invoked from restful web services. From the bro

  • Need help Encoding a CS5 Premiere Pro sequence to .mp4 1280x720

    I need help trying to encode a HDV 1920x1080 premiere pro sequence to an mp4 1280x720 file. Any advice would be appreciated!

  • Airport not working

    After the replacement of the display,my airport card is not detecting on the system.The fan making noice and system is too slow .I booted from the external HDD(OSX is installed).same problem is apear.I tried SMC and PRAM rest.But still the problem is

  • Contact Role in Customer Master

    I have assigned following roles to the 'Customer Contact' in Customer Master. Could someone help me what all the notifications customer contact will get from OM/any other module if he has this role assigned? Or does it depend on how OM implementation