6 Replies Latest reply on May 3, 2007 3:12 AM by shane.bryzak

    Remoting callbacks are not recieving

    jayaranga

      Hello,

      Im using seam remoting for my application.
      and my environment is : seam version 1.0.1 on jboss 4.0.5AS and IE 6 browser.

      my script calls to user login function, wich generate a remote call using seam as follows

      var usersAction = Seam.Component.getInstance('roomsnet_r5_admin_businesslogic_DRAMP_CustomerLogicAction');
      usersAction.validateUser(username , password ,"DRAMP", registerCallback);
      
      


      sometimes im not getting response callback.

      From the log messages i ve put in session bean , i can say all my code execute and from the frontend debug screen doesnt show any response message.

      if i tried 5 times, the above explained scenario happenes at least 3 times and im getting the callback only 2 times.

      the following lines are taken from remote debug window


      Thu Apr 26 17:56:46 UTC+0600 2007: Request packet:
      <envelope><header><context></context></header><body><call component="roomsnet_r5_admin_businesslogic_DRAMP_CustomerLogicAction" method="validateUser" id="0">
      <params><param><str>123%40123.com</str></param><param><str>111111</str></param><param><str>DRAMP</str></param></params><refs></refs></call></body></envelope>
      
      
      Thu Apr 26 17:56:48 UTC+0600 2007: Request packet:
      <envelope><header><context></context></header><body><call component="roomsnet_r5_admin_businesslogic_DRAMP_CustomerLogicAction" method="validateUser" id="0">
      <params><param><str>123%40123.com</str></param><param><str>111111</str></param><param><str>DRAMP</str></param></params><refs></refs></call></body></envelope>
      
      
      Thu Apr 26 17:56:49 UTC+0600 2007: Request packet:
      <envelope><header><context></context></header><body><call component="roomsnet_r5_admin_businesslogic_DRAMP_CustomerLogicAction" method="validateUser" id="0">
      <params><param><str>123%40123.com</str></param><param><str>111111</str></param><param><str>DRAMP</str></param></params><refs></refs></call></body></envelope>
      
      
      Thu Apr 26 17:56:49 UTC+0600 2007: Response packet:
      <envelope><header><context><conversationId>88</conversationId></context></header><body><result id="0"><value><str>Successfuly%20Logged%20in</str></value><refs></refs></result></body></envelope>
      
      
      
      



      Has anyone familier with the above?
      Can anybody help me ?