Skip to content

Commit

Permalink
Feature/16614 exceptions 2024.1 (#119)
Browse files Browse the repository at this point in the history
2024.1 Exceptions
  • Loading branch information
cortex-av authored Mar 28, 2024
1 parent 85e3e38 commit 71e9091
Show file tree
Hide file tree
Showing 53 changed files with 1,024 additions and 92 deletions.
2 changes: 1 addition & 1 deletion content/en/blog/releases/2023.X/2023.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ Any changes to these forecasts will be announced via the [News channel][].
[Decode Text]: {{< url path="Cortex.Reference.Blocks.Text.DecodeText.DecodeText.MainDoc" version="2023.3" >}}
[Decode Text - Known Limitations]: {{< url path="Cortex.Reference.Blocks.Text.DecodeText.DecodeText.KnownLimitations" version="2023.3" >}}
[Encode Text]: {{< url path="Cortex.Reference.Blocks.Text.EncodeText.EncodeText.MainDoc" version="2023.3" >}}
[Execute Ssh Command Remark]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommand.TerminalPromptMatchRemark" version="2023.3" >}}
[Execute Ssh Command Remark]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommandBlock.TerminalPromptMatchRemark" version="2023.3" >}}

[Innovation Only - Single Server - Without HA]: {{< url path="Cortex.GettingStarted.OnPremise.InstallInnovationOnly.SingleServerWithoutHA.MainDoc" version="2023.3" >}}
[Innovation Only - Multiple Server - With HA]: {{< url path="Cortex.GettingStarted.OnPremise.InstallInnovationOnly.MultipleServerWithHA.MainDoc" version="2023.3" >}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi

### Executing a request using OAuth password credentials

This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with password credentials which requires [Http Credentials][Http Credentials Property] to be a [HttpOAuthPasswordCredentials][].
This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with password credentials which requires [Http Credentials][Http Credentials Property] to be an [HttpOAuthPasswordCredentials][].

Note that the result of executing an [Http Request][Http Request Property] is dependent on the [API][] that the request is being made to.

Expand Down Expand Up @@ -224,7 +224,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi

### Executing a request using OAuth client credentials

This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with client credentials which requires [Http Credentials][Http Credentials Property] to be a [HttpOAuthClientCredentials][].
This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with client credentials which requires [Http Credentials][Http Credentials Property] to be an [HttpOAuthClientCredentials][].

Note that the result of executing an [Http Request][Http Request Property] is dependent on the [API][] that the request is being made to.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi
This example will send a [Soap Request][Soap Request Property] to `https://test-converter.com/xml` using SOAP 1.1 with OAuth authentication using password credentials which requires:

- [SoapMessage][SoapMessage Property] to be a [Soap11Message][]
- [Http Credentials][Http Credentials Property] to be a [HttpOAuthPasswordCredentials][]
- [Http Credentials][Http Credentials Property] to be an [HttpOAuthPasswordCredentials][]

Note that the result of executing a [Soap Request][Soap Request Property] is dependent on the SOAP service that the request is being made to.

Expand Down Expand Up @@ -242,7 +242,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi
This example will send a [Soap Request][Soap Request Property] to `https://test-converter.com/xml` using SOAP 1.1 with OAuth authentication using client credentials which requires:

- [SoapMessage][SoapMessage Property] to be a [Soap11Message][]
- [Http Credentials][Http Credentials Property] to be a [HttpOAuthClientCredentials][]
- [Http Credentials][Http Credentials Property] to be an [HttpOAuthClientCredentials][]

Note that the result of executing a [Soap Request][Soap Request Property] is dependent on the SOAP service that the request is being made to.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ None

[All Blocks]: {{< url path="Cortex.Reference.Blocks.MainDoc" >}}
[Handle Exception blocks]: {{< url path="Cortex.Reference.Blocks.Exceptions.MainDoc" >}}
[Execute SSH Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommand.MainDoc" >}}
[Execute SSH Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommandBlock.MainDoc" >}}

[Blocks]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.MainDoc" >}}
[block]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "InvalidRequestException"
linkTitle: "InvalidRequestException"
description: "The exception thrown when an issue occurs with a HTTP request."
description: "The exception thrown when an issue occurs with an HTTP request."
---

# {{% param title %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "InvalidResponseException"
linkTitle: "InvalidResponseException"
description: "The exception thrown when an issue occurs with a HTTP response."
description: "The exception thrown when an issue occurs with an HTTP response."
---

# {{% param title %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "HttpRequestVersion"
linkTitle: "HttpRequestVersion"
description: "Used to represent the version of HTTP to be used when making a HTTP request."
description: "Used to represent the version of HTTP to be used when making an HTTP request."
weight: 1
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi

### Executing a request using OAuth password credentials

This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with password credentials which requires [Http Credentials][Http Credentials Property] to be a [HttpOAuthPasswordCredentials][].
This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with password credentials which requires [Http Credentials][Http Credentials Property] to be an [HttpOAuthPasswordCredentials][].

Note that the result of executing an [Http Request][Http Request Property] is dependent on the [API][] that the request is being made to.

Expand Down Expand Up @@ -224,7 +224,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi

### Executing a request using OAuth client credentials

This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with client credentials which requires [Http Credentials][Http Credentials Property] to be a [HttpOAuthClientCredentials][].
This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with client credentials which requires [Http Credentials][Http Credentials Property] to be an [HttpOAuthClientCredentials][].

Note that the result of executing an [Http Request][Http Request Property] is dependent on the [API][] that the request is being made to.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi
This example will send a [Soap Request][Soap Request Property] to `https://test-converter.com/xml` using SOAP 1.1 with OAuth authentication using password credentials which requires:

- [SoapMessage][SoapMessage Property] to be a [Soap11Message][]
- [Http Credentials][Http Credentials Property] to be a [HttpOAuthPasswordCredentials][]
- [Http Credentials][Http Credentials Property] to be an [HttpOAuthPasswordCredentials][]

Note that the result of executing a [Soap Request][Soap Request Property] is dependent on the SOAP service that the request is being made to.

Expand Down Expand Up @@ -242,7 +242,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi
This example will send a [Soap Request][Soap Request Property] to `https://test-converter.com/xml` using SOAP 1.1 with OAuth authentication using client credentials which requires:

- [SoapMessage][SoapMessage Property] to be a [Soap11Message][]
- [Http Credentials][Http Credentials Property] to be a [HttpOAuthClientCredentials][]
- [Http Credentials][Http Credentials Property] to be an [HttpOAuthClientCredentials][]

Note that the result of executing a [Soap Request][Soap Request Property] is dependent on the SOAP service that the request is being made to.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ None

[All Blocks]: {{< url path="Cortex.Reference.Blocks.MainDoc" >}}
[Handle Exception blocks]: {{< url path="Cortex.Reference.Blocks.Exceptions.MainDoc" >}}
[Execute SSH Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommand.MainDoc" >}}
[Execute SSH Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommandBlock.MainDoc" >}}

[Blocks]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.MainDoc" >}}
[block]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "InvalidRequestException"
linkTitle: "InvalidRequestException"
description: "The exception thrown when an issue occurs with a HTTP request."
description: "The exception thrown when an issue occurs with an HTTP request."
---

# {{% param title %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "InvalidResponseException"
linkTitle: "InvalidResponseException"
description: "The exception thrown when an issue occurs with a HTTP response."
description: "The exception thrown when an issue occurs with an HTTP response."
---

# {{% param title %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "HttpRequestVersion"
linkTitle: "HttpRequestVersion"
description: "Used to represent the version of HTTP to be used when making a HTTP request."
description: "Used to represent the version of HTTP to be used when making an HTTP request."
weight: 1
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ Perform the following steps:
1. Run the following command: `iisreset`.
1. Wait for the action to complete.
### Flow not starting in {{< ctx >}} Gateway {#ts-flow-not-starting}
### Flow not starting in {{% ctx %}} Gateway {#ts-flow-not-starting}
#### Application Pool user does not have rights to the Repo folder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi

### Executing a request using OAuth password credentials

This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with password credentials which requires [Http Credentials][Http Credentials Property] to be a [HttpOAuthPasswordCredentials][].
This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with password credentials which requires [Http Credentials][Http Credentials Property] to be an [HttpOAuthPasswordCredentials][].

Note that the result of executing an [Http Request][Http Request Property] is dependent on the [API][] that the request is being made to.

Expand Down Expand Up @@ -224,7 +224,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi

### Executing a request using OAuth client credentials

This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with client credentials which requires [Http Credentials][Http Credentials Property] to be a [HttpOAuthClientCredentials][].
This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with client credentials which requires [Http Credentials][Http Credentials Property] to be an [HttpOAuthClientCredentials][].

Note that the result of executing an [Http Request][Http Request Property] is dependent on the [API][] that the request is being made to.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi
This example will send a [Soap Request][Soap Request Property] to `https://test-converter.com/xml` using SOAP 1.1 with OAuth authentication using password credentials which requires:

- [SoapMessage][SoapMessage Property] to be a [Soap11Message][]
- [Http Credentials][Http Credentials Property] to be a [HttpOAuthPasswordCredentials][]
- [Http Credentials][Http Credentials Property] to be an [HttpOAuthPasswordCredentials][]

Note that the result of executing a [Soap Request][Soap Request Property] is dependent on the SOAP service that the request is being made to.

Expand Down Expand Up @@ -242,7 +242,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi
This example will send a [Soap Request][Soap Request Property] to `https://test-converter.com/xml` using SOAP 1.1 with OAuth authentication using client credentials which requires:

- [SoapMessage][SoapMessage Property] to be a [Soap11Message][]
- [Http Credentials][Http Credentials Property] to be a [HttpOAuthClientCredentials][]
- [Http Credentials][Http Credentials Property] to be an [HttpOAuthClientCredentials][]

Note that the result of executing a [Soap Request][Soap Request Property] is dependent on the SOAP service that the request is being made to.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ None

[All Blocks]: {{< url path="Cortex.Reference.Blocks.MainDoc" >}}
[Handle Exception blocks]: {{< url path="Cortex.Reference.Blocks.Exceptions.MainDoc" >}}
[Execute SSH Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommand.MainDoc" >}}
[Execute SSH Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommandBlock.MainDoc" >}}

[Blocks]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.MainDoc" >}}
[block]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "InvalidRequestException"
linkTitle: "InvalidRequestException"
description: "The exception thrown when an issue occurs with a HTTP request."
description: "The exception thrown when an issue occurs with an HTTP request."
---

# {{% param title %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "InvalidResponseException"
linkTitle: "InvalidResponseException"
description: "The exception thrown when an issue occurs with a HTTP response."
description: "The exception thrown when an issue occurs with an HTTP response."
---

# {{% param title %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "HttpRequestVersion"
linkTitle: "HttpRequestVersion"
description: "Used to represent the version of HTTP to be used when making a HTTP request."
description: "Used to represent the version of HTTP to be used when making an HTTP request."
weight: 1
---

Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/2023.3/Whats New/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ For a full list of what has been introduced in this release, please see the [202
[Queues]: {{< url path="Cortex.Reference.Blocks.Queues.MainDoc" version="2023.3" >}}
[Decode Text]: {{< url path="Cortex.Reference.Blocks.Text.DecodeText.DecodeText.MainDoc" version="2023.3" >}}
[Encode Text]: {{< url path="Cortex.Reference.Blocks.Text.EncodeText.EncodeText.MainDoc" version="2023.3" >}}
[Execute Ssh Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommand.MainDoc" version="2023.3" >}}
[Execute Ssh Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommandBlock.MainDoc" version="2023.3" >}}

[2023.3 Release Notes]: {{< url path="Cortex.Blogs.Releases.2023.3.MainDoc" >}}
[re-architected HA Platform]: {{< url path="Cortex.Blogs.Releases.2023.3.RearchitectedtheHAPlatform" >}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi

### Executing a request using OAuth password credentials

This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with password credentials which requires [Http Credentials][Http Credentials Property] to be a [HttpOAuthPasswordCredentials][].
This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with password credentials which requires [Http Credentials][Http Credentials Property] to be an [HttpOAuthPasswordCredentials][].

Note that the result of executing an [Http Request][Http Request Property] is dependent on the [API][] that the request is being made to.

Expand Down Expand Up @@ -224,7 +224,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi

### Executing a request using OAuth client credentials

This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with client credentials which requires [Http Credentials][Http Credentials Property] to be a [HttpOAuthClientCredentials][].
This example will send a [GET][] request to `https://test-shop.com/api/items` using [HTTP 1.1][HTTP11] using OAuth authentication with client credentials which requires [Http Credentials][Http Credentials Property] to be an [HttpOAuthClientCredentials][].

Note that the result of executing an [Http Request][Http Request Property] is dependent on the [API][] that the request is being made to.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi
This example will send a [Soap Request][Soap Request Property] to `https://test-converter.com/xml` using SOAP 1.1 with OAuth authentication using password credentials which requires:

- [SoapMessage][SoapMessage Property] to be a [Soap11Message][]
- [Http Credentials][Http Credentials Property] to be a [HttpOAuthPasswordCredentials][]
- [Http Credentials][Http Credentials Property] to be an [HttpOAuthPasswordCredentials][]

Note that the result of executing a [Soap Request][Soap Request Property] is dependent on the SOAP service that the request is being made to.

Expand Down Expand Up @@ -242,7 +242,7 @@ Note that as the [Headers][Headers Response] contains a key of `Content-Type` wi
This example will send a [Soap Request][Soap Request Property] to `https://test-converter.com/xml` using SOAP 1.1 with OAuth authentication using client credentials which requires:

- [SoapMessage][SoapMessage Property] to be a [Soap11Message][]
- [Http Credentials][Http Credentials Property] to be a [HttpOAuthClientCredentials][]
- [Http Credentials][Http Credentials Property] to be an [HttpOAuthClientCredentials][]

Note that the result of executing a [Soap Request][Soap Request Property] is dependent on the SOAP service that the request is being made to.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ None

[All Blocks]: {{< url path="Cortex.Reference.Blocks.MainDoc" >}}
[Handle Exception blocks]: {{< url path="Cortex.Reference.Blocks.Exceptions.MainDoc" >}}
[Execute SSH Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommand.MainDoc" >}}
[Execute SSH Command]: {{< url path="Cortex.Reference.Blocks.Ssh.ExecuteSshCommand.ExecuteSshCommandBlock.MainDoc" >}}

[Blocks]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.MainDoc" >}}
[block]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "InvalidRequestException"
linkTitle: "InvalidRequestException"
description: "The exception thrown when an issue occurs with a HTTP request."
description: "The exception thrown when an issue occurs with an HTTP request."
---

# {{% param title %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "InvalidResponseException"
linkTitle: "InvalidResponseException"
description: "The exception thrown when an issue occurs with a HTTP response."
description: "The exception thrown when an issue occurs with an HTTP response."
---

# {{% param title %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "HttpRequestVersion"
linkTitle: "HttpRequestVersion"
description: "Used to represent the version of HTTP to be used when making a HTTP request."
description: "Used to represent the version of HTTP to be used when making an HTTP request."
weight: 1
---

Expand Down
Loading

0 comments on commit 71e9091

Please sign in to comment.