IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
Expand all | Collapse all

Issue in IS server log

  • 1.  Issue in IS server log

    Posted 07/22/09 07:00 AM

    Greetings All,

    Can any one of you please advise on IS server log below?

    [U]

    Server Log:

    [/u]

    [524060]2009-07-20 21:22:42 PDT [ISS.0053.0007C] Debug RI SSL isssue : 1424176845ProtocolState
    [524059]2009-07-20 21:22:42 PDT [ISS.0053.0007C] Debug RI SSL isssue : 1424176845ProtocolState created thread = 719076236
    [524058]2009-07-20 21:22:42 PDT [ISS.0053.0007C] Debug RI SSL isssue : 1424176845ProtocolState requestHeader new value =

    I can see more no.of these entries in server logs daily which is causing in creating log files with more size. I suspect this is affecting my IS performance. How do I avoid these logs?

    We have a RI proxy set up between our stage server and DM(Proxy) server. Above logs, I can see in my stage server.

    I would appreciate your prompt response.

    Thank you,

    Regards,
    Sathishkumar Batta


    #webMethods
    #webMethods-Archive
    #Integration-Server-and-ESB


  • 2.  RE: Issue in IS server log

    Posted 07/22/09 09:55 PM

    in IS adimin, Logging setting check
    0079 Reverse Invoke
    try to lower it or remove it.


    #webMethods-Archive
    #webMethods
    #Integration-Server-and-ESB


  • 3.  RE: Issue in IS server log

    Posted 07/23/09 11:37 AM

    Hi Tongwang,

    Thanks for your reply. Currently the log level it shows is “Fatal”. Do you suggest me to reduce it to “None”?

    Also can you please clarify, what is this meant for? Is it a warning message? Does it really affect my IS performance?

    Regards,
    Sathishkumar Batta


    #Integration-Server-and-ESB
    #webMethods-Archive
    #webMethods


  • 4.  RE: Issue in IS server log

    Posted 07/23/09 12:33 PM

    hi,

    what’s your fix level? These messages appear when debug fix is applied for RI.
    This debug fix emits detail messages about RI calls


    #webMethods
    #Integration-Server-and-ESB
    #webMethods-Archive


  • 5.  RE: Issue in IS server log

    Posted 07/23/09 07:38 PM

    I guess what Shahid said was right, you must have some debug fix.
    it’s just logging the thread activity related to RI.
    If you don’t care about the message, just try to remove the logging (not sure it will disable the debugging log though).
    I don’t think performance is a big concern.


    #webMethods-Archive
    #webMethods
    #Integration-Server-and-ESB


  • 6.  RE: Issue in IS server log

    Posted 07/24/09 05:52 AM

    you need to set the logging status to minimum that should take care;
    remove any debug log services in the code which are not required;
    the log file size typically should not matter to performance; it can be cleaned periodically when the server is being maintained


    #webMethods-Archive
    #Integration-Server-and-ESB
    #webMethods


  • 7.  RE: Issue in IS server log

    Posted 07/29/09 12:22 PM

    Hi All,

    Thanks for your inputs.

    Tong, As you suggested, I have lowered the debugging level for 0079 from “Fatal” to “Off”. Yah it still shows this log. Per day it is creating 18 lakhs entries.

    “[1820117]2009-07-28 23:06:35 PDT [ISS.0053.0007C] Debug RI SSL isssue”.

    Is there any other way to make this log off?

    Thanks in advance.

    Regards,
    Sathishkumar Batta


    #webMethods
    #Integration-Server-and-ESB
    #webMethods-Archive


  • 8.  RE: Issue in IS server log

    Posted 10/08/09 01:56 PM

    Hi Shahid,

    I could see the fix “RN_7-1-1_1-1UNS7I_DebugFix7” applied to the IS and below are the logging level we changed on IS logging page.

    Default Error
    Integration Server Error
    0079 Reverse Invoke Off
    RosettaNet Error
    Trading Networks Error
    WmXSLT Package Error
    Flat File Error
    Deployer Error
    Adapters Error

    Even after making 0079 to off and lowering others too, we are still getting this log. Due to this, we are not able to verify the log files for other issues. sometimes its creating 3 GB log file.

    Would appreciate your help.

    Thanks,
    sathish


    #Integration-Server-and-ESB
    #webMethods
    #webMethods-Archive


  • 9.  RE: Issue in IS server log

    Posted 10/08/09 04:10 PM

    Satish,

    When SAG Support gives a debug fix then the R&D engineer puts in this debug logging so that if this fix does not work then at least he will get the information that he needs to create a new fix. You can not manually disable this logging, when this fix is made official then the Engineer will remove the debug code in the fix and publish it to the Advantage.

    Cheers,
    Akshith


    #webMethods
    #webMethods-Archive
    #Integration-Server-and-ESB


  • 10.  RE: Issue in IS server log

    Posted 10/09/09 06:26 AM

    Thanks for your clarification Akshith.

    I will try to contact vendor support to make this log disable.

    Regards,
    sathish


    #webMethods-Archive
    #Integration-Server-and-ESB
    #webMethods


  • 11.  RE: Issue in IS server log

    Posted 10/27/09 05:15 AM

    hi friends,
    i have a servlet deployed in tomcat which is embeded into IS integration server;
    when writing the log information from the servlet to server.log file the log info is not writing into the log file, but the request is successful

    following is the code snippet:- any clues, appreciated, thanks in advance

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub

        //BufferedReader b = request.getReader ();
    //String IDoc = b.readLine ();
    //response.getWriter().print(IDoc);
    response.getWriter().print("SAPIDOC - GET Successful \n");
    ServletContext ctx = getServletContext();
    // Will show on IS level 8
    ctx.log("logging a string in the IS server log via the Servlet API");
    log.info("Servlet logging at the IS level 4");
    log.debug("Servlet logging at the IS level 8");
    
    try
    {        log.info("ServletLog:  start log message");
    log.info(this.getServletConfig().getServletContext().getRealPath("//..//..//..//..////")+"SAPidoc" + System.currentTimeMillis()+ ".xml");
    }
    catch (Exception e)
    {
    log.error("ServletError: " + e.getMessage());
    }
    
    response.getWriter().print("SAPidoc" + System.currentTimeMillis()+ ".xml");
    
    }
    

    #webMethods
    #Integration-Server-and-ESB
    #webMethods-Archive