Limit to number of HTTPService calls made at once?

Hello,
I have 5 Cairngorm Events that I am dispatching at the same time(one right after the other  - all of which call a separate HTTP Service. This works fine when I run the application locally however when I deploy my project to a Glassfish server, it only works intermittently, with the app hanging when it doesn't work. 
My temporary work around to this is to chain some of the events together so less call are going out at once, but I don't really like this as a viable solution because it slows down performance.
Is there a maximum number of HTTPService requests that Flex can make at once before it hangs?

Actually, that document referes to "Personal File Sharing" - 10 is the limit imposed by Apple for AFP, which is Apple's proprietary protocol.
"Windows Sharing" or SMB is open source, and I don't think there is a limit imposed by the license.
The "tested and theoretical maximums (limits)", for SMB on 10.3 Server puts the limit at 1000 connected users (tested and theoretical - with the caveat that the numbers will be limited based on available resources). Between them, the users would be limited by the "number of open files" (theoretically up to 12288, but tested to 1000). But I don't know for sure what if any differences exist between the SMB versions installed by default in OS X Client vs. Server or if anything has changed with the version installed in 10.4.

Similar Messages

  • Is there any way to limit the number of RFC calls from xMII to SAP R/3

    Hi All!
    I wanted to know whether the number of simultaneous RFC connections made from xMII to SAP R/3 system can be controlled in any way. Suppose we have a scenario wherein some million Sales Orders or Production Orders are to be updated in SAP R/3 from xMII in a short span of time. For all these updations to take place, multiple RFC calls will be established from xMII to SAP at the same time. This will increase the load on the SAP R/3 system and affect performance of the SAP R/3 system. Is there any check on xMII side to limit the number of RFC calls that can be made to SAP R/3 system?
    Regards
    Anupam

    Anupam,
    If you are using 11.5 just keep in mind that the JCO connection points to a single application server (based upon the SAP Server alias connection settings), but the traffic itself to make a BAPI request is effectively the same as any client user traffic.  There will obviously be limitations on performance and throughput, with network and server constraints added to the number and size of the R/3 requests, but there is no magic formula to plug-in because of all of these variables.
    If you are using 12.0 (or plan to migrate when it goes GA) then taking advantage of the JRA (java resource adapter) and the associated application server pooling that it offers on the NetWeaver side of things will greatly help you in the throughput capacity.
    If you have put some of your xMII application into either test or productive use and are running into issues then I would highly recommend entering the specifics into the customer / partner support portal so that they can help you through any associated problems.
    Regards,
    Jeremy Good

  • How we can limit the number of concurrent calls to a WCF service without use the Singleton pattern or without do the change in BizTalk Configuration file?

    How can we send only one message to a WCF service at a time? How we can limit the number of concurrent calls to a WCF service without use the Singleton pattern or without do the change in BizTalk Configuration file? Can we do it by Host throttling?

    Hi Pawan,
    You need to use WCF-Custom adapter and add the ServiceThrottlingBehavior service behavior to a WCF-Custom Locations.
    ServiceThrottlingBehavior.MaxConcurrentCalls - Gets or sets a value that specifies the maximum number of messages actively processing across a ServiceHost. The MaxConcurrentCalls property specifies the maximum number of messages actively
    processing across a ServiceHost object. Each channel can have one pending message that does not count against the value of MaxConcurrentCalls until WCF begins to process it.
    Follow MSDN-
    http://msdn.microsoft.com/en-us/library/ee377035%28BTS.10%29.aspx
    http://msdn.microsoft.com/en-us/library/system.servicemodel.description.servicethrottlingbehavior.maxconcurrentcalls.aspx
    I hope this helps.
    Rachit
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • How can I limit the number of attempts to print a web page

    Hi I'm trying to find a resolution for an issue on our network.
    We run several kiosk machines that allow customers to print out documents and web pages. However we are finding that we waste a lot of ink due to user's frequently sending the same print task to the printers.
    Just yesterday we had someone print out over 70 pages because they just keep clicking print.
    I've tried looking for an add-on that would address this but was not able to find one.
    My question is this, Is there an internal setting that can be changed in firefox to limit the number of print attempts to say once every 30 seconds, or even a way to make a dialogue box come on screen saying that the print request is currently processing and not allow more printing until the current task is completed.

    Sorry, there is no setting within Firefox to prevent that from happening. Once the user sees the "native print dialog" box (what is seen when you do Ctrl + P to initiate printing), the operating system and the printer drivers take it from there.
    I have seen something similar to that on kiosk / rental PC's in FedEx Office stores, that notify the user of the cost per page the user wants to send to a printer, and if the user should happen to click again to print the same pages again it asked if you want to spend another $x.xx to print a second copy. Wouldn't be too much different to just shut off the printing of multiple copies of the same document and notify the user of that action.
    My advice is to discuss that with whoever set up those kiosks to being with.

  • Can Flex Limit the Number of Prints that can be made?

    Is there a way to create a Flex app to limit the number of
    prints that can be made from it? I need to limit a coupon that
    prints out, and I'm new to Flex. Is this possible to be created? Is
    anyone interested in possibly contracting this job? This is a
    serious inquiry. Email me if you have an idea, and a quote.
    [email protected]

    No. Printing is either permitted or not, but there is no way any document can control the print quantity.

  • Query to find first and last call made by selected number for date range

    Hi,
    query to find first and last call made by selected number for date range
    according to filter:
    mobile_no : 989.....
    call_date_from : 25-april-2013
    call_date_to : 26-april-2013
    Please help

    Hi,
    It sounds like you want a Top-N Query , something like this:
    WITH    got_nums   AS
         SELECT     table_x.*     -- or list columns wanted
         ,     ROW_NUMBER () OVER (ORDER BY  call_date      ) AS a_num
         ,     ROW_NUMBER () OVER (ORDER BY  call_date  DESC) AS d_num
         FROM     table_x
         WHERE     mobile_no     = 989
         AND     call_date     >= DATE '2013-04-25'
         AND     call_date     <  DATE '2013-04-26' + 1
    SELECT  *     -- or list all columns except a_num and d_num
    FROM     got_nums
    WHERE     1     IN (a_num, d_num)
    ;This forum is devoted to the SQL*Plus and iSQL*Plus front ends. This question doesn't have anything to do with any front end, does it? In the future, you'll get better response if you post questions like this in the PL/SQL.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the SQL forum FAQ {message:id=9360002}

  • Can I limit the number of appointments made by everyone at a specific time and place?

    I want to limit the number of people who make an appointment at a specific time and place.  Can I do this?

    Which Adobe software are you using?

  • I want to know if we can keep a track of calls made to a particular number

    I want to know if we can keep a track of calls made to a particular number

    iPhone only stores 100 recent calls, however, most carriers provide a record of calls you can print out. Just login to your account online & see if your carrier provides such.

  • How to limit the number of items in a KPI Status list web part?

    How to limit the number of items in a KPI Status list web part? There is no paging option for Business Category Status list or any limit can be made by changing the Item limit in default view unlike other SharePoint List web parts. So How to achieve it?
    Kindly help.
    Regards,
    ZA
    zzzSharePoint

    Hi,
    According your post, I know you would like to set the item display limit in Status List web part.
    In the web part, the number of items to display is based on the view which you selected when configuring the web part. The default view for status list is status list view.
    However, I am not able to limit the items’ display number of the status list view. After changing the items limit, the list item displayed would not match the number specified by Item Limit. Thus, it is not possible to limit the number
    of items in the Status list web part.
    It could be a potential issue in SharePoint 2010.
    We will log this issue to our suggestion box. As after the submission, we may not have any time guarantee when the fix may be released, but it may come out on next cumulative update.
    Appreciate your time and efforts.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • How do you limit the number of rings before your answerphone kicks in?

    People calling me have sometimes complained that if I am not available to take the call, they have to wait for many rings - and hence a long time - before the messaging system kicks in. And sometimes, callers give up, assuming I don't have voicemail. I know you can limit the number of rings on other phones, but I haven't founf out how to do it with my iPhone. I'm sure it's easy though!!

    Your carrier sets this by time, not the number of "rings" since different ring tones take different times/ring.  The typical setting is 30 seconds, sometimes up to 40 seconds.  Contact your carrier to shorten it.

  • Illegal use of my skype number to make calls

    Can anyone use your Skype number to make calls?  I had a return call today from someone I do not know and they were returning a call they said I made earlier today and this person had my Skype number correctly. How can someone, or anyone for that matter, use my Skype number to make calls?  Is there a way to stop that? Anyone with an answer, please respond.

    DS wrote:
    Andy_N wrote:
    DS wrote:
    pottyperson wrote:
     I doubt that other contributors will be able to offer a solution
    Well, as I mentioned before, if it's a HH2 and the rear of it is in view of the public, then every Thomas, Richard and Harry will be able to see the wireless key and make full use of the Internet.
    Hi.
    Although possible, that's not entirely true. If the user has altered the wireless key, then viewing the back of the hub will not help
    But how many out there in BT land actually do change it?
    BT only prompt the user to change the default admin password if and when they first access the hub.
    At least BT thought about the label design on the HH3, keeping it hidden until needed.
    I reckon hardly anyone would change the wireless key to be honest , but I wonder how many leave them in a window ...
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Is there a phone number I can call to talk to a live person about help with Lightroom issues ?

    Is there a phone number I can call to talk to a live person about help with Lightroom issues ?

    well the reason I wanted to talk to someone live because it would take forever to explain everything on here But anyway, here goes. I have an HP Pavilion Notebook with Intel Core i5-323om CPU @2.60 GHz and 8 gb ram 64bit. I am trying to run Lightroom 5.7 on my laptop and having major issues. I use an external hard drive for the storage of my photos. When I try to use Lightroom I run into many issues: Flickering of the screen, freezing up, slow, the loading circle just goes round and round lol. If I go to the washroom or leave the computer for even a minute it freezes up. I have to keep pressing Ctr/alt/delete to bring it back when it flickers. I have to constantly exit out of the program and restart it to be able to edit even just a couple of photos and then it starts acting up again.
    I have tried un-installing and re-installing, updating everything on my pc, changing compatibility settings, updating development settings, I even took the laptop into have it looked at and they did all kinds of updates etc...and still couldn't figure out why it wasn't working for me. I have gone through the lists of troubleshooting for LR problems and there just seem to be nothing that works.....I have made new catalogues, moved them, tried using the software on my pc without the EHD, etc etc.......I have tried EVERYTHING...I think.....so I was looking for some answers as to why this is happening....

  • How to limit the number of movie clips on stage?

    I am making a game where tempEnemy in an array of enemies gets made on random. Every time the player advances a level, more insects appear. This is how I want it to be, but when the user is high on a level, too many enemies get made that are impossible for the user to kill. How can I limit the number of enemies being displayed on stage, but not hinder the randomness of the enemy production?
    function makeEnemies():void
        var chance:Number = Math.floor(Math.random() * 150);
        if (chance <=  + level)
            tempEnemy = new Enemy();
            //Math.random(); gets a random number from 0.0-1.0
            tempEnemy.x = Math.round(Math.random() * 550);
            addChild(tempEnemy);
            enemies.push(tempEnemy);
            tempEnemy.speed = enemyBaseSpeed + ((level - 1) * speedLevelInc);
             if (tempEnemy.speed > MAX_SPEED)
            tempEnemy.speed = MAX_SPEED;

    Keep a total count of the enemies that are present versus whatever maximum is currently allowed for a level and do not produce any more than the difference between the maximum and the current number of them.

  • How to limit the number of seleted records?

    Hi,
    I have a performance issue in the context of SQL .
    I used JDBC to excute a select statement. The number of found records might be too large (e.g. 10000). To display them, I set a marge (e.g. 50 ) It is fine for display purpose.
    However, the execution of select statement took long time although I only needed 50 of them.
    Is it possible to make the execution of SQL select statement only work until it found 50 records?
    it seems that i dreamed. But maybe there is a walk around.
    Regards,
    PY

    You could also try calling the Statement (or
    PreparedStatement etc.)'s setMaxRows() method.when using Oracle, does it use the "ROWNUM < maxRows" to limit the number of entries or does it actually retrieve all the data from the database and only then limit the result to the requested amount?
    THX

  • Need to know how to limit the number of rows returned on Oracle

    MS SQL Server has a command called 'set row count'.
    We are trying to find similar one on Oracle.
    What we are trying to do is that instead of using rownum in the query statement, we would like to find way to limit the number of rows returned. I understand that we can use JDBC resultSet object, but that's not what we want.
    I know Oracle has one called arraysize, but this would not limit the number of rows returned either.
    Pease help.
    Thanks

    I understand that we can use JDBC resultSet object, but that's not what we want.I'm not sure which feature of ResultSet you use and which not.
    But if this question has anything to do with JDBC (that's the forum where you put it), I'd recommend to use Statement.setMaxRows(). This will limit the count of rows which your statement will fetch into it's ResultSet.

Maybe you are looking for

  • SOS........installation problem. Oracle 8.1.5 on Solaris 2.6

    Hi all, I am in the process of installing Oracle 8.1.5 on Solaris 2.6. While installing Oracle, it gives the following error and abruptly stops installation. java.lang.ClassNotFoundException : OiQueryFileRes occurred.. I have intstalled 105181-23 ker

  • How to get clients connected in WMS on windows server 2008 with c# coding

    Sorry to bother anyone about this question. Can anyone knows how to retrieve amount of client connection to Windows Media Server in real time same as WMS does on server console by c# programming ? I got logfiles of WMS in system32 directory for detai

  • Audio and Video are not synchron

    I want to make a video from our band, i have a moviefile and separetly an audiofile. The multiclip function doesn't work very well, so i have synchronize the two tracks manually. The next problem was to adjust the length of the audio track to the vid

  • Need help for performance tunning

    Hello, I have 16K records return by query, it takes long time to proceed for 7K it takes 7.5 sec. Note: I used all seeded tables only. If possible please help me to tune it. SELECT       msi.inventory_item_id,msi.segment1,msi.rimary_uom_code , msi.pr

  • Data Path

    Hello All, pls help me. There is a file referenced in the datastream like ^file footer.txt In the file footer.txt there are some global fields like ^global Adress1 xxxxxxxxx ^global Adress2 yyyyyyyyy ^global Adress3 zzzzzzzzz In the template I've def