External exception C000001E (STATUS_INVALID_LOCK_SEQUENCE)

Posted by adnan on Stack Overflow See other posts from Stack Overflow or by adnan
Published on 2010-05-25T01:46:46Z Indexed on 2010/05/25 2:11 UTC
Read the original article Hit count: 1895

Filed under:
|
|
|

I'm building a web service client.

I've used many other functions from this web service, i've finished most of this work. But now i'm getting this error "External exception C000001E" as i try to use the function as example below.

  Var

  asi_              : Asi.MCCI_AR000001TR_PortType;
  asi_Istek         : Asi.QUQI_IN000001TR01;
  asi_Cevap         : Asi.QUQI_IN000002TR01;

  Begin

   // bla.. blaa. setting wsse header etc. giving httprio parameters .. 
   // bla... blaa.. some code here , creating the asi_Istek, setting the values etc.

  Try
   asi_Cevap := asi_.MCCI_AR000001TR_QUQI_IN000001TR(asi_Istek); // **error**
  Except
   On e: Exception Do
    Begin
      ShowMessage(e.Message);  // External exception C000001E
    End;
   End; 

that is sample code, my code is something like that, and i've many other smilar functions of this webservice, which are working without error, but here is missing something but what ? what is the "External exception C000001E" has anyone idea ?

thanks.

© Stack Overflow or respective owner

Related posts about web-services

Related posts about delphi