Error with multiple requests

Hi,
I'm using JSC2_1. I've developed page with table bound to database table via data provider. There are about 1000 rows in database table so my table component has pagination buttons (about 100 pages).
My problem is that when user clicks pagination buttons quickly (before response is sent) then server fails with error 500. I think that multiple request threads are being launched and they all access CachedRowSet in the same time. According to http://blogs.sun.com/jfbrown/entry/cachedrowsetdataprovider_and_cachedrowset_info CachedRowSet is not thread safe.
Is there any way to block user from sending multiple requests? Another solution would be locking the rowset but I don't know how to do this.
regards
Grzegorz

OK then I doubt Bios is the issue. I had to check though.
I run the same software as you do for that wheel however I have Windows 2k SP4. While I doubt the underlying OS is the issue I did ask as it may have been a Service Pack Issue. As you have a current version then I can only assume that is OK.
Which Via drivers are you using? If they are a Hyperion driver set from Via there are issues with some of their versions. Try updating with the Via 3in1's that came on the MB Driver CD you got with the board.
Otherwise this may be an issue best asked of Logitech as well as I have no idea what their error reporting is trying to tell us. No I am not saying it is the wheel. I am saying we may get a better handle by knowing what that error code is trying to say is all.
Oh ya. Make sure also in Bios that you turn on Legacy Devices. I have that on with mine as well. I did not try the wheel without it but it could be an issue although a remote one. It is something to make sure of though.
Also if your using an external USB hub try the wheel directly into the computer rather than through the hub.
Also if you have a memory card reader or other USB devices try the wheel with them unplugged just to make sure there are no conflicts.
I am off to sleep but let me know and I will try to help more tommorow if that doesn't help.

Similar Messages

  • Ical won't sync with yahoo calendar. Get error....There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/xyx/Inbox/" is not an inbox.').

    Hello, I get the below error when I start iCal and it tries to sync with my Yahoo Calendar. Any thoughts?
    There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/xyx/Inbox/" is not an inbox.').

    I am having same problem - I've added events to Ical and it's not updating in my Yahoo calendar. Getting this message: There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/mcarthur_c/Inbox/" is not an inbox.').

  • "There was an unexpected error with the request on subscribed calendars (error -1)"

    I have been subscribing to my wife's work and home calendars since she started using an iPad mini late December. Suddenly, today, nothing will sync to it. If I try to update, the iCal app fails to pick her work calendar, saying "There was an unexpected error with the request on subscribed calendars (error -1)." Her iPad has the current iOS.
    I tried re-sending the 'subscribe to my calendar' email (with a link) from her iPad, but trying to open that link results in the same message.
    Our computers all run Mac OSX 10.6.8 and iCal 4.0.4.
    I don't really know if my iPhone 4S is picking up her calendar info. I have never been able to see if/how an iOS retrieves cloud data when accessed.
    Any help appreciated.

    You will find that the calendar's URL bevins with ical.mac.com. The mac.com domain was one of MobileMe's website hosting domains, and with the closure of MobileMe none of its hosting works, including the CalDAV server which was used by a number of subscription calendars - mostly third-party but also some Apple ones: you would think, wouldn't you, that at least Apple would be aware of this. In fact a few days ago, following a similar query, I went through about twenty randomly chosen calendars in Apple's list, and only two of them worked. Most of the rest were ical.mac.com ones (there were a few with other servers which had also gone dead).
    These calendars are no longer available, and won't be until the authors wake up and find somewhere else to host them.

  • Problem with multiple requests to different servers using HTTPService

    Hi
    I'm aware that we are limited to two concurrent connections to a single host, so I'm looking into using either subdomains pointing to the same server, or separate physical servers to process multiple requests side-by-side.
    However, whichever way I try to send three requests, looking at the Network Monitor the 3rd request always waits until one of the first two has finished. In the screenshot below, all three requests were sent at the same time to three separate physical servers, yet the top request didn't start until the bottom request finished, at 15:33:28
    Any ideas how to get round this? I'm using SSL, but I've also tested it on HTTP with the same results. I'm writing an AIR app, and posted this on the AIR forum but was told it was a Flex issue and I should post it here.
    Please let me know if any more information is needed
    Many thanks
    James

    Would that still apply even though I'm not running this inside a browser, but in AIR?
    I've seen this method recommended by other people, and also the following page seems to suggest that what I'm doing should work
    http://www.chadupton.com/blog/2008/08/maximum-concurrent-http-requests-from-adobe-air/
    Kind regards
    James

  • Problem with multiple requests

    I have a problem with the users submitting multiple requests simultaneously.
    Let me put it this way:
    1. User is on a tabbed panel with clear and search buttons.
    2. User clicks on 'clear' button from any tab (request one). On successful completion, it should reset and load tab one.
    3. Before the tab one loads, user again clicks (request two) on a different tab two. (Tabbed panel - server side tab switch)
    4. As a result, tab two loads. Now when I click on tab one, the default values are not getting set.
    Now when I look at my phase listener logs:
    Processing new  Request!
    St - RESTORE_VIEW 1
    En - RESTORE_VIEW 1
    St - APPLY_REQUEST_VALUES 2
    En - APPLY_REQUEST_VALUES 2
    St - PROCESS_VALIDATIONS 3
    En - PROCESS_VALIDATIONS 3
    St - UPDATE_MODEL_VALUES 4
    En - UPDATE_MODEL_VALUES 4
    St - INVOKE_APPLICATION 5
    En - INVOKE_APPLICATION 5
    St - RENDER_RESPONSE 6
    Processing new  Request!
    St - RESTORE_VIEW 1
    En - RENDER_RESPONSE 6
    Done with Request!
    En - RESTORE_VIEW 1
    St - APPLY_REQUEST_VALUES 2
    En - APPLY_REQUEST_VALUES 2
    St - PROCESS_VALIDATIONS 3
    En - PROCESS_VALIDATIONS 3
    St - UPDATE_MODEL_VALUES 4
    En - UPDATE_MODEL_VALUES 4
    St - INVOKE_APPLICATION 5
    En - INVOKE_APPLICATION 5
    St - RENDER_RESPONSE 6
    En - RENDER_RESPONSE 6
    Done with Request!Looking above its very clear that request two begins before the completion of render response phase of request one. I guess thats where the problem lies and users are not really interested in solution provided by me to use javascript and freeze the page until request one completes.
    I would like to know if it is possible to hold a second request in the phase listener until the first request gets completed. Any help would be highly appreciated.
    Thanks.

    Thus, you want to keep user/session-specific requests in a synchronized queue? You could put a lock in the HttpSession on start of request and remove it on end of request and synchronize the requests on that lock. You can use a Filter for this which is mapped on FacesServlet.
    It's all theory and I've never done it, so I can't give a "safe" code example out of head. But googling using the terms "synchronized, lock, httpsession" gives lot of the same ideas, some with examples, under each this article: [http://www.ibm.com/developerworks/library/j-jtp09238.html].

  • Error with multiple accessors in 10.1.2.1

    I've an Entity say A wich has assiociations to 2 entities say B and C.
    When I create a VO including both B and C and I try to reference also A I can choose both associations (good) but the query it creates uses allways the first one also if I chooes the second (wrong).
    Is it a bug.
    How can I solve that issue ?
    Tks
    Tullio

    I don't know much about the 10g Releases yet but I had the same error with 9.0.2.3. The problem is that OID isn't available when it needs to be.
    When you get the error, start OID using the command line then try running the config assistant again.
    Hope this helps
    Alex

  • Error with multiple includes

    hi there. i've read a lot of posts on this, but none seems to answer this question:
    i'm trying to use 2 includes on one page and am getting this error:
    "500 charsetName" - according to a book i've got, it should work. any ideas??? thanks!
    my code is:
    <%@ include file="header.chtml"%>
    <%@ page language="java" contentType="text/html" %>
    <%@ page import="java.sql.*,javax.sql.*,javax.naming.*,java.util.*"%>
    <%
    String ID = null;
    ID = request.getParameter("ID");
    out.print("<BR>Main Menu: "+ID);
    %>
    <%@ include file="footer.chtml"%>

    hi,
    try putting the page directives at the top of the jsp page.
    like
    <%@ page language="java" contentType="text/html" %>
    <%@ page import="java.sql.*,javax.sql.*,javax.naming.*,java.util.*"%>
    <%@ include file="header.chtml"%>
    i don't find any other problem with your jsp.
    thanks
    shrikant

  • Error with SOAP Request to calendar web service

    Hi
    I'm sending the following SOAP request to a calendar web service to create an appointment in the calendar. The response returns what seems to be a syntax error ("The Create method did not have a proper element in the request") but I can't see the cause of the fault. Any suggestions on what it may be? It's an 11g DB.
    Many thanks
    -x-POST-x-
    POST /ocws-bin/ocas.fcgi HTTP/1.0
    Content-Type: text/xml; charset="utf-8"
    Content-Length: 993
    SOAPAction: SOAPAction: "http://www.oracle.com/WebServices/Calendaring/1.0/Create"
    Connection: close
    <SOAP-ENV:Envelope
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header><auth:BasicAuth xmlns:auth="http://soap-authentication.org/2002/01/">
    <Name>CalendarName</Name><Password>CalendarPassword</Password>
    </auth:BasicAuth> </SOAP-ENV:Header>
    <SOAP-ENV:Body><cwsl:Create xmlns:cwsl="http://www.oracle.com/WebServices/Calendaring/1.0/"><CmdId>ITS APPOINTMENT</CmdId><iCalendar>
    <vcalendar prodid="-//Oracle//Calendaring//Calendarlet//EN" version="2.0">
    <vevent><class>PUBLIC</class>
    <description>Calendar Body</description>
    <dtstart value="DATE-TIME">20102905T120000</dtstart>
    <duration>P00DT0H30M00S</duration>
    <location>Location of user</location>
    <summary>Incident ID - (name of user])</summary>
    <uid>XGjRVnpReQALNsILlBlvcyXGCoUyXF</uid>
    <x-oracle-eventtype>APPOINTMENT</x-oracle-eventtype>
    <priority>5</priority>
    </vevent>
    </vcalendar>
    </iCalendar></cwsl:Create></SOAP-ENV:Body></SOAP-ENV:Envelope>
    -x-RESPONSE-x-
    HTTP/1.1 500 Internal Server Error
    Date: Thu, 27 May 2010 08:22:16 GMT
    Server: Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.7a mod_fastcgi/2.4.6
    OCAS-ProcTime: 407
    Connection: close
    Content-Type: text/xml; charset=utf-8
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <soap:Body>
    <soap:Fault>
    <faultcode>soap:Server.Error::System::SOAPRequest</faultcode>
    <faultstring>The Create method did not have a proper element in the request</faultstring>
    <detail>
    <cwsl:Error xmlns:cwsl="http://www.oracle.com/WebServices/Calendaring/1.0/">
    <Class>Error::System::SOAPRequest</Class>
    <Code>0020-00-00-00000034</Code>
    <Line>3180</Line>
    <FileName>SOAPRequestHandler.cpp,v</FileName>
    <Version>1.57</Version>
    <LastMod>2007/05/30 21:13:25</LastMod>
    <Author>pscattol</Author>
    <Date>Thu May 27 09:22:16 2010</Date>
    <PID>26152</PID>
    <TID>3044838304</TID>
    <Level>Error</Level>
    </cwsl:Error>
    </detail>
    </soap:Fault>
    </soap:Body>
    </soap:Envelope>

    Hi,
    I am having problem using dii client, while sending a
    request to c# webservice. error follows
    QName QNAME_TYPE_STRING = new QName(NS_XSD,
    "string");
    call.setReturnType(QNAME_TYPE_STRING);
    call.setOperationName(new QName(BODY_NAMESPACE_VALUE,
    "GetDetails"));
    call.addParameter("String_1", QNAME_TYPE_STRING,
    ParameterMode.IN);Do you need another call to addParameter here?
    String[] params = { "02", "2004" };
    String result = (String)call.invoke(params);

  • Runtime Error with Multiple Applications running in one Ear.

    I have the Coherence and Tangosol jar files loaded in my ear and the coherence-cache-config.xml in the classpath, if i add two web apps to this ear that use the same jars i get this error:
    SRVE0026E: [Servlet Error]-[action]: java.lang.NoClassDefFoundError: com.tangosol.util.ConcurrentMap
    but if i run the ear with either web app seperately - it works fine.
    I know i have some kind of a configuration issue - i just don't know what.
    Any help would be appreciated.
    Thanks..

    Hi,
    what application server do you use, and where do you have the coherence.jar and tangosol.jar?
    Best regards,
    Robert

  • Error with multiple widgets on one page (Firefox only)

    Hi
    I have developed a website in iWeb 09 and have experienced errors when i put more than one widget on a page (second widget always errors out). To date i have just stuck to a limit of 1 per page - but now I want to have two widgets on my home page (google map and a facebook widget)
    The page is www.bikesatbrighton.com.au and the two widgets are working in Safari and Explorer, but not in Firefox. I have checked that there are no overlapping frames / widgets etc but have not been able to fix the problem.
    Any assistance would be greatly appreciated. Any other general comments about the webpage would also be welcomed.
    Cheers
    Travis

    Welcome to the Apple Discussions. Is it the page that you provided the link to or a second page. I see no problem with that first link in FireFox 3.6.12 and 4.0b7.
    What are the widgets? The map and The Facebook thingy? Have you tried clearing the browser's cache and reloading the page?
    OT

  • Error with multiple rendition assets

    Im building af folio in 768x1024 rendered in PDF.
    Trying to follow the guideline for Overlay Assets
    A have a image sequence included where I have two folders, Overlay asset folder, and inside that a folder named HD, with the image sequence in double format.
    It works fine :-)
    But when i try with a zoomable picture, and in the links folder place a HD folder with the zoomable photo in double format. It dosen't work.
    And also I get this error message
    And of course I have checked that the size is double,
    No matter if I link the placed photo to the HD or the SD photo (by the way, which is the right?) i get this message!
    Can anyone help me out on this?

    I have found detected one error, eventhough the image had the double size 500 px width instead of 250 px, the resolution was also double. So I set both to 72 ppi.
    Now I don't get the error. But the HD photo is also showing up on the old iPad, it seems like im forced to link to the highres from beginning!
    Not logic when I compare with the image sequence!
    Any brilliant answers?

  • Handling error with multiple row insert/update

    Hi,
    I need to insert multiple rows into a table, and I understand that i need to use executeArrayUpdate().
    My problem is this :
    1. How do I know in case some of the rows in the array failed during the INSERT?
    2. When I do know that, how do I find those particular rows?
    Thanks

    ODAFEONIHOWO wrote:
    Please i need help on how to enter multiple row into mysql with one insert
    statement and jsp it's not possible - you'll need to do a batch insert
    i have been trying this for weeks without sucess e.g how much experience do you have with Java?

  • ObjectModel.dll Error with multiple users: InDesign CS6

    I have 3 users (myself included) who are having issues with InDesign CS6. We've had issues since upgrading/installing. I've done uninstall's, cleans, fresh downloads and installs, upgrades to the latest versions, and still we are having this issue. I have also done individual file replacements such as the identified ObjectModel.dll on faulty machines with (suspected) known good files from a new download.
    Faulting application name: InDesign.exe, version: 8.0.0.370, time stamp: 0x4f72c3ee
    Faulting module name: ObjectModel.dll, version: 8.0.0.370, time stamp: 0x4f72c3d4
    Exception code: 0xc0000005
    Fault offset: 0x0002cd16
    Faulting process id: 0x1770
    Faulting application start time: 0x01ce26490287a001
    Faulting application path: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\InDesign.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\ObjectModel.dll
    Report Id: 5a6d3609-923c-11e2-ba48-c8f7332601d7
    Is there any more data that can be provided or will phone support be required?
    I've even had the same (above) issue just opening InDesign CS6

    Completed download and installation of 8.0.1.406. InDesign opened normally but could not even open the file. Here is the event log:
    Faulting application name: InDesign.exe, version: 8.0.1.406, time stamp: 0x50335e39
    Faulting module name: DOCUMENT FRAMEWORK.RPLN, version: 8.0.0.370, time stamp: 0x4f72c565
    Exception code: 0xc0000005
    Fault offset: 0x0001b4db
    Faulting process id: 0x10bc
    Faulting application start time: 0x01ce2676af15693d
    Faulting application path: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\InDesign.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Required\DOCUMENT FRAMEWORK.RPLN
    Report Id: 30da0a23-926a-11e2-ba48-c8f7332601d7
    Restarted PC, InDesign crashed upon load.
    Faulting application name: InDesign.exe, version: 8.0.1.406, time stamp: 0x50335e39
    Faulting module name: ObjectModel.dll, version: 8.0.0.370, time stamp: 0x4f72c3d4
    Exception code: 0xc0000005
    Fault offset: 0x0002cd16
    Faulting process id: 0x1730
    Faulting application start time: 0x01ce2677b5479f73
    Faulting application path: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\InDesign.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\ObjectModel.dll
    Report Id: 40052559-926b-11e2-8c56-c8f7332601d7
    Canceled recovery of file, opened InDesign, attempted to open file, InDesign crashed again:
    Faulting application name: InDesign.exe, version: 8.0.1.406, time stamp: 0x50335e39
    Faulting module name: DOCUMENT FRAMEWORK.RPLN, version: 8.0.0.370, time stamp: 0x4f72c565
    Exception code: 0xc0000005
    Fault offset: 0x0001b4db
    Faulting process id: 0xb84
    Faulting application start time: 0x01ce2678068109a1
    Faulting application path: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\InDesign.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Required\DOCUMENT FRAMEWORK.RPLN
    Report Id: 75a1f9b5-926b-11e2-8c56-c8f7332601d7

  • Error while posting Customer with Multiple sales areas using DEBMAS05.

    Dear experts,
    We are generating IDOCS vis SAP DS for posting Customer master. The message type used is DEBMAS and basic type is DEBMAS05.  we have a requirement to create 1 customer with multiple sales areas. However, we are ending up with a strange error:  "Fill all required fields SAPMF02D 0111 ADDR1_DATA-NAME1". Despite the IDOC going into status 51, the customer gets created and the 1st sales area too. the 2nd sales area however is not created!  The IDOC data definitely contains Name1, otherwise the customer would not have been created in the first place.
    As the error message is related to the Address data, I also explored upon exploring this erorr further on the lines of Central Address management where in the ADRMAS and DEBMAS have to be passed together(IDOC Serialiization).  OSS Note (384462)  provides further details about this. One Important point from the note is: 
    "As you have to specify the logical name of the sending system among other things, SAP is not able to make any default settings in the standard systems. When you use the serialization groups delivered as a standard by SAP, the address objects are imported before the master objects.Thus the sequence address data before master objects must only be adhered to if one of the following points applies to your application:
    Such fields are set as required entry fields that are only provided by the BAS in the Customizing of the customer or vendor master.
    For your customers, contact persons exist to which a private address or a different business address is assigned.".
    This is not the case in our situation, as we do not have required entry fields in customizing that are only provided by the BAS, so the error is all the more confusing and I am not too sure what the cause is.
    If someone have experienced the same issue before and have found a solution to it, kindly help out.

    I have found the cause and solution to this problem.
    This error ”Fill all required fields SAPMF02D 0111 ADDR1_DATA-NAME1” and other similar errors like “Fill all required fields SAPMF02D 0111 ADDR1_DATA-SORT1“ which occurrs during the IDOC posting when there are more than one sales area or company code occurs when the customer number range is set up for Internal numbering. This means, that the number gets generated only at the time of save and upon debugging the IDOC, we found out that after creating the customer and the first sales area/company code record, the segment E1KNA1M is cleared completely! This is the reason, it throws an error which points to a mandatory KNA1 field as missing. (Like NAME1, SORT1 etc.)
    This was resolved by splitting the IDOC into 2.
    The solution is to First post only the KNA1 segment and create the customer.
    In the second step, pass the IDOC with all other segments along with E1KNA1M, but pass only KUNNR in E1KNA1M and the rest of the fields in E1KNA1M as “/”:  you would have got the KUNNR after the first step.
    Important note: This requirement to split the IDOCs does not occur when the customer number is known upfront. (Meaning cases where the customer number is externally generated) I also tested this and created a customer with external numbering and I was able to post more than 1 sales area with the same IDOC. 
    I noticed multiple threads with the same issue, but none of it had a concrete answer. I hope this information will be useful for anyone facing similar problems.
    Cheers
    Venkat

  • Error Message with multiple line

    Hi
    How to display a error message with multiple line?
    Example
         Goods movement not possible for material 101
         Goods movement not possible for material 102
         Goods movement not possible for material 103
    is it possible is ABAP? If so please advice me.
    Best Regards
    Asheek

    Hi Anoop,
    You can use same thing like this
    I suggest write ur message through this.
    First set the obecj.
    CALL FUNCTION 'APPL_LOG_SET_OBJECT'
    for local memory
    FUNCTION 'APPL_LOG_WRITE_MESSAGES'
             EXPORTING
                  OBJECT              = OBJECT
                  SUBOBJECT           = SUBOBJECT
                  UPDATE_OR_INSERT    = UPDATE_INSERT_FLAG
             TABLES
                  MESSAGES            = MESSAGE_TABLE
             EXCEPTIONS
                  OBJECT_NOT_FOUND    = 1
                  SUBOBJECT_NOT_FOUND = 2
                  OTHERS              = 3.
    the call for physical memory
    CALL FUNCTION 'APPL_LOG_WRITE_DB'
    In this process you only need to provide the Itab with error messages.
    Reg,
    Arpit

Maybe you are looking for

  • Images aren't being displayed in the links panel

    I am trying to locate the source file for images in an InDesign CS6 document, so that I can use them within another project (Muse). I had planned to use the links panel to see the path for each image. However, only a few of my graphics/images are bei

  • How do i transfer music from one iphoe to another

    how do i transfer music from one iphone to another

  • External hard drives and photos

    i have read some of the other support answers to this, but don't fully understand. i have hooked up my external hard drive in order to back up my iphoto libraries. (side note-if i do this, will the libraries move as one entity into a newly created fo

  • How to stop the services provided by net80 and oracle9i

    how to stop the services provided by net80 and oracle9i during the installation of forms6i & reports6i in windows 2003 server

  • Php Moodule for Apache not working

    Hi buddies I have installed Solaris 10 on SPARC SUN 280R Fiber channel. I was able to configure apache. When I tried to installed phpnuke it was susccessful as long as the files path are concerned the Mysql dbase was also susccess ful. When the I acc