Kindly Could anybody Clarify

Hi,
Could anybody clarify me on below query.
I have a production environment where the total number of weblogic.kernel.Default threads are 25. Please correct me if i am wrong.
---It ti like one thread can handle at max 65536 numbers of request at a time?
--- Does one thread assign to only one servlet request not to any JSP request?
Kindly reply me of send me some good link which can help me to clarify my query.
Thanks,

Hello,
I am sorry, but I am really not getting your question:
---It like one thread can handle at max 65536 numbers of request at a time?
A thread serves only one request at a time. It is the time sharing model of a multitasking environment, that gives the illusion of serving multiple request at a time. Might be I am getting your question wrong. could you please elaborate your doubt?
http://docstore.mik.ua/orelly/xml/jxslt/ch06_05.htm (you might check the link for servlet threading model. If your question is for that)
As per your weblogic.kernel.Default query, requests to a server instance are placed in an execute queue. Each request is assigned to a thread within the queue that performs the work. By default, a new server instance is configured with a default execute queue, weblogic.kernel.default, that contains 15 threads. In addition, WebLogic Server provides two other pre-configured queues:
weblogic.admin.HTTP—Available only on Administration Servers, this queue is reserved for communicating with the Administration Console; you cannot reconfigure it.
weblogic.admin.RMI—Both Administration Servers and Managed Servers have this queue; it is reserved for administrative traffic; you cannot reconfigure it.
Unless you configure additional execute queues, and assign applications to them, web applications and RMI objects use weblogic.kernel.default.
There is an attribute called "Threads Maximum", which is the maximum number of threads that this queue can have; this value prevents WebLogic Server from creating an overly high thread count in the queue in response to continual overflow conditions. The default value for it is Minimum: 1 / Maximum: 65536 / Default: 400
I think you might be confused with it.

Similar Messages

  • Kindly send anybody a ppt on how to execute reports through Browser and Ana

    Hi all,
    I need a PPT on how to execute reports through Browser and Analyzer in version 3.5 or older to 3.5 immediatley from end user point of view. I donot have time to prepare it and has to be sumbmitted before end of the day.
    Kindly help me out by sending it [email protected] .
    Thanks in Advance.
    Anil Kumar Sharma .P

    Thank you Mr. Voodi,
    I will wait for your reply.
    Meanwhile could anybody else ,send me PPT on it.
    Thanks in Advance,
    Anil Kumar
    Message was edited by:
            Anil Kumar Sharma

  • Hi, why can't I use the iMessage on my iPhone? I've already had my apple id email on it but it keeps saying "waiting for activation" always like that. No progress. Could anybody help me on this? Cheers

    Hi, why can't I use the iMessage on my iPhone? I've already had my apple id email on it but it keeps saying "waiting for activation" always like that. No progress. Could anybody help me on this? Cheers

    I have an old iPod Touch with old software that can no longer be updated:
    iOS version 6.1.6
    I've been searching for a solution to my iMessage login problem for months and tried everything from those frustrating links and all the tips from other users.
    Here is what finally worked:
    1) Settings > Privacy > Location Services > On
    2) Settings > General > Date & Time > Set Automatically > On
    3) Reboot device until Apple logo appears
    4) Settings > Messages > Sign In

  • Hi, I have a latest Macbook Pro Retina. I connect its hdmi port to a DisportPort of HP Compaq LA2205wg external monitor, but no signal at all. Could anybody help me

    Hi, I have a latest Macbook Pro Retina. I connect its hdmi port to a DisportPort of HP Compaq LA2205wg external monitor, but no signal at all. Could anybody help me

    I could be *very* wrong but did not know you could output from HDMI into displayport consistently with no issues.
    Try a mDP to DP cable like this (the mDP end will go directly into the thunderbolt port of your laptop)
    http://www.monoprice.com/Product?c_id=102&cp_id=10246&cs_id=1024606&p_id=6006&se q=1&format=2

  • Please could anybody has a sol, to bring images to the report for all employees which has no reference with images stored in some path

    Hi Obiee experts,
    I have placed the images in  below locations  and these images are independent and  has no reference to the employee id column in dimension table.but my client requires report with all the employees,with respect to the images.Could anybody can give me a solution for this.
        1) root: \apps\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\s_blafp\images
       2) root: \apps\Middleware\Oracle_BI1\bifoundation\web\app\res\s_blafp\images
       3) root: \apps\Middleware\instances\instance1\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1\analyticsRes
    Thanks in Advance
    kumar

    Hi Sreeni,
    The images are stored with employee ids reference like 1234.jpg in the image location path, so will it be possible to call those images into the report with no relation at database level.
    as you said in above mail even if if we cld try  to store the images in oracle database with format like CLOB format the rpd will not support the datatype to bring to that report level.
    Please let me know if you have any solution
    Thanks in Advance
    kumar

  • Hi I am newbie to Jsp,could anybody please help me

    Hi ,I am designing one login form using Jsp and servlets,these are my programs:
    import java.io.IOException;
    import javax.servlet.RequestDispatcher;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class login2 extends HttpServlet {
         private String target = "/welcome.jsp";
         private String getUser(String username, String password) {
    //          Just return a static name
    //          If this was reality, we would perform a SQL lookup
              return "Shopping cart";
         public void init(ServletConfig config)
         throws ServletException {
              super.init(config);
         public void doGet(HttpServletRequest request,
                   HttpServletResponse response)
         throws ServletException, IOException {
    //          If it is a get request forward to doPost()
              doPost(request, response);
         public void doPost(HttpServletRequest request,
                   HttpServletResponse response)
         throws ServletException, IOException {
    //          Get the username from the request
              String username = request.getParameter("username");
    //          Get the password from the request
              String password = request.getParameter("password");
              String user = getUser(username, password);
    //          Add the fake user to the request
              request.setAttribute("USER", user);
    //          Forward the request to the target named
              ServletContext context = getServletContext();
              RequestDispatcher dispatcher =
                   context.getRequestDispatcher(target);
              dispatcher.forward(request, response);
         public void destroy() {
    This is my servlet program and these are my jsp programs:
    <html>
    <head>
    <title>OnJava Demo</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <b>Welcome To: <%= request.getAttribute("USER")
    %>
    </html>
    this is welcome.jsp and this is login.jsp
    <html>
    <head>
    <title>OnJava Demo</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <SCRIPT language=JavaScript>
    function checkUserName( thisform ) {
    if ( thisform.username.value == null || thisform.username.value == "") {
         alert( "You must supply value for Name");
         thisform.username.focus();
         thisform.username.select();
         return false ;
    /* if ( thisform.eMail.value == null || thisform.eMail.value == "" ) {
         alert( "You must supply value for eMail");
         thisform.eMail.focus();
         thisform.eMail.select();
         return false ;
         var myreturn = 0;
         myreturn = thisform.eMail.value.search("@");
         if ( myreturn == -1 ) {
         alert( "Please provide a valid eMail address like '[email protected]'");
         thisform.eMail.focus();
         thisform.eMail.select();
         return false ;
    return true;
    //end hiding -->
    </SCRIPT>
    <body bgcolor="#66CCFF" onLoad="document.loginForm.username.focus()">
    <Form name=loginform onsubmit="return checkUserName(this);"
    action=welcome.jsp method=post>
    <h><font face="Times New Roman" size="+3" color="#FF0000">Shopping cart Login form</font></h>
    <table width="500" border="0" cellspacing="0" cellpadding="0" align="center" >
    <tr>
    <td>
    <table width="500" border="0" cellspacing="20%" cellpadding="10%">
    <form name="loginForm" method="post" action="servlet/login2">
    <tr>
    <r>
    <td width="401" align="center"><div align="right">User Name: </div></td>
    <td width="399" align="left"><input type="text" name="username"></div></td>
         </center>
    </tr>
    <tr>
    <td width="401"><div align="right">Password: </div></td>
    <td width="399"><input type="password" name="password"></td>
    </tr>
    <tr>
    <td width="401"> </td>
    <td width="399"><br><input type="Submit" name="Submit" value="Login"></td>
    </tr>
    </form>
    </table>
    </td>
    </tr>
    </table>
    </body>
    </html>
    and I got Welcome to:null,but instead of i would like to get Welcome To Shopping Cart.
    What's the with my code,could anybody please help me...

    Hi,
    change loginform action to login2 (servlet) for validate user.
    <Form name=loginform onsubmit="return checkUserName(this);"
    action=login2 method=post>Regards,
    Ram.

  • Could anybody help me out in SWIFT format generation MT900/910

    Hi,
    Subject: Could anybody help me out in SWIFT format generation of Credit /Debit Cofrmatin message (MT900/910).
    I have already generaed the message for 'Request for Transfer' i.e MT101 .When I run the automatic payment run(F110) for any vendor there is program called,RFFOM100 which generated MT100/101 messeges.
    Now I want to import the MT900/910 message which is for Debit /Credit confirmation into SAP .
    Please let me know whcih transation/program I have to run for Debit/Credit confirmation and any configuration settings if required,.
    Please need help from any of you guys.
    Thanks
    Babu.
    Edited by: Ratnam Mopidevi on Nov 5, 2008 4:06 PM

    I wish I could offer a solution, because I too am about to go crazy trying to fix the same problem. I have tried everything in the support section, sometimes twice, to no avail. Now I have an empty ipod that won't connect to my computer much less iTunes.
    Any suggestions?

  • Could anybody explain this warning message regarding Posix Performance Pack

    Hi,
    I am getting following message on my console :
    <Sep 10, 2002 7:12:38 PM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception
    for fd: '123' with no corresponding table entry>
    <Sep 11, 2002 12:40:48 AM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception
    for fd: '151' with no corresponding table entry>
    I have deployed the WL server on HP-UX 11.0 and wlserver version is 6.1 sp2. Could
    anybody explain the warning message ?
    TIA
    Anirudh

    This is a known issue.
    Contact [email protected] and ask for "Combined muxer" patch.
    Kumar
    Anirudh wrote:
    Hi,
    I am getting following message on my console :
    <Sep 10, 2002 7:12:38 PM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception
    for fd: '123' with no corresponding table entry>
    <Sep 11, 2002 12:40:48 AM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception
    for fd: '151' with no corresponding table entry>
    I have deployed the WL server on HP-UX 11.0 and wlserver version is 6.1 sp2. Could
    anybody explain the warning message ?
    TIA
    Anirudh

  • Could anybody plz send some faq's on modulepool?

    Hi experts,
    I'm very new to module pool.
    could anybody plz send some faq's on modulepool?
    regards.
    venkat

    Module Pool Programming
    http://www.allsaplinks.com/dialog_programming.html
    http://sap.mis.cmich.edu/sap-abap/abap09/
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm
    http://sap.mis.cmich.edu/abap-00/
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm
    http://www.sapgenie.com/links/abap.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://help.sap.com
    http://www.sapgenie.com/abap/example_code.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/52/670ba2439b11d1896f0000e8322d00/frameset.htm
    http://www.allsaplinks.com/dialog_programming.html
    http://www.sapbrain.com/TUTORIALS/default.html
    http://www.sappoint.com/abap/spmp.pdf
    http://sappoint.com/abap.html
    http://www.sap-img.com/abap.htm
    http://sap.ittoolbox.com/code/archives.asp?i=10&t=450&a=t
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://www.sap-img.com/abap/
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://www.sap-img.com/
    http://www.sappoint.com/faq/faqdiapr.pdf
    http://www.allsaplinks.com/dialog_programming.html
    Check the following Link
    http://www.sappoint.com/faq/faqss.pdf

  • HT1619 I can't find where to enable the infrared receiver on my mac  OS X 10.9.2, could anybody help me? thanks

    I can't find where to enable the infrared receiver on my mac  OS X 10.9.2, could anybody help me? thanks

    The MacBook Air has no IR receiver.  There are USB units, such as:
    <http://twistedmelon.com/mira/hardware.html>

  • I am having problems to run logic pro 9, there is an error display that says I need to set bonjour and that this app serial number has been used by another red user,  could anybody guide me?

    I am having problems to run logic pro 9, there is an error display that says I need to set bonjour and that this app serial number has been used by another red user,  could anybody guide me? actually, my computer can't start  since three days ago, could it be the same problem?

    Logic is the APPlication (program, app) that you are having the problem with.
    Logic Pro can take advantage of other computers on your local (home or work) network to help it do "heavy lifting" data chores by using Bonjour and a feature called Nodes.   It seems that Logic is attempting to find and connect to another machine on your network.
    Do you have Logic installed on another computer there?  That may be the source of the confilict.
    You might want to post this question in the Logic Pro Community.
    Be sure to indicate the version of Logic Pro that you are using.  I'm sure the folks there can help you out.

  • Hi, on my fathers pc sometimes when downloading multiple tabs start opening and I cannot stop this happening. Could anybody please help me?

    Hi, on my fathers pc sometimes when downloading multiple tabs start opening and I cannot stop this happening. Could anybody please help me? for example, trying to download TomTom Start 25 user manual

    You get that problem if you select the Firefox program to handle a file if you get an "open with" dialog.
    *https://support.mozilla.com/kb/Firefox+keeps+opening+many+tabs+or+windows

  • I hear a sound like clock pendulum inside my mac pro, not a time related, everything else looks great, could anybody help please?

    Hi all, i am hearing a sound inside my Mac Pro over 2 months before, on both power and battery, not a time specific, i hear a "tictac" sound like Wall Clock Pendulum, beneath the keyboard, i can feel it my hand while typing, it is very clear, could anybody of help please?

    Start your MBP with the StartupManager:
    http://support.apple.com/kb/HT1310
    You should see two HDD icons.  Select the recovery partition (on the right).
    From the 4 option menu select Disk Utility,
    Select Disk Utility>First Aid, and run Verify and then Repair.
    This should tell you if there are any issues with the HDD.
    Do backup your data if you value it.
    Ciao.

  • I loss the serial number for my Final Cut Pro. I just traid instaling before that upgrade my Mac G5 2004 Computer. Could anybody help me?.

    I loss the serial number for my Final Cut Pro. I just traid instaling before that upgrade my Mac G5 2004 Computer. Could anybody help me?.

    These are user forums. You are not speaking to Apple here. You may contact them:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support visit online support site.

  • Could anybody give me the logic in sales report

    Hi All,
    I have a sales report on multprovider. In this sales report, I want to find out how many customers had done the transactions in day.
    <b>Two transactions for one customer in a day can be counted as one transaction</b>.
    Could anybody give me the logic to how to find the total number of customers made transaction in a day.
    Thanks in advance
    Narendra

    Hi Anil,
    Thanks alot for your answer.
    I am not sure, how the user is going to excute the report.however there is a <b>user entry Characterstic variable on 0CALDAY with selection options.</b>
    For example :
    If the user run the sales report  from Calander Day from 01-06-2007 to 06.06.2007.
    that means 4 business days (1st, 4th, 5th and 6th June). He wants to see the total number of customer done the transaction in a day separately, means 1st June how many customers, 4th June how many customers, 5th June how many customers, and 6th June how many customers.
    Based on the user selections,how many customers per day made the transactions. could you please send me the logic.
    My email Id is : [email protected]
    <b>Note : Query <---- multiprovider <---- Infocube <---- ODS</b>
    Thanks in advance
    Narendra

Maybe you are looking for

  • Pages Table of Contents - doesn't show in sections menu - any ideas?

    Watched the video and it looks simple but when I go to Sections it does not give me the option of choosing Table of Contents. Anyone know if there's something I'm doing wrong? Thanks

  • Save a pdf with zoom 150%

    I convert a few jpg as a pdf and i want that every time i send it or some one open it the acarobat will open it on zoom 150%; the reason is that the pictures looks small on the 66% zoom thats open automatically with the acrobat thank you J.N

  • Re: Node Manager is not responding

    Yes, we have seen this also. But only on NT Nodes. I have not seen this occur on UNIX or VMS. The only way we have been able to clean it up is by using Mark Russinovich's HandleEx utility. You cannot even look at it using Escript/environment console.

  • CD/DVD template Adobe Elements 8

    Whenever I want to print on a full face printable CD or DVD I use Photoshop Elements to create the design.  To ensure that everything is kept within the outer and inner diameters of the DVD (e.g. to avoid the central hole from being near a person's f

  • MetaData for SkyDrive Pro

    Hi I am trying to Synchronise documents across devices from SharePoint Online using SkyDrive Pro. Is it possible to Sync libraries that have Custom Columns?  In particular lookup columns?  I have tried doing it on a Document library with one lookup c