Click or drag to resize

MessageStatus Enumeration

The status of the current operation

Namespace:  Hummingbird.TestFramework.Messaging
Assembly:  Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax
[SerializableAttribute]
public enum MessageStatus
Members
  Member nameValueDescription
None0 The operation has not yet have a status
Pending1 The request/response is inserted in the queue and to be processed.
Sending2 The Request is being sending to the target application
Sent3 The Request is sent to the target application, and reply is received.
Receiving4 The virtualized service receives a request from remote application, and processing the request.
Received5 The virtualized service processed the message from remote application, and a reply has been sent back.
Timeout6 The timeout occurs but the a reply has not be received. (it means often the target service is not available, you have a network issue or your request has dropped by the firewall)
Failed7 The request failed to sent or an Error message is received from remote application
Abandoned8 The request is abandoned. it was in a queue not could not be sent because the queue overflows. it means your remote application is not passing the performance test.
Replied9 The virtualized service received the request and a functional reply is sent back to the caller.
FaultReplied10 The virtualized service received the request and according to the user settings, a Fault Message is sent back to the caller.
See Also