Max no. of simultaneous users on a LCCS site

Dear all,
I have a LCCS service running (online homework help for lowergrade students) but I experience problems with connecting to the students.
First I thought that it was just "normal" server connection problems but when I log into the LCCS dev. portal then I see that the stats are peaking three days in a row on 20 concurrent users which made me think again.
Is there a cap on the number of concurrent connections in the service?
And if so is there any way to raise that number?
All the best
Jesper

Hi,
The limit is discussed in this thread:
http://forums.adobe.com/message/2513098#2513098
You should be able to get more than 20 concurrent users.  If you can't, please provide your account name and we will investigate.
-Jamie

Similar Messages

  • Embedded report engine is limited to a max of 3 simultaneous user requests

    Please help me.
    I currently developing an ASP.NET web application using Microsoft Visual Studio 2005 with Crystal Reports Embedded.
    But found that this embedded report engine is limited to a maximum of three simultaneous user requests.
    I would like to know, is it any solution for increase the amount of crystal report simultaneous user requests? Can this issues solved if we upgrade to Full Version Crystal Report?
    Please help me. Thank you everyone.

    Hello,
    3 licensing is what stays with the Engine dll and itu2019s applicable to all Crystal bundled products(CR 4 VS2010, CR 4 VS2008, CR 4 VS2005, CR 4 VS2003) and stand alone products(CRXIR2 S6, CR2008 SP3). This cannot be changed/increased until you opt for our server based products, which gives you option for increasing the licenses. You might want to contact CIC (800-677-7271) to get more details on this.
    Until an existing handle on report is released from memory, the other requests cannot be taken up. So, once a report rendering is over you might want to call the ReportDocumentObject.Close(),ReportDocumentObject.Dispose() and force the GC to act. This might release the unused objects from memory and you can reuse them.
    As Don suggested, if you wish, do a search on the forum threads and you will find more details and licensing guides for different products provided earlier.
    As far as my knowledge goes, timeout can also be caused if your app has timeout defined or DB has a timeout setting done. You might want to check that. If you need help on timeout section, I hope you will address it in a new thread. See [rules of engagement.|http://wiki.sdn.sap.com/wiki/x/FgQ]
    Thanks.

  • Max number of simultaneous connections?

    Hi everyone!
    how is possible to determine in advance the max number of simultaneous connection for my FMS?
    thanks!

    Hi,
    Like Jay had mentioned the limitation on the number of connection to server depends on the capability of your server.
    You can get the maximum number of connections made to the server, number of active clients... etc details through Administration APIs.
    'getServerStats' gives you the "total_connects", which is the maximum number of connections made to the server. "connected" property will return the number of active clients to your server at one point. It also has many more statistics for your reference. This api returns the overall information of the server. If you want to get the details for specific vhost, you can use getVHostStats or getActiveVHostStats. To get more details on Administration API, refer your pdf documentation on "Administration API", that gets installed in your system under "$Root\Flash Media Server\documentation\flashmediaserver_3.5_administrationAPI.pdf".
    Regards,
    Janaki L

  • Max number of concurrent users?

    I'm in the process of creating a web site with Cold Fusion and
    Oracle. One concern involves the lack of web hosting services
    that run Oracle on their servers. So, to get around this
    problem, I was considering replicating an Oracle lite database
    and putting it on an ISP's server. My thinking is that there
    would be little need of DBA functions and I can run it on any
    server I choose. But ....
    1. Would Oracle 8i lite support a lot of concurrent users?
    2. What other factors would I have to consider if I set it up
    as a distributed DB ?
    Any help on these thoughts would be greatly appreciated.
    Charles
    null

              Thank you Mark.
              "Mark Griffith" <[email protected]> wrote:
              >Jyothi:
              >
              >Sadly there is not an option to throttle the server in this manner. You
              >will/would have to restrict the QueueLength, which is an excluded property
              >on the ExecuteQueue defintion.
              >
              >http://edocs.bea.com/wls/docs81/javadocs/weblogic/management/configuration/ExecuteQueueMBean.html
              >
              >But this is only a very gross/general level of the server queuing execute
              >requests and isnt fine tuned to just servlets like you want it to be.
              >
              >Cheers
              >mbg
              >
              >"jyothi prabhu" <[email protected]> wrote in message
              >news:3ed04a70$[email protected]..
              >>
              >> Hello everybody,
              >>
              >> is it possible to set max. number of concurrent users accessing
              >weblogic server
              >> through a login servlet? For example, is it possible that at a given
              >point of
              >> time, maximum n users can be logged onto weblogic server while accessing
              >a web
              >> application.
              >>
              >> thanks.
              >
              >
              

  • Thread Count Vs no of simultaneous users

    Hi,
    I have been testing my customer made adapter on WLI2.1 and WLS6.1SP1 for
    simulataneous users access.
    I found that as long as the no of simultaneous users is less than the Thread
    Count defined for WLI, it works fine.
    But if the no of users exceed the thread count, the server hangs.....idle
    threads become 0.
    Does my Thread Count always have to be greater than the no of simulatneous
    users am expecting ?
    Thanks
    Amit

    In my openion, yes, number of threads configured should be greater than simultaneous users.
    Thanks
    Niranjan

  • How to change the max number of the user session?

    Hello,
      The max number of the user session of my system is 6,I want to change it,how should I do?

    Hi Begue,
    This can be done by changing the value of profile paramter rdisp/max_alt_modes. Currently its value in your system must have been set to 6. You can check the value through transaction RZ11. To change it use transaction RZ10.
    For knowing the details of changing values in RZ11 please visit :
    http://help.sap.com/saphelp_47x200/helpdata/en/c4/3a6247505211d189550000e829fbbd/frameset.htm
    After making the changes please restart SAP.
    Please award points if the issue got solved.
    With Regards.
    Ruchit.

  • Number of simultaneous users

    I have an webapplication developed by jsp/struts.for that How can the number of simultaneous users be restricted?
    Regards
    Vijay

    Hi
    Maybe it is not only and best solution, but my first though is to:
    1. Read servlet container documentation and limit it with container specific configuration
    2. Do it myself like:
    create object which implemennts
    HttpSessionBindingListener
    and add it to a session.
    On valueBound event:
    valueBound(HttpSessionBindingEvent event) {
       Integer sessions =  (Integer)event.getSession().getServletContext().getAttribute(ACTIVE_SESSIONS);
       int i = sessions==null?0:(sessions.intValue()++);
       event.getSession().getServletContext().getAttribute(ACTIVE_SESSIONS, new Integer(i));
    }on valueUnbound same but with decrease.
    And add it to session as soon as possible. If you are not goint to remove this object yourself it will be notified when session is invalidated or timeouted.
    Create controller servelet filter like this:
    public class MyFilter implements javax.servlet.Filter {
         FilterConfig config;
         public void init(javax.servlet.FilterConfig filterConfig) {
           this.config = filterConfig;
         public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) {
              Integer sessions = (Integer)config.getServletContext().getAttribute(ACTIVE_SESSIONS);
              if(sessions!=null && sessions.intValue()>=SESSION_LIMIT) {
                  request.getRequestDispatcher("NO_WAY.jsp").forward(request, response);
              chain.doFilter(request, response);
    }Of course this is fast example with lots of typing mistakes :)) but idea matters

  • Simultaneous users disabled

    We have some tax software for which we have a licence that should allow 2 simultaneous users to access the software at the same time. The app itself is stored on the Mac server and the Windows desktops have a copy of the software on their PCs which accesses the data on the server app.
    When we moved the tax software and files into its own sharepoint, multi-user access stopped. There appears to be nothing obvious that needs to be clicked to enable this, but we had a similar problem when we originally set up the software and the consultant then clicked a tick box to enable it. Trouble is, he left no notes of what he did (despite that being part of the agreement) so we cannot reproduce it.
    Any ideas what may be causing the problem of only allowing single user access?
    TIA
    Mac
    PS I'd love it if the tax software was available on the Mac, but it is, like so much finance software, Windows only.

    A reinstall of the tax software via a computer it was not previously on fixed it.

  • Sharepoint 2013 - domain configuration, external users, creating subsite in site collection, moving subsites

    Hello all, first of all thank you for reading this post. Please bare with me, I am new with this environnement. I have had several problems in past week trying to configure a local sharepoint server 2013, most of it went well but now I am stuck and I badly
    need help! I intend to make sharepoint available through the Ethernet connection in my office.
    Here is my config:
    Sharepoint 2013 (local)
    Microsoft SQL 2012
    Microsoft Server 2012
    I am able to access the sub-site I created in the Sharepoint Central Administration Web Application.
    My first problem is, I created another Web Application with the following URL config http://intranet.[domain].com but I am not able to access it through my browser. It seems to point to bad IP I probably configured accidentally a CNAME on my hosting Cpanel
    with the IP 192.168.1.199. So, When I ping the URL I do not get any connection. Just that it couldn't connect to 192.168.1.199. Now I added a CNAME on my CPANEL for the URL http://intranet.[domain].com --> 127.0.0.1. Is this the correct way to do it?
    More information: The DNS manager has been configured following this tutorial:
    Create SharePoint 2013 Web Application
    http://www.youtube.com/watch?v=yW7LT99eUMs
    I am not too sure of the proper configuration for the IIS Manager.
    Anomymous Authentication is enabled
    Windows Authentication is enabled
    Everything else is disabled.
    My second problem is that I cannot invite any user to the site. Even the one that have the email corresponding to our domain. Will I be able to invite parent domain users if the Web Apllication is properly configured with the CNAME on the Cpanel?
    I tried to activate the External user invitation feature from Site Collection Features but it's not in the list. I am logged in as an administrator but next to the wrench it says "System Account" (with an arrow pointing down) so I guess this is
    the "logged in user as..."? Am I missing something here?
    Any advices would be greatly welcomed. I've run out of ideas.
    Much appreciated,
    Herb

    Hello Ramu, thank you for your fast reply.
    Quote Ramu: "You have to create A record called intranet.your-domain.com points to your SharePoint Server
    IP and also loop back ip address in the host file entry on the SharePoint server(127.0.0.1  intranet.SharePoint.com)"
    Is this a record on our corporate website Cpanel? What should I put in the "Address" field of
    the Record (we do not have static IP)?
    For the loop back, is this on the DNS Manager of our local Sharepoint 2013 server?
    Quote Ramu: "3.
    if you want to publish this externally, then your site needs to publish in your Network and it should points to your public static IP in your public domain control panel(Cpanel)."
    In the first scenario where I only want intranet access, should everything be OK with the above mentionedconfiguration a DNS Record:
    Which address should it be for the record?
    Should I assign a fix IP to our server like 192.168.1.55?
    What if another desktop computer gets an IP conflict with the server
    fix IP, or what if we have to shut down the server everyday will the server IP change ?
    General question: From what I understand, it is possible to put a DNS Record on the public Cpanel from our corporate website with a local IP that will only be resolved
    if accessed through the local network? Ex.: Name: intranet.[our-corporate-public-domain].com, Address: 192.168.1.55 ?
    Much appreciated RAMU.
    Regards,
    Herb

  • Problem with users accessing sharepoint 2013 site collection

    I have an unbeliveable problem..
    I have a sp site with several site collections..
    I have around 15 users.. Everybody have access to the root site. Two users do not have access to site collections even though they are in EXACTLY same permission groups like other users who can access those site collections!
    I tried to delete them from all user groups in SP, then delete their user profiles in Central Administration, and delete them from Active Directory. After that I recreated their profiles in Active directory, readded them to Central Administration, and again
    added them to coresponding groups in SharePoint site collections. They again CAN NOT ACCESS site collections.
    What should I do.. This is incredible that 5 users with the same user privileges can access site collections, and 2 can not, even though they are all created in the same way..
    Regards,
    Srdjan

    Hello,
    Have you found a solution for this problem? I have the exact same problem with 2 users accessing a site collection (access denied). I found also this row on uls log:
    Access Denied. Exception: Attempted to perform an unauthorized operation., StackTrace:   at Microsoft.SharePoint.Utilities.SPUtility.HandleAccessDenied(Exception ex)     at Microsoft.Office.Project.PWA.PJBaseWebPartPage.OnPreInit(EventArgs
    e)     at System.Web.UI.Page.PerformPreInit()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean
    includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionSt... 6955b79c-c42c-50fc-84f8-2b68f97002ea

  • PC users cant view my site....

    I am VERY new to iweb. I just finished my first site and published it. I can see it perfectly on my computer. When I told my family and friends (pc users) to check it out they said all they see is the godadddy.com site saying a site is being made... How do I fix this? Or does it have nothing to do with them being on a PC?? Help! Thanks!

    Check with GoDaddy tech support to see if your domain name has been forwarded correctly to your site.
    PC users should reach your site if all is well.
    Post the URL if you need more help here.

  • How to check the user hits to the sites (most often,frequently used sites) in sharepoint 2010?

    HI,
    How to check the user hits to the sites (most often,frequently used sites) in sharepoint 2010?
    could you please help on the above?

    Hello Sudhir muvva,
    Just to be sure, the default Web Analytics reports don't meet your requirements?
    http://blogs.msdn.com/b/ecm/archive/2010/03/21/introducing-web-analytics-in-sharepoint-2010.aspx
    Does reports have subjects like top pages and number of page views.
    - Dennis | Netherlands | Blog |
    Twitter

  • User missing from all site collections but present in User Profile (Central Admin)

    I have a user who does not show up in "People and Groups" (or if I search for this user) in any of the site collections but does show up when I look up his user profile on Central Admin. I've tried to add this user to the site collection using
    the following command, but I get an error: " The specified user domain\accountname could not be found."
    Get-SPWeb 'http://site' | New-SPUser -UserAlias 'domain\accountname'
    Idk if this is related, but on this user's profile, "Personal Site" field shows up as "SPSSITEERROR".
    Any help would be greatly appreciated.
    Thanks.

    Hi,
    I recommend to check if the user exists in Active Directory firstly.
    If yes, then the error will occur. And for the user profile of the user, it may due to the user profiles have not been synced with Active Directory yet.
    That "Personal Site" field shows up as "SPSSITEERROR" means that the MySite of that user has not been created successfully.
    I recommend to run User Profile Synchronization timer job and then check the results.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • User Profile Services:How get to know how many user are using my site.

    Hi,
    User Profile Services:How get to know how many user are using my site.
    Recently i have done migration sharepoint 2010 to sharepoint 2013,I did not migrate USer profile services because less user are using user profile here,but i need to know how many few uer are using my site for data store.
    Is any why we can get to know  user name who are using my site document library and other things.
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

    Fallowing command shows only count of my site user ,I need to know how many upload data on my site
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

  • [warn] mod_bonjour: Cannot read template index file '/System/Library/User Template/English.lproj/Sites/index.html'.

    Operating System: Lion 10.7.5
    I was getting this warn in the logs
    [warn] mod_bonjour: Cannot read template index file '/System/Library/User Template/English.lproj/Sites/index.html'.
    and looking to the System directory on;
    System/Library/User Template
    User Template was locked and onwned by the System.
    I went to the terminal and type;
    sudo mkdir "/System/Library/User Template/English.lproj/Sites/"
    sudo touch "/System/Library/User Template/English.lproj/Sites/index.html"
    re-started Apache
    The warn went away gracefully

    I am adding here that this seems to be a permissions bug since the "User Template" is owned by the system and no one else have access to it. The warn went away temporarily because the permissions still wrong in that directory. I changed the permissions on the User Template directory to read and see what is inside and it loops to the user system structure. Most of the directories in the system structure are locked leaving only the public and sites directory with the correct permissions. Inside of the sites folder have a blank index.html file with read access.
    So I am not sure if what I did until now will resolve the warn issue.
    What I did was to get info on the User Template directory, authenticate as root and change the permission to the admin to read only. That is harmles since not even the admin can change its content. The warn seems to have gone away for now. However, the point here is to find out if the permissions should be read and write for the admin instead of read only or some other conf. More latter!

Maybe you are looking for

  • ASA 5505 Connected To Linksys Router

    Hello, I have a cable modem internet connection and my cable modem is connected to an ASA 5505.  The inside interface of the ASA has an IP address of 192.168.2.2 and is connected to a Linksys router's internet port which has an IP address of 192.168.

  • Viewing progressive video on different systems

    Hi everyone, I've got some 24P (normal, from a DVX100) video here that I'm editing, and I'm wondering what to expect it to look like when I'm finished. While editing, on my progressive (obviously) computer monitor, I'm seeing ugly interlace lines on

  • Can't export without master

    I can see photos but can' export them because the master is not available. Surely, there must be a work around this. I can see the photo!

  • Reorganization of Tables in Database

    Did anyone reorganized the tables in database to reclaim the fragmented space within the Tablespace. If so please suggest how to identify which are all the tables have more fragmentation in order to reorganize it within the tablespace. Regards, Subra

  • [SOLVED] hidpi in wine

    Hey all, I have a high (216) dpi screen, and certain windows applications (like LTSpice) that I run through wine. However, they appear VERY small on screen as do all wine windows. Is there any way of configuring wine to increase dpi (or window scale,