Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    SERVER_TRANSPORT_ERROR with no error

    Hi guys,

    I am using smartgwt 2.5 LGPL, with opera 11 or 12 and it doesn't seem to happen in Chrome 20.0.1132.43 m

    When saving rows of a listgrid with saveAllEdits(), i got an error (strangely only on some computer of the network, but not all)

    Code:
    14:04:19,940 ERROR com.allen_sauer.gwt.log.server.ServerLogImplLog4J 81 <qtp3753023-60> Transaction number: 90
    14:04:20,027 ERROR com.allen_sauer.gwt.log.server.ServerLogImplLog4J 81 <qtp3753023-60> Status: -90
    14:04:20,028 ERROR com.allen_sauer.gwt.log.server.ServerLogImplLog4J 81 <qtp3753023-60> Response code: 0
    14:04:20,028 ERROR com.allen_sauer.gwt.log.server.ServerLogImplLog4J 81 <qtp3753023-60> Response text: Class$com_google_gwt_lang_Array@2f5
    The previous message is the one i get because i have overriden the error management for RPCManager.

    What does this error means ? what is status -90 ? can you suggest some debug infos i could set in order to understand the problem ?

    thank you very much.
    Last edited by munger; 3 Jul 2012, 00:38.

    #2
    It means the response from the server was an HTTP error code, such as 404 or 500. You can use Firebug or Chrome developer tools to see which response failed, then it's time to debug why your server code sometimes crashes.

    Comment

    Working...
    X