fix: harden websocket and soap adapters
This commit is contained in:
@@ -5,6 +5,10 @@ use thiserror::Error;
|
||||
pub enum SoapAdapterError {
|
||||
#[error("soap endpoint is missing")]
|
||||
MissingEndpoint,
|
||||
#[error("invalid SOAP header value path {path}")]
|
||||
InvalidHeaderValuePath { path: String },
|
||||
#[error("required SOAP header {name} is missing")]
|
||||
MissingRequiredHeader { name: String },
|
||||
#[error("request failed")]
|
||||
Transport(#[from] reqwest::Error),
|
||||
#[error("invalid xml payload")]
|
||||
|
||||
Reference in New Issue
Block a user